Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for IstioOperator (0.65 sec)

  1. architecture/environments/operator.md

    namespace is defined as:
    
    ```yaml
    defaultNamespace: istio-system
    ```
    
    and namespaces are specialized for the gateway feature and its components:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-operator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          namespace: istio-gateways
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate.go

    	if un.GetAPIVersion() == istioV1Alpha1.IstioOperatorGVK.GroupVersion().String() {
    		if un.GetKind() == istioV1Alpha1.IstioOperatorGVK.Kind {
    			if err := checkFields(un); err != nil {
    				return nil, err
    			}
    			// IstioOperator isn't part of pkg/config/schema/collections,
    			// usual conversion not available.  Convert unstructured to string
    			// and ask operator code to check.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		},
    	})
    }
    
    // TestManifestGenerateHelmValues tests whether enabling components through the values passthrough interface works as
    // expected i.e. without requiring enablement also in IstioOperator API.
    func TestManifestGenerateHelmValues(t *testing.T) {
    	runTestGroup(t, testGroup{
    		{
    			desc:       "helm_values_enablement",
    			diffSelect: "Deployment:*:istio-egressgateway, Service:*:istio-egressgateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. tests/integration/README.md

    | -istio.test.kube.helm.values | string | Manual overrides for Helm values file. Only valid when deploying Istio. |
    | -istio.test.kube.helm.iopFile | string | IstioOperator spec file. This can be an absolute path or relative to the repository root. Defaults to "tests/integration/iop-integration-test-defaults.yaml". |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top