Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for ingressGateways (0.52 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/ingressgateway-support-daemonset.yaml

    zirain <******@****.***> 1649425737 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 08 13:48:57 UTC 2022
    - 156 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "03.test-06.com" # no validation error
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway-04-test-06
      namespace: default
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare_test.go

    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-ingressgateway
        release: istio`,
    			want: `metadata:
      labels:
        app: <empty> -> istio-ingressgateway (ADDED)
      name: <empty> -> istio-ingressgateway (ADDED)
    `,
    		},
    		{
    			desc: "two missing",
    			a: `apiVersion: autoscaling/v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  8. tests/integration/pilot/gw_topology_test.go

    kind: Service
    metadata:
      name: custom-gateway
      labels:
        istio: ingressgateway
    spec:
      ports:
      - port: 80
        targetPort: 8080
        name: http
      selector:
        istio: ingressgateway
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: custom-gateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. tests/testdata/networking/ingress-gateway/configs.yaml

      resolution: STATIC
      exportTo:
      - '*'
      endpoints:
      - address: 99.1.1.1
        labels:
          istio: ingressgateway
    ---
    # Ingress gateway spec
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 28 15:04:31 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/gateway.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-ingressgateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          labels:
            istio: ingressgateway
          annotations:
            inject.istio.io/templates: gateway
        spec:
          # Ensure we can have istio-proxy as the only container. This isn't particularly useful as a sidecar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 15:33:57 UTC 2022
    - 574 bytes
    - Viewed (0)
Back to top