Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for istiooperators (0.34 sec)

  1. operator/pkg/apis/istio/v1alpha1/deepcopy_test.go

    - type: Resource
      resource:
        targetAverageValue: 100m`), z)
    	t.Log(z)
    	if err != nil {
    		t.Fatal(err)
    	}
    	fa := &install.IstioOperator{}
    	err = yaml.UnmarshalStrict([]byte(`apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: example-istiocontrolplane
    spec:
      profile: demo
      components:
        pilot:
          k8s:
            hpaSpec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. releasenotes/notes/43580.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - 42068
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 01 12:45:02 UTC 2023
    - 238 bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    				v.reportFailure(kind, name, namespace, ivf)
    				return ivf
    			}
    		case "IstioOperator":
    			// It is not a problem if the cluster does not include the IstioOperator
    			// we are checking.  Instead, verify the cluster has the things the
    			// IstioOperator specifies it should have.
    
    			// IstioOperator isn't part of pkg/config/schema/collections,
    			// usual conversion not available.  Convert unstructured to string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. operator/pkg/util/k8s_test.go

    )
    
    var (
    	o1 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        global:
          pilotCertProvider: kubernetes
    `
    	o2 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        global:
          pilotCertProvider: istiod
    `
    	o3 = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
    `
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tests/integration/operator/switch_cr_test.go

    		scopes.Framework.Errorf("failed to cleanup dynamically created resources: %v", err)
    	}
    }
    
    // checkInstallStatus check the status of IstioOperator CR from the cluster
    func checkInstallStatus(cs istioKube.CLIClient, revision string) error {
    	scopes.Framework.Infof("checking IstioOperator CR status")
    	gvr := iopv1alpha1.IstioOperatorGVR
    
    	var unhealthyCN []string
    	retryFunc := func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top