Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 211 for ingressGateways (0.27 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_v2.golden.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. operator/pkg/util/testdata/overlay-iop.yaml

        egressGateways:
        - name: istio-egressgateway
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
    
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 10m
                memory: 40Mi
            service:
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 15 20:10:17 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/testdata/iop-changed.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: iop-test-gw-1
      namespace: istio-system
    spec:
      profile: changed-profile
      components:
        ingressGateways:
          - name: test-gw-1
            enabled: false
            label:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 01 12:45:02 UTC 2023
    - 272 bytes
    - Viewed (0)
  4. tests/integration/iop-remote-integration-test-gateways.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: default-gateways
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            k8s:
              resources:
                requests:
                  cpu: 10m
                  memory: 40Mi
              service:
                ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 18:17:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/service.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    spec:
    {{- if $gateway.loadBalancerIP }}
      loadBalancerIP: "{{ $gateway.loadBalancerIP }}"
    {{- end }}
    {{- if $gateway.loadBalancerSourceRanges }}
      loadBalancerSourceRanges:
    {{ toYaml $gateway.loadBalancerSourceRanges | indent 4 }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. samples/security/spire/istio-spire-config.yaml

                      readOnly: true
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              istio: ingressgateway
            k8s:
              overlays:
                - apiVersion: apps/v1
                  kind: Deployment
                  name: istio-ingressgateway
                  patches:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. operator/pkg/name/name.go

    	// paths in IstioOperator.
    	ValuesEnablementPathMap = map[string]string{
    		"spec.values.gateways.istio-ingressgateway.enabled": "spec.components.ingressGateways.[name:istio-ingressgateway].enabled",
    		"spec.values.gateways.istio-egressgateway.enabled":  "spec.components.egressGateways.[name:istio-egressgateway].enabled",
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. samples/multicluster/gen-eastwest-gateway.sh

      fi
    fi
    
    # base
    IOP=$(cat <<EOF
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: eastwest
    spec:
      revision: "${REVISION}"
      profile: empty
      components:
        ingressGateways:
          - name: istio-eastwestgateway
            label:
              istio: eastwestgateway
              app: istio-eastwestgateway
    EOF
    )
    
    # mark this as a multi-network gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. operator/pkg/translate/translate_common.go

    			}
    			if enabled {
    				enabledComponents = append(enabledComponents, string(c))
    			}
    		}
    		for _, c := range iopSpec.Components.IngressGateways {
    			if c != nil && c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, string(name.IngressComponentName))
    				break
    			}
    		}
    		for _, c := range iopSpec.Components.EgressGateways {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. operator/pkg/controlplane/control_plane.go

    			return nil, err
    		}
    		o.Namespace = ns
    		out.components = append(out.components, component.NewCoreComponent(c, &o))
    	}
    
    	if installSpec.Components != nil {
    		for idx, c := range installSpec.Components.IngressGateways {
    			o := *opts
    			o.Namespace = defaultIfEmpty(c.Namespace, iop.Namespace(installSpec))
    			out.components = append(out.components, component.NewIngressComponent(c.Name, idx, c, &o))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top