Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 211 for ingressGateways (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/analysis/analyzers/testdata/analyze-list-type.yaml

    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
        - port:
            number: 80
            name: tcp
            protocol: TCP
          hosts:
            - "foo.bar"
    ---
    apiVersion: v1
    kind: List
    items:
      - apiVersion: networking.istio.io/v1alpha3
        kind: Gateway
        metadata:
          name: beta-l
        spec:
          selector:
            istio: ingressgateway
          servers:
            - port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 29 14:06:38 UTC 2022
    - 869 bytes
    - Viewed (0)
  7. pkg/test/datasets/validation/dataset/networking-v1alpha3-Gateway.yaml

    # Routes TCP traffic through the ingressgateway Gateway to service A.
    apiVersion: networking.istio.io/v1alpha3
    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: Tue Oct 17 07:02:38 UTC 2023
    - 466 bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.json

                            "metadata": {
                                "filterMetadata": {
                                    "istio": {
                                        "workload": "istio-ingressgateway;istio-system;istio-ingressgateway;latest;Kubernetes"
                                    }
                                }
                            },
                            "loadBalancingWeight": 1
                        }
                    ],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/portfilter_output.yaml

    - clusterName: outbound|80||istio-ingressgateway.istio-system.svc.cluster.local
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              socketAddress:
                address: 10.244.0.176
                portValue: 8080
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
          metadata:
            filterMetadata:
              istio:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/authz-b.yaml

        matchLabels:
          "istio": {{.GatewayIstioLabel | default "ingressgateway"}}
      rules:
      - to:
        - operation:
            notPorts: ["100"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: deny-policy
    spec:
      action: DENY
      selector:
        matchLabels:
          "istio": {{.GatewayIstioLabel | default "ingressgateway"}}
      rules:
      - to:
        - operation:
            ports: ["100"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 941 bytes
    - Viewed (0)
Back to top