Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 540 for testNS (0.19 sec)

  1. tests/testdata/config/destination-rule-all.yaml

    metadata:
      name: destall
      namespace: testns
    spec:
       hosts:
       - destall.default.svc.cluster.local
       ports:
       - number: 81
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 7072
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: destall
      namespace: testns
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway_test.go

    							},
    						},
    					},
    				},
    			},
    			virtualServices: []config.Config{
    				{
    					Meta: config.Meta{Name: "example", Namespace: "testns", GroupVersionKind: gvk.VirtualService},
    					Spec: &networking.VirtualService{
    						Gateways: []string{"testns/gw"},
    						Hosts:    []string{"example.com"},
    						Tls: []*networking.TLSRoute{
    							{
    								Match: []*networking.TLSMatchAttributes{
    									{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  3. tests/testdata/config/rule-redirect-injection.yaml

    metadata:
      name: redirect
      namespace: testns
    spec:
       hosts:
       - redirect.test.istio.io
       ports:
       - number: 8080
         name: http
         protocol: HTTP
       resolution: STATIC
       endpoints:
        - address: 127.0.0.2
          ports:
            http: 8080
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: redirect
      namespace: testns
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 636 bytes
    - Viewed (0)
  4. tests/testdata/config/ingress.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ingress
      namespace: testns
    spec:
      # K8S Ingress rules are converted on the fly to a VirtualService.
      # The local tests may run without k8s - so for ingress we test with the
      # equivalent rule.
      hosts:
      - "*"
      gateways:
      - istio-ingress
      http:
      - match:
        - uri:
            prefix: /foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 949 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	b.StopTimer()
    	now := time.Now()
    	clk := testclock.NewFakePassiveClock(now)
    	th := NewTestableTimingRatioHistogram(clk.Now,
    		&TimingRatioHistogramOpts{
    			compbasemetrics.TimingHistogramOpts{
    				Namespace: "testns",
    				Subsystem: "testsubsys",
    				Name:      "testhist",
    				Help:      "Me",
    				Buckets:   []float64{1, 2, 4, 8, 16, 32},
    			},
    			1})
    	registry := compbasemetrics.NewKubeRegistry()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/service_test.go

    		},
    		{
    			first: &Service{
    				Attributes: ServiceAttributes{
    					Name:      "test",
    					Namespace: "testns",
    					Labels: map[string]string{
    						"label-1": "value-1",
    					},
    				},
    			},
    			other: &Service{
    				Attributes: ServiceAttributes{
    					Name:      "test",
    					Namespace: "testns",
    					Labels: map[string]string{
    						"label-1": "value-1",
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. tests/testdata/config/destination-rule-passthrough.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: drpassthrough
      namespace: testns
    spec:
      host: "*.foo.com"
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 202 bytes
    - Viewed (0)
  8. tests/integration/security/ca_custom_root/trust_domain_validation_test.go

    package cacustomroot
    
    import (
    	"fmt"
    	"os"
    	"path"
    	"testing"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    const (
    	httpPlaintext = "http-plaintext"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestNetworkUpdateTriggers(t *testing.T) {
    	test.SetForTest(t, &features.MultiNetworkGatewayAPI, true)
    	meshNetworks := mesh.NewFixedNetworksWatcher(nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tests/integration/security/ca_custom_root/multi_root_test.go

    	"fmt"
    	"testing"
    
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    )
    
    func TestMultiRootSetup(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			testNS := apps.EchoNamespace.Namespace
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top