Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IstioOperator (0.15 sec)

  1. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    	// Top-level work dir for Istio deployment.
    	workDir, err := ctx.CreateTmpDirectory("istio-deployment")
    	if err != nil {
    		return nil, err
    	}
    
    	// Generate common IstioOperator yamls for different cluster types (primary, remote, remote-config)
    	iopFiles, err := genCommonOperatorFiles(ctx, cfg, workDir)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K 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)
Back to top