Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,786 for v1alpha3 (0.38 sec)

  1. pilot/pkg/config/kube/gateway/testdata/tls.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    func (c *CaCertificateAnalyzer) analyzeDestinationRule(r *resource.Instance, ctx analysis.Context) {
    	dr := r.Message.(*v1alpha3.DestinationRule)
    	drNs := r.Metadata.FullName.Namespace
    	drName := r.Metadata.FullName.String()
    	mode := dr.GetTrafficPolicy().GetTls().GetMode()
    	if mode == v1alpha3.ClientTLSSettings_SIMPLE || mode == v1alpha3.ClientTLSSettings_MUTUAL {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tests/testdata/config/se-example-gw.yaml

    
    # Sidecar - no imports defined, isolated namespace.
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default
      namespace: exampleegressgw
    spec:
      egress:
      - hosts:
          - exampleegressgw/*
    ---
    # Test workload entry
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: workload
      namespace: exampleegressgw
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 26 13:51:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe_test.go

    									},
    									Port:             &v1alpha32.PortSelector{Number: 8080},
    									Tls:              &v1alpha32.ClientTLSSettings{Mode: v1alpha32.ClientTLSSettings_DISABLE},
    									ConnectionPool:   &v1alpha32.ConnectionPoolSettings{Tcp: &v1alpha32.ConnectionPoolSettings_TCPSettings{MaxConnections: 10}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/invalid.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/nds-se.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-dns-no-addr
      namespace: ns2
    spec:
      hosts:
        - random-1.host.example
      # expect address to be auto allocated
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-dns-with-addr
      namespace: ns2
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/config/memory/store_test.go

    		Meta: config.Meta{
    			GroupVersionKind: config.GroupVersionKind{
    				Group:   "networking.istio.io",
    				Version: "v1alpha3",
    				Kind:    "ServiceEntry",
    			},
    			Namespace: "ns",
    		},
    		Spec: &v1alpha3.ServiceEntry{
    			Hosts: []string{"www.foo.com"},
    		},
    	}
    	for n := 0; n < b.N; n++ {
    		b.StopTimer()
    		s := initStore(b)
    		b.StartTimer()
    		// update one thousand times
    		for i := 0; i < 1000; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. samples/bookinfo/networking/destination-rule-all.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: productpage
    spec:
      host: productpage
      subsets:
      - name: v1
        labels:
          version: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: reviews
    spec:
      host: reviews
      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 972 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/envoy-filter-remove-operation.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-remove-4
      namespace: bookinfo
    spec:
      workloadSelector:
        labels:
          app: mysvc1
      configPatches:
      - applyTo: NETWORK_FILTER # http connection manager is a filter in Envoy
        match:
        patch:
    
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-remove-5
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: gateway-istio.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top