Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 211 for ingressGateways (0.35 sec)

  1. pkg/test/datasets/validation/dataset/networking-v1-Gateway.yaml

    # Routes TCP traffic through the ingressgateway Gateway to service A.
    apiVersion: networking.istio.io/v1
    kind: Gateway
    metadata:
      name: valid-gateway
    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: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 460 bytes
    - Viewed (0)
  2. pkg/test/datasets/validation/dataset/networking-v1beta1-Gateway.yaml

    # Routes TCP traffic through the ingressgateway Gateway to service A.
    apiVersion: networking.istio.io/v1beta1
    kind: Gateway
    metadata:
      name: valid-gateway
    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: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 465 bytes
    - Viewed (0)
  3. manifests/charts/gateway/README.md

    ## Installing the Chart
    
    To install the chart with the release name `istio-ingressgateway`:
    
    ```console
    helm install istio-ingressgateway istio/gateway
    ```
    
    ## Uninstalling the Chart
    
    To uninstall/delete the `istio-ingressgateway` deployment:
    
    ```console
    helm delete istio-ingressgateway
    ```
    
    ## Configuration
    
    To view support configuration options and documentation, run:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/conflicting-gateways-invalid-port.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: beta
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
            - "foo.bar"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 06:53:55 UTC 2023
    - 337 bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/conflicting-gateways.yaml

    kind: Gateway
    metadata:
      name: beta
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: tcp
          protocol: TCP
        hosts:
        - "foo.bar"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 452 bytes
    - Viewed (0)
  6. tests/testdata/config/gateway-tcp-a.yaml

    # Routes TCP traffic through the ingressgateway Gateway to service A.
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway-a
      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: 31400
          protocol: TCP
          name: tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 482 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/gateway.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: istio-ingressgateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      strategy: {}
      template:
        metadata:
          annotations:
            inject.istio.io/templates: gateway
            istio.io/rev: default
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/multi-gateway.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,istio-ingressgateway.not-default.svc.domain.suffix,example.com
        internal.istio.io/parents: Gateway/gateway/http.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-http
      namespace: istio-system
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/invalid.yaml

    spec:
      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/only-proxy-container.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: istio-ingressgateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top