Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 181 for ingressGateways (0.32 sec)

  1. tests/integration/base.yaml

            PILOT_ENABLE_ALPHA_GATEWAY_API: "true"
        global:
          proxy:
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
        gateways:
          istio-ingressgateway:
            autoscaleEnabled: false
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
          istio-egressgateway:
            autoscaleEnabled: false
            resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/Chart.yaml

    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio gateways
    keywords:
      - istio
      - ingressgateway
      - gateways
    sources:
      - http://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 400 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/delegated.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: apple
        hostname: "apple.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/config/kube/gateway/testdata/mcs.yaml

    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
        port: 34000
        protocol: TCP
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
      namespace: istio-system
    spec:
      parentRefs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 572 bytes
    - Viewed (0)
  6. pkg/bootstrap/config_test.go

    			"multi",
    			map[string]string{
    				"app":               "istio-ingressgateway",
    				"chart":             "gateways",
    				"heritage":          "Tiller",
    				"istio":             "ingressgateway",
    				"pod-template-hash": "54756dbcf9",
    			},
    		},
    		{
    			"multi line",
    			map[string]string{
    				"config": `foo: bar
    other: setting`,
    				"istio": "ingressgateway",
    			},
    		},
    		{
    			"weird values",
    			map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/mcs.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:
        - istio-system/*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/grpc.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 Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. samples/bookinfo/networking/bookinfo-gateway.yaml

    metadata:
      name: bookinfo-gateway
    spec:
      # The selector matches the ingress gateway pod labels.
      # If you installed Istio using Helm following the standard documentation, this would be "istio=ingress"
      selector:
        istio: ingressgateway # use istio default controller
      servers:
      - port:
          number: 8080
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/tcp.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:
        - '*/*'
        port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1019 bytes
    - Viewed (0)
Back to top