Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for istiooperators (0.31 sec)

  1. tests/integration/pilot/testdata/upgrade/README.md

    They are `tar`ed to avoid developer confusion and accidental edits.
    
    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      revision: 1-x-y
      components:
        base:
          enabled: false
        pilot:
          enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/config.go

    	TelemetryNamespace string
    
    	// The IstioOperator spec file to be used for Control plane cluster by default
    	PrimaryClusterIOPFile string
    
    	// The IstioOperator spec file to be used for Config cluster by default
    	ConfigClusterIOPFile string
    
    	// The IstioOperator spec file to be used for Remote cluster by default
    	RemoteClusterIOPFile string
    
    	// The IstioOperator spec file used as the base for all installs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/types.go

    // Because the spec is a customization API, specifying an empty IstioOperatorSpec results in a default Istio
    // component values.
    //
    //	apiVersion: install.istio.io/v1alpha1
    //	kind: IstioOperator
    //	spec:
    //	  profile: default
    //	  hub: gcr.io/istio-testing
    //	  tag: latest
    //	  revision: 1-8-0
    //	  meshConfig:
    //	    accessLogFile: /dev/stdout
    //	    enableTracing: true
    //	  components:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 15 10:49:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/prune_test.go

    		// init two custom gateways with revision
    		gateways := [][]byte{iopTestGwData1, iopTestGwData2}
    		for i, data := range gateways {
    			iop := &v1alpha1.IstioOperator{}
    			err := yaml.UnmarshalStrict(data, iop)
    			assert.NoError(t, err)
    			h := &HelmReconciler{
    				client:     cl,
    				kubeClient: kube.NewFakeClientWithVersion("24"),
    				opts: &Options{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 12:13:37 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. operator/pkg/manifest/shared.go

    }
    
    // GenIOPFromProfile generates an IstioOperator from the given profile name or path, and overlay YAMLs from user
    // files and the --set flag. If successful, it returns an IstioOperator string and struct.
    func GenIOPFromProfile(profileOrPath, fileOverlayYAML string, setFlags []string, skipValidation, allowUnknownField bool,
    	client kube.Client, l clog.Logger,
    ) (string, *iopv1alpha1.IstioOperator, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/default.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 10 04:08:45 UTC 2020
    - 84 bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    }
    
    // SetStatusComplete updates the status field on the IstioOperator instance based on the resulting err parameter.
    func (h *HelmReconciler) SetStatusComplete(status *v1alpha1.InstallStatus) error {
    	iop := &istioV1Alpha1.IstioOperator{}
    	if err := h.getClient().Get(context.TODO(), config.NamespacedName(h.iop), iop); err != nil {
    		return fmt.Errorf("failed to get IstioOperator before updating status due to %v", err)
    	}
    	iop.Status = status
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/input/bogus_cps.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
    spec:
      values:
        global:
          mountMtlsCerts:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 24 22:39:29 UTC 2020
    - 179 bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/profile-dump/input/config_path.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: default
      components:
        pilot:
          enabled: false
        cni:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 22:32:18 UTC 2020
    - 159 bytes
    - Viewed (0)
  10. operator/samples/default-install.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: istio-operator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 12 18:15:24 UTC 2020
    - 143 bytes
    - Viewed (0)
Back to top