Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for IstioOperator (0.2 sec)

  1. tests/integration/iop-wds.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        defaultConfig:
          proxyMetadata:
            PEER_METADATA_DISCOVERY: "true"
      values:
        pilot:
          env:
            PILOT_ENABLE_AMBIENT: "true"
            PILOT_ENABLE_AMBIENT_WAYPOINTS: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 398 bytes
    - Viewed (1)
  2. 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)
  3. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              aaa: aaa-val
              bbb: bbb-val
              version: "21"
            k8s:
              resources:
                requests:
                  cpu: 111m
                  memory: 111Mi
          - name: user-ingressgateway
            enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/uninstall_test.go

    				if err != nil {
    					t.Fatalf("failed to create temp file: %v", err)
    				}
    				defer tempFile.Close()
    				contents := fmt.Sprintf(`apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
      profile: remote
      revision: %s
    `, name, revision)
    				if _, err = tempFile.WriteString(contents); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    func (s *ExternalControlPlaneAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "externalcontrolplane.ExternalControlPlaneAnalyzer",
    		Description: "Checks that the remote IstioOperator resources reference an external control plane",
    		Inputs: []config.GroupVersionKind{
    			gvk.ValidatingWebhookConfiguration,
    			gvk.MutatingWebhookConfiguration,
    		},
    	}
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	}
    
    	for _, d := range warningSettings {
    		v, f, _ := tpath.GetFromStructPath(iop, d.old)
    		if f {
    			switch t := v.(type) {
    			// need to do conversion for bool value defined in IstioOperator component spec.
    			case *wrappers.BoolValue:
    				v = t.Value
    			}
    			if v != d.def {
    				messages = append(messages, fmt.Sprintf("! %s is deprecated; use %s instead", firstCharsToLower(d.old), d.new))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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