Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 279 for ingressGateways (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. operator/pkg/helmreconciler/prune_test.go

    		assert.NoError(t, err)
    		assert.Equal(t, true, len(resources) > 0)
    		// check resources, only associated with iop-test-gw-1 istiooperator CR,
    		// otherwise, the resources of all IngressGateways components will be deleted.
    		// See https://github.com/istio/istio/issues/40577 for more details.
    		for _, uslist := range resources {
    			for _, u := range uslist.Items {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. operator/pkg/validate/validate.go

    		},
    		"MeshConfig":                 validateMeshConfig,
    		"Hub":                        validateHub,
    		"Tag":                        validateTag,
    		"Revision":                   validateRevision,
    		"Components.IngressGateways": validateGatewayName,
    		"Components.EgressGateways":  validateGatewayName,
    	}
    	// requiredValues lists all the values that must be non-empty.
    	requiredValues = map[string]bool{}
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. 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)
Back to top