Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for ingressGateways (0.27 sec)

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

    kind: Deployment
    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:
      selector:
        matchLabels:
          app: istio-ingressgateway
          istio: ingressgateway
      strategy:
        rollingUpdate:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tests/integration/security/file_mounted_certs/main_test.go

                  value: |-
                    name: client-certs
                    mountPath: /client-certs
    
      ingressGateways:
      - enabled: true
        name: istio-ingressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-ingressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate_value_test.go

      enabled: true
    gateways:
      enabled: true
      istio-ingressgateway:
        rollingMaxSurge: 4
        rollingMaxUnavailable: 1
        resources:
          requests:
            cpu: 1000m
            memory: 1G
        enabled: true
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
      pilot:
        enabled: true
      ingressGateways:
      - name: istio-ingressgateway
        enabled: true
        k8s:
          resources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. operator/pkg/util/merge_iop.go

    	Ztunel          *componentSpec     `json:"ztunnel" patchStrategy:"merge"`
    	IstiodRemote    *componentSpec     `json:"istiodRemote" patchStrategy:"merge"`
    	IngressGateways []*gatewaySpec     `json:"ingressGateways" patchStrategy:"merge" patchMergeKey:"name"`
    	EgressGateways  []*gatewaySpec     `json:"egressGateways" patchStrategy:"merge" patchMergeKey:"name"`
    }
    
    type baseComponentSpec struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. architecture/environments/operator.md

    kind: IstioOperator
    metadata:
      namespace: istio-operator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          namespace: istio-gateways
    ```
    
    the resulting namespaces will be:
    
    | Component | Namespace |
    | --------- | :-------- |
    ingressGateways | istio-gateways
    
    These rules are expressed in code in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.global.meshExpansion.enabled", "Gateway and other Istio networking resources, such as in samples/multicluster/", false},
    		{"Values.gateways.istio-ingressgateway.meshExpansionPorts", "components.ingressGateways[name=istio-ingressgateway].k8s.service.ports", nil},
    		{"AddonComponents.istiocoredns.Enabled", "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    		}
    	}
    }
    
    func TestManifestGenerateGateways(t *testing.T) {
    	g := NewWithT(t)
    
    	flags := "-s components.ingressGateways.[0].k8s.resources.requests.memory=999Mi " +
    		"-s components.ingressGateways.[name:user-ingressgateway].k8s.resources.requests.cpu=555m"
    
    	objss, err := runManifestCommands("gateways", flags, liveCharts, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/install.go

    			}
    			if enabled {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(c))
    			}
    		}
    		for _, c := range iop.Spec.Components.IngressGateways {
    			if c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(name.IngressComponentName))
    				break
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
Back to top