Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 664 for v1alpha3 (0.27 sec)

  1. pkg/config/schema/gvk/resources.gen.go

    	TCPRoute                       = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "TCPRoute"}
    	TLSRoute                       = config.GroupVersionKind{Group: "gateway.networking.k8s.io", Version: "v1alpha2", Kind: "TLSRoute"}
    	Telemetry                      = config.GroupVersionKind{Group: "telemetry.istio.io", Version: "v1alpha1", Kind: "Telemetry"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: isolation-istio.gateway-conformance-infra.svc.domain.suffix
        internal.istio.io/parents: Gateway/isolation/empty-hostname.gateway-conformance-infra
      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_simulation_test.go

    	virtualServices := `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: a
    spec:
      hosts:
      - "example.com"
      gateways:
      - gateway80
      - gateway8081
      http:
      - match:
        - uri:
            prefix: /
        route:
        - destination:
            host: a
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xds_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: included
      namespace: included
    spec:
      hosts:
      - app.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
    {{- if eq .Resolution "DNS" }}
      - address: included.com
    {{- else }}
      - address: 2.2.2.2
    {{- end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/schema/validation_test.go

    		Resources: []*resource.Instance{
    			{
    				Message: &v1alpha3.VirtualService{},
    				Metadata: resource.Metadata{
    					FullName: resource.NewFullName("ns", "name"),
    				},
    				Origin: fakeOrigin{},
    			},
    		},
    	}
    	a := ValidationAnalyzer{s: testSchema}
    	a.Analyze(ctx)
    }
    
    func TestSchemaValidationWrapper(t *testing.T) {
    	testCol := gvk.VirtualService
    
    	m1 := &v1alpha3.VirtualService{}
    	m2 := &v1alpha3.VirtualService{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/serviceentry_simulation_test.go

    	"istio.io/istio/pilot/test/xds"
    )
    
    const se = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se1
    spec:
      hosts:
      - blah.somedomain
      addresses:
      - %s
      ports:
      - number: 9999
        name: TCP-9999
        protocol: TCP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se2
    spec:
      hosts:
      - blah.somedomain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/output/scheme/scheme.go

    // AddToScheme builds the kubeadm scheme using all known versions of the kubeadm api.
    func AddToScheme(scheme *runtime.Scheme) {
    	utilruntime.Must(output.AddToScheme(scheme))
    	utilruntime.Must(v1alpha3.AddToScheme(scheme))
    	utilruntime.Must(scheme.SetVersionPriority(v1alpha3.SchemeGroupVersion))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crd/conversion_test.go

    		t.Errorf(`ParseInput("---") => got %v, %v, %v`, varr, others, err)
    	}
    	if _, _, err := ParseInputs("apiVersion: networking.istio.io/v1alpha3\nkind: VirtualService\nspec:\n  destination: x"); err == nil {
    		t.Error("ParseInput(bad spec) => got no error")
    	}
    	if _, _, err := ParseInputs("apiVersion: networking.istio.io/v1alpha3\nkind: VirtualService\nspec:\n  destination:\n    service:"); err == nil {
    		t.Error("ParseInput(invalid spec) => got no error")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/analysis/analysis_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: WorkloadEntry
    metadata:
      name: vm-1
    spec:
      address: 127.0.0.1
    `).ApplyOrFail(t)
    
    			retry.UntilSuccessOrFail(t, func() error {
    				// we should expect an empty array not nil
    				return expectWorkloadEntryStatus(t, ns, nil)
    			})
    
    			// add one health condition and one other condition
    			addedConds := []*v1alpha1.IstioCondition{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	FailoverPriorityLabelDefaultSeparator = '='
    )
    
    func GetLocalityLbSetting(
    	mesh *v1alpha3.LocalityLoadBalancerSetting,
    	destrule *v1alpha3.LocalityLoadBalancerSetting,
    ) *v1alpha3.LocalityLoadBalancerSetting {
    	var enabled bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top