Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for ns1 (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-redirect.yaml

        name: acme-lb
        group: acme.io
        kind: Parameters
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: gateway-api-example-ns1
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: my-filter-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: filter-lb
      listeners:
        - name: http
          protocol: HTTP
          port: 80
        - name: https
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tests/testdata/networking/envoyfilter-without-service/configs.yaml

      namespace: istio-config
    spec:
      host: "*.local"
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
    ---
    # Services and configs in ns1 namespace
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
        - http1.ns1.svc.cluster.local
      addresses:
        - 2.1.1.1
      ports:
        - number: 8081
          name: http
          protocol: HTTP2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/util_test.go

    			proxy: &model.Proxy{
    				ID: "pod1.ns1",
    				Metadata: &model.NodeMetadata{
    					Namespace: "default",
    				},
    			},
    		},
    		{
    			name: "invalid id: namespace mismatch",
    			proxy: &model.Proxy{
    				ID: "pod1.ns1",
    				Metadata: &model.NodeMetadata{
    					Namespace: "ns1",
    				},
    			},
    			expectedKey: types.NamespacedName{Namespace: "ns1", Name: "pod1"},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/config/config_test.go

    	}
    }
    
    func TestUnmarshalSelectionSpec(t *testing.T) {
    	include := "ns1,ns2/d1,d2/p1,p2/l1=lv1,l2=lv2/a1=av1,a2=av2/c1,c2"
    	want := &SelectionSpec{
    		Namespaces:  []string{"ns1", "ns2"},
    		Deployments: []string{"d1", "d2"},
    		Pods:        []string{"p1", "p2"},
    		Labels: map[string]string{
    			"l1": "lv1",
    			"l2": "lv2",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 15 15:19:50 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  5. pkg/kubelet/secret/secret_manager_test.go

    	// We should have only: s1, s3 and s4 secrets in namespaces: ns1 and ns2.
    	for _, ns := range []string{"ns1", "ns2", "ns3"} {
    		for _, secret := range []string{"s1", "s2", "s3", "s4", "s5", "s6", "s20", "s40", "s50"} {
    			shouldExist :=
    				(secret == "s1" || secret == "s3" || secret == "s4" || secret == "s40") && (ns == "ns1" || ns == "ns2")
    			checkObject(t, store, ns, secret, shouldExist)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  6. pkg/config/host/names_test.go

    		want      host.Names
    	}{
    		{
    			[]string{"ns1/foo.com", "ns2/bar.com"},
    			"ns1",
    			host.Names{"foo.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "ns2/bar.com"},
    			"ns3",
    			host.Names{},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns1",
    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns3",
    			host.Names{"bar.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: ReferenceGrant
    metadata:
      name: allow-ns1-gateways-to-ref-secrets
      namespace: gateway-api-example-ns2
    spec:
      from:
      - group: gateway.networking.k8s.io
        kind: Gateway
        namespace: gateway-api-example-ns1
      to:
      - group: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/telemetry-default-selector.yaml

      namespace: ns1
    spec:
      metrics:
      - providers:
        - name: prometheus
        overrides:
        - match:
            metric: ALL_METRICS
          disabled: false
    ---
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: has-selector
      namespace: ns1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/subject_locator_test.go

    			},
    			roles: []*rbacv1.Role{
    				newRole("admin", "ns1", newRule("get", "*", "Pods", "*")),
    			},
    			roleBindings: []*rbacv1.RoleBinding{
    				newRoleBinding("ns1", "admin", bindToRole, "User:admin", "Group:admins"),
    			},
    			actionsToSubjects: []actionToSubjects{
    				{
    					&defaultAttributes{"", "", "get", "Pods", "", "ns1", ""},
    					[]rbacv1.Subject{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/cluster_local_test.go

    					{
    						Settings: &meshconfig.MeshConfig_ServiceSettings_Settings{
    							ClusterLocal: true,
    						},
    						Hosts: []string{
    							"*.ns1.svc.cluster.local",
    							"*.ns2.svc.cluster.local",
    						},
    					},
    				},
    			},
    			host:     "s.ns1.svc.cluster.local",
    			expected: true,
    		},
    		{
    			name: "local 2",
    			m: &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top