Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 279 for ingressGateways (0.25 sec)

  1. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

    metadata:
      name: {{ $gateway.name | default "istio-ingressgateway" }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        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"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tests/integration/iop-externalistiod-primary-integration-test-defaults.yaml

              value: "istio-istio-system"
            - name: EXTERNAL_ISTIOD
              value: "true"
            - name: SHARED_MESH_CONFIG
              value: istio
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        egressGateways:
        - name: istio-egressgateway
          enabled: false
      values:
        global:
          operatorManageWebhooks: true
          configValidation: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 22:06:57 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    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)
  4. operator/cmd/mesh/testdata/manifest-generate/input/all_on.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: true
        pilot:
          enabled: true
        cni:
          enabled: false
        ingressGateways:
          - namespace: istio-system
            name: istio-ingressgateway
            enabled: true
        egressGateways:
          - namespace: istio-system
            name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 23 20:45:29 UTC 2020
    - 387 bytes
    - Viewed (0)
  5. tests/integration/iop-integration-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            k8s:
              service:
                ports:
                  ## Default ports
                  - port: 15021
                    targetPort: 15021
                    name: status-port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/autoscaling_ingress_v2.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - enabled: true
          name: istio-ingressgateway
          k8s:
            hpaSpec:
              metrics:
              - resource:
                  name: cpu
                  target:
                    type: Utilization
                    averageUtilization: 80
              - resource:
                  name: memory
                  target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 603 bytes
    - Viewed (0)
  7. manifests/profiles/default.yaml

      tag: latest
    
      # Turn on default components: base, pilot, and ingress gateway
      components:
        base:
          enabled: true
        pilot:
          enabled: true
        # Istio Gateway feature
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        egressGateways:
        - name: istio-egressgateway
          enabled: false
    
      # Most default values come from the helm chart's values.yaml
      # Below are the things that differ
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 744 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-ingress/templates/rolebindings.yaml

    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"
    roleRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 632 bytes
    - Viewed (0)
  9. releasenotes/notes/sni-dnat-default.yaml

          {{< text yaml >}}
          ingressGateways:
           - name: istio-ingressgateway
             enabled: true
             k8s:
               env:
                 - name: ISTIO_META_ROUTER_MODE
                   value: "sni-dnat"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 09:47:40 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. operator/pkg/name/name_test.go

    	}
    }
    
    func TestTitleCase(t *testing.T) {
    	tests := []struct {
    		name string
    		n    ComponentName
    		want ComponentName
    	}{
    		{
    			name: "to upper title",
    			n:    "ingressGateways",
    			want: "IngressGateways",
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := TitleCase(tt.n); got != tt.want {
    				t.Errorf("TitleCase() = %v, want %v", got, tt.want)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top