Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 279 for ingressGateways (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. manifests/charts/gateways/istio-egress/NOTES.txt

    namespace.
    
    All ingress gateway have a "app:ingressgateway" label, used to identify it as an
    ingress, and an "istio: ingressgateway$SUFFIX" label of Gateway selection.
    
    The Gateways use "istio: ingressgateway$SUFFIX" selectors.
    
    
    # Multiple gateway versions
    
    
    
    # Using different pilot versions
    
    
    
    # Migration from istio-system
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/only-proxy-container.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-ingressgateway
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          labels:
            istio: ingressgateway
        spec:
          # Ensure we can have istio-proxy as the only container. This isn't particularly useful as a sidecar
          # but will be used when we have a dedicated template to run a pod as a Gateway
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 23:55:05 UTC 2020
    - 474 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    metadata:
      name: reviews
      namespace: bar
    spec:
      hosts:
      - reviews.foo.svc.cluster.local # shouldn't generate an error as the gateway is different even though host is the same
      gateways:
      - istio-ingressgateway
      http:
      - route:
        - destination:
            host: reviews
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
      namespace: foo
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  10. istioctl/pkg/util/handlers/handlers_test.go

    		wantNamespace string
    	}{
    		{
    			proxyName:     "istio-ingressgateway-8d9697654-qdzgh.istio-system",
    			namespace:     "kube-system",
    			wantPodName:   "istio-ingressgateway-8d9697654-qdzgh",
    			wantNamespace: "istio-system",
    		},
    		{
    			proxyName:     "istio-ingressgateway-8d9697654-qdzgh.istio-system",
    			namespace:     "",
    			wantPodName:   "istio-ingressgateway-8d9697654-qdzgh",
    			wantNamespace: "istio-system",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top