Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for ns1 (0.18 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. tests/testdata/networking/sidecar-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
      location: MESH_INTERNAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/config/resource/name_test.go

    package resource
    
    import (
    	"testing"
    )
    
    func TestFullNameString(t *testing.T) {
    	n := NewFullName("ns1", "l1")
    	if n.String() != "ns1/l1" {
    		t.Fatalf("unexpected name string: %v", n.String())
    	}
    }
    
    func TestFullNameString_NoName(t *testing.T) {
    	n := NewFullName("ns1", "")
    	if n.String() != "ns1/" {
    		t.Fatalf("unexpected name string: %v", n.String())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  6. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    metadata:
      name: http1
      namespace: ns1
    spec:
      host: http1.ns1.svc.cluster.local
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
      - http1.ns1.svc.cluster.local
      http:
      - route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/controller/garbagecollector/graph_builder_test.go

    		clusterabsentparent_ns1_kind    = makeID("v1", "xxxxxxxxxxxxx", "ns1", "parentname", "parentuid")
    	)
    
    	orderedNamespacedReferences := []objectReference{
    		makeID("v1", "kind", "ns1", "name", "uid"),
    		makeID("v2", "kind", "ns1", "name", "uid"),
    		makeID("v3", "kind", "ns1", "name", "uid"),
    		makeID("v4", "kind", "ns1", "name", "uid"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 17 15:49:32 UTC 2020
    - 7.6K bytes
    - Viewed (0)
Back to top