Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 211 for ingressGateways (0.31 sec)

  1. samples/bookinfo/policy/productpage_envoy_ratelimit.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-ratelimit
      namespace: istio-system
    spec:
      workloadSelector:
        # select by label in the same namespace
        labels:
          istio: ingressgateway
      configPatches:
        # The Envoy config you want to modify
        - applyTo: HTTP_FILTER
          match:
            context: GATEWAY
            listener:
              filterChain:
                filter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 10 15:30:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/config/analysis/analyzers/testdata/image-auto.yaml

    kind: Deployment
    metadata:
      name: non-injected-gateway-deployment
      namespace: not-injected
    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          annotations:
            inject.istio.io/templates: gateway
          labels:
            istio: ingressgateway
        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_route_rule_no_effects_ingress.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: testing-gateway-01-test-01
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}
      namespace: {{ .SystemNamespace.Name }}
    spec:
      action: DENY
      selector:
        matchLabels:
          app: {{.GatewayIstioLabel | default "istio-ingressgateway"}}
      rules:
        - to:
            - operation:
                hosts: [
                  "deny.{{ .To.ServiceName }}.com",
                  "*.suffix.{{ .To.ServiceName }}.com",
                  "prefix.{{ .To.ServiceName }}.*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/config/analysis/local/defaults.go

    // limitations under the License.
    
    package local
    
    import (
    	"bytes"
    	"text/template"
    )
    
    const defaultIstioIngressGateway = `
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        istio: ingressgateway
      name: {{.ingressService}}-dummypod
      namespace: {{.namespace}}
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: {{.ingressService}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. pilot/pkg/config/kube/gateway/testdata/reference-policy-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/my-svc.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-my-svc
      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
    - 2K bytes
    - Viewed (0)
Back to top