Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for ns1 (0.09 sec)

  1. tools/bug-report/pkg/filter/filter_test.go

    ns1/p1:
      k2: v2
    ns1/p2:
      k1: v1
      k2: v2
      k3: v33
    ns1/p3:
      k1: v1
      k2: v22
      k3: v3
    ns1/p4:
      k1: v1
      k4: v4
    `
    
    	p1c1 = "ns1/d1/p1/c1"
    	p1c2 = "ns1/d1/p1/c2"
    	p2c3 = "ns1/d1/p2/c3"
    	p3c4 = "ns1/d2/p3/c4"
    	p3c5 = "ns1/d2/p3/c5"
    	p4c6 = "ns1/d2/p4/c6"
    
    	p1 = []string{p1c1, p1c2}
    	p2 = []string{p2c3}
    	p3 = []string{p3c4, p3c5}
    	p4 = []string{p4c6}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. pkg/controller/endpointslicemirroring/metrics/cache_test.go

    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc1"}, spCacheInefficient)
    	expectNumEndpointsAndSlices(t, c, 2, 13, 30)
    
    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc2"}, spCacheEfficient)
    	expectNumEndpointsAndSlices(t, c, 4, 15, 110)
    
    	c.UpdateEndpointPortCache(types.NamespacedName{Namespace: "ns1", Name: "svc3"}, spCacheInefficient)
    	expectNumEndpointsAndSlices(t, c, 6, 28, 140)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. pkg/config/host/names.go

    // e.g.:
    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns1")   = Names(["foo.com"])
    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns3")   = Names([])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns1")     = Names(["foo.com","bar.com"])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns3")     = Names(["bar.com"])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor_test.go

    `
    	namespaceContent = `
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns1
    `
    	jsonpatchContent = `[
        {"op": "add", "path": "/spec/replica", "value": "3"}
    ]`
    
    	expectedContent = `apiVersion: v1
    kind: Namespace
    metadata:
      annotations:
        note: This is a test annotation
      labels:
        app: nginx
      name: ns1
    ---
    apiVersion: v1
    data:
      DB_PASSWORD: somepw
      DB_USERNAME: admin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/controller_test.go

    	s.AssertEmpty(t, time.Millisecond*10)
    
    	ns1.Annotations = map[string]string{"foo": "bar"}
    	ns.Update(ns1)
    	s.AssertEmpty(t, time.Millisecond*10)
    
    	ns2.Annotations = map[string]string{"foo": "bar"}
    	ns.Update(ns2)
    	s.AssertEmpty(t, time.Millisecond*10)
    
    	ns1.Labels["bar"] = "foo"
    	ns.Update(ns1)
    	s.AssertEmpty(t, time.Millisecond*10)
    
    	ns2.Labels["foo"] = "bar"
    	ns.Update(ns2)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

    kind: Sidecar
    metadata:
      name: no-selector # Since this is the only Sidecar in the namespace without a workload selector, no conflict
      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top