Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 211 for ingressGateways (0.45 sec)

  1. operator/pkg/helmreconciler/prune_test.go

    		assert.NoError(t, err)
    		assert.Equal(t, true, len(resources) > 0)
    		// check resources, only associated with iop-test-gw-1 istiooperator CR,
    		// otherwise, the resources of all IngressGateways components will be deleted.
    		// See https://github.com/istio/istio/issues/40577 for more details.
    		for _, uslist := range resources {
    			for _, u := range uslist.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. operator/pkg/validate/validate.go

    		},
    		"MeshConfig":                 validateMeshConfig,
    		"Hub":                        validateHub,
    		"Tag":                        validateTag,
    		"Revision":                   validateRevision,
    		"Components.IngressGateways": validateGatewayName,
    		"Components.EgressGateways":  validateGatewayName,
    	}
    	// requiredValues lists all the values that must be non-empty.
    	requiredValues = map[string]bool{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. tests/testdata/config/ingressgateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-ingressgateway
      namespace: testns
    spec:
      selector:
        # DO NOT CHANGE THESE LABELS
        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 80 #also declared in gateway's deployment files
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 914 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8003
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 03 07:52:54 UTC 2023
    - 674 bytes
    - Viewed (0)
  5. tests/testdata/config/rule-ingressgateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: gateway-bound-route
      namespace: testns
    spec:
      hosts:
        - uk.bookinfo.com
      gateways:
      - istio-ingressgateway # pinned to ingress gateway only
      http:
        - route:
          - destination:
              host: c
              subset: v2
              port:
                number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 367 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-svcselector.yaml

        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8001
      name: my-ingressgateway-8001
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: ingressgateway-8002
      name: my-ingressgateway-8002
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 674 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-translation.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 80
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 672 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  10. pilot/pkg/model/gateway_test.go

    	gwHTTPFoo := makeConfig("foo1", "not-default", "foo.bar.com", "name1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    	gwHTTPbar := makeConfig("bar1", "not-default", "bar.foo.com", "bname1", "http", 7, "ingressgateway", "", networking.ServerTLSSettings_SIMPLE)
    	gwHTTPlocalbar := makeConfig("lcoalbar1", "not-default", "localbar.foo.com", "bname1", "http", 7, "ingressgateway", "127.0.0.1", networking.ServerTLSSettings_SIMPLE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top