Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 146 for egressgateway (0.86 sec)

  1. manifests/charts/gateways/istio-ingress/templates/poddisruptionbudget.yaml

    {{- if .Values.global.defaultPodDisruptionBudget.enabled }}
    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    apiVersion: policy/v1
    kind: PodDisruptionBudget
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | trim | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 666 bytes
    - Viewed (0)
  2. tests/integration/iop-ambient-test-defaults.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/rolebindings.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 632 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/xds/mesh_network_test.go

    	})
    	t.Run("gateway added via label", func(t *testing.T) {
    		_, err := s.KubeClient().Kube().CoreV1().Services("istio-system").Create(context.TODO(), &corev1.Service{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "istio-ingressgateway",
    				Namespace: "istio-system",
    				Labels: map[string]string{
    					label.TopologyNetwork.Name: "network-1",
    				},
    			},
    			Spec: corev1.ServiceSpec{
    				Type:  corev1.ServiceTypeLoadBalancer,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/status_test.go

    				IP: serviceIP,
    			}},
    		},
    	},
    }
    
    var testObjects = []runtime.Object{
    	&corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "ingressgateway",
    			Namespace: "istio-system",
    			Labels: map[string]string{
    				"istio": "ingressgateway",
    			},
    		},
    		Spec: corev1.PodSpec{
    			NodeName: "foo_node",
    		},
    		Status: corev1.PodStatus{
    			Phase: corev1.PodRunning,
    		},
    	},
    	ingressService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/templates/service.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if not $gateway.customService }}
    apiVersion: v1
    kind: Service
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      annotations:
        {{- range $key, $val := $gateway.serviceAnnotations }}
        {{ $key }}: {{ $val | quote }}
        {{- end }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/tls.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: passthrough
        port: 34000
        protocol: TLS
        allowedRoutes:
          namespaces:
            from: All
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top