Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for IstioOperator (0.2 sec)

  1. operator/pkg/controller/istiocontrolplane/errdict.go

    		Action:      "Delete and re-add the IstioOperator resource. " + actionIfErrPersistsCheckBugList,
    	}
    	operatorFailedToRemoveFinalizer = &structured.Error{
    		MoreInfo: "The finalizer set by the operator controller could not be removed " +
    			"when the IstioOperator resource was deleted.",
    		Impact:      "The IstioOperator resource can not be removed by the operator controller.",
    		LikelyCause: formatCauses(likelyCauseAPIServer),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    			oldIOP := e.ObjectOld
    			newIOP := e.ObjectNew
    
    			// If revision is updated in the IstioOperator resource, we must remove entries
    			// from the cache. If the IstioOperator resource is reverted back to match this operator's
    			// revision, a clean cache would ensure that the operator Reconcile the IstioOperator,
    			// and not skip it.
    			if oldIOP.Spec.Revision != newIOP.Spec.Revision {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/common.go

    		return iops, fmt.Errorf(errs.Error())
    	}
    	return iops, nil
    }
    
    // UnmarshalIstioOperator unmarshals a string containing IstioOperator YAML.
    func UnmarshalIstioOperator(iopYAML string, allowUnknownField bool) (*operator_v1alpha1.IstioOperator, error) {
    	iop := &operator_v1alpha1.IstioOperator{}
    	if allowUnknownField {
    		if err := yaml.Unmarshal([]byte(iopYAML), iop); err != nil {
    			return nil, fmt.Errorf("could not unmarshal: %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/multiple_iops.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    
    ---
    
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 18 23:10:38 UTC 2021
    - 134 bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/zz_generated.deepcopy.go

    func (in *IstioOperator) DeepCopy() *IstioOperator {
    	if in == nil {
    		return nil
    	}
    	out := new(IstioOperator)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *IstioOperator) DeepCopyObject() runtime.Object {
    	if c := in.DeepCopy(); c != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/register.go

    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"sigs.k8s.io/controller-runtime/pkg/scheme"
    )
    
    var (
    	// IstioOperatorGVK is GVK for IstioOperator
    	IstioOperatorGVK = schema.GroupVersionKind{
    		Version: "v1alpha1",
    		Group:   "install.istio.io",
    		Kind:    "IstioOperator",
    	}
    
    	// SchemeGroupVersion is group version used to register these objects
    	SchemeGroupVersion = IstioOperatorGVK.GroupVersion()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. releasenotes/notes/drop-iop.yaml

      - |
        **Removed** the `installed-state` `IstioOperator` that was created when running `istioctl install`. This previously provided only a snapshot
        of what was installed.
        However, it was a common source of confusion (as users would change it and nothing would happen), and did not reliably represent the current state.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 769 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top