Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 540 for testNS (0.29 sec)

  1. pkg/dns/server/name_table_test.go

    						Namespace: "testns",
    					},
    					"pod3.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"19.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod3.headless-svc",
    						Namespace: "testns",
    					},
    					"pod4.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.16.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod4.headless-svc",
    						Namespace: "testns",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. tests/testdata/config/rule-websocket-route.yaml

    metadata:
      name: websocket
      namespace: testns
    spec:
      host: websocket.test.istio.io
      subsets:
        - name: v1
          labels:
            version: v1
    
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: websocket-route
      namespace: testns
    spec:
      hosts:
        - websocket.test.istio.io
      http:
        - match:
          - headers:
              testwebsocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. tests/testdata/config/rule-fault-injection.yaml

    metadata:
      name: fault
      namespace: testns
    spec:
      host: c-weighted.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: fault
      namespace: testns
    spec:
      hosts:
        - fault.test.istio.io
      http:
        - match:
          - headers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	corev1 "k8s.io/api/core/v1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/workloadapi"
    )
    
    func TestAmbientIndex_ServiceEntry(t *testing.T) {
    	s := newAmbientTestServer(t, testC, testNW)
    
    	// test code path where service entry creates a workload entry via `ServiceEntry.endpoints`
    	// and the inlined WE has a port override
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/collectors/volume_stats_test.go

    			kubelet_volume_stats_inodes{namespace="testns",persistentvolumeclaim="testpvc"} 655360
    			kubelet_volume_stats_inodes_free{namespace="testns",persistentvolumeclaim="testpvc"} 655344
    			kubelet_volume_stats_inodes_used{namespace="testns",persistentvolumeclaim="testpvc"} 16
    			kubelet_volume_stats_used_bytes{namespace="testns",persistentvolumeclaim="testpvc"} 4.21789696e+09
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tests/testdata/config/rule-default-route-append-headers.yaml

    metadata:
      name: appendh
      namespace: testns
    spec:
       hosts:
       - appendh.test.istio.io
       ports:
       - number: 80
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: appendh-route
      namespace: testns
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 09 16:11:17 UTC 2020
    - 644 bytes
    - Viewed (0)
  7. tests/testdata/config/byon.yaml

    kind: ServiceEntry
    metadata:
      name: byon
      namespace: testns
    spec:
       hosts:
       - byon.test.istio.io
       ports:
       - number: 80
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: byon
      namespace: testns
    spec:
      hosts:
        - mybyon.test.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. tests/testdata/config/rule-regex-route.yaml

    kind: DestinationRule
    metadata:
      name: regex
      namespace: testns
    spec:
      host: regex.extsvc.com
      subsets:
        - name: v1
          labels:
            version: v1
        - name: v2
          labels:
            version: v2
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: regex-route
      namespace: testns
    spec:
      hosts:
        - regex.extsvc.com
      http:
        - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 28 21:38:06 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. cni/pkg/plugin/cnieventclient_test.go

    	assert.Error(t, err)
    	assert.Equal(t, strings.Contains(err.Error(), fmt.Sprintf("unable to push CNI event, error was %d", http.StatusInternalServerError)), true)
    }
    
    func TestPushCNIAddEventGoodPayload(t *testing.T) {
    	testPod := "testpod"
    	testNS := "testns"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. tests/testdata/config/external_services.yaml

    kind: ServiceEntry
    metadata:
      name: external-svc-extsvc
      namespace: testns
    spec:
       hosts:
       - external.extsvc.com
       ports:
       - number: 1443
         name: extsvc-http
         protocol: HTTP # not HTTPS.
       resolution: DNS
    
    ---
    
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
     name: external-service-1
     namespace: testns
    spec:
     host: external.extsvc.com
    # BUG: crash envoy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 1.9K bytes
    - Viewed (0)
Back to top