Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for ingressGateways (0.23 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/gateway/testdata/tls.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/passthrough.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-passthrough
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/multi-gateway.yaml

    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      gatewayClassName: istio
      addresses:
      - type: Hostname
        value: istio-ingressgateway
      - type: Hostname
        value: istio-ingressgateway.not-default.svc.domain.suffix
      - type: Hostname
        value: example.com
      listeners:
      - name: http
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
      - name: tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 672 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

        type: Accepted
      - lastTransitionTime: fake
        message: 'Assigned to service(s) example.com:34000, example.com:80, istio-ingressgateway.istio-system.svc.domain.suffix:34000,
          and istio-ingressgateway.istio-system.svc.domain.suffix:80, but failed to assign
          to all requested addresses: hostname "istio-ingressgateway.not-default.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/istio.go

    	resource.Resource
    
    	Settings() Config
    	// Ingresses returns all ingresses for "istio-ingressgateway" in each cluster.
    	Ingresses() ingress.Instances
    	// IngressFor returns an ingress used for reaching workloads in the given cluster.
    	// The ingress's service name will be "istio-ingressgateway" and the istio label will be "ingressgateway".
    	IngressFor(cluster cluster.Cluster) ingress.Instance
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/delegated.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/apple.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-apple
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - apple/apple.example
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/alias.yaml

      controllerName: istio.io/gateway-controller
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: third-party-gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: third-party-gatewayclass
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/_helpers.tpl

    {{- define "gateway.name" -}}
    {{- if eq .Release.Name "RELEASE-NAME" -}}
      {{- .Values.name | default "istio-ingressgateway" -}}
    {{- else -}}
      {{- .Values.name | default .Release.Name | default "istio-ingressgateway" -}}
    {{- end -}}
    {{- end }}
    
    {{/*
    Create chart name and version as used by the helm.sh/chart label.
    */}}
    {{- define "gateway.chart" -}}
    {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.status.yaml.golden

        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:34000
          and istio-ingressgateway.istio-system.svc.domain.suffix:34001
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top