Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 279 for ingressGateways (0.31 sec)

  1. tests/integration/pilot/testdata/upgrade/README.md

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      revision: 1-x-y
      components:
        base:
          enabled: false
        pilot:
          enabled: true
        ingressGateways:
          - name: istio-ingressgateway
            enabled: false
    
      values:
        global:
          proxy:
            resources:
              requests:
                cpu: 10m
                memory: 40m
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. operator/pkg/tpath/tree_test.go

    			desc: "with initial list",
    			baseYAML: `
    components:
      ingressGateways:
        - enabled: true
    `,
    			path:  "components.ingressGateways[0].enabled",
    			value: "false",
    			want: `
    components:
      ingressGateways:
        - enabled: "false"
    `,
    		},
    		{
    			desc:     "no initial list",
    			baseYAML: "",
    			path:     "components.ingressGateways[0].enabled",
    			value:    "false",
    			want: `
    components:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

        operator.istio.io/component: "IngressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top