Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for istiooperators (0.25 sec)

  1. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: istiooperators.install.istio.io
      labels:
        release: istio
    spec:
      conversion:
        strategy: None
      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/operator/output/operator-dump.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: istiooperators.install.istio.io
      labels:
        release: istio
    spec:
      conversion:
        strategy: None
      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/register.go

    		Version:  SchemeGroupVersion.Version,
    		Resource: "istiooperators",
    	}
    
    	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
    	SchemeBuilder = &scheme.Builder{GroupVersion: SchemeGroupVersion}
    )
    
    // Register the IstioOperator and IstioOperatorList API kind
    func init() {
    	SchemeBuilder.Register(&IstioOperator{}, &IstioOperatorList{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/uninstall_test.go

    	var remainingResources []unstructured.Unstructured
    	var staleList []string
    	if usList != nil && len(usList.Items) != 0 {
    		for _, item := range usList.Items {
    			// ignore IstioOperator CRD because the operator CR is not in the pruning list
    			if item.GetName() == "istiooperators.install.istio.io" {
    				continue
    			}
    			remainingResources = append(remainingResources, item)
    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. operator/pkg/name/name.go

    	StatefulSetStr                    = "StatefulSet"
    	ValidatingWebhookConfigurationStr = "ValidatingWebhookConfiguration"
    )
    
    const (
    	// IstioOperatorStr is the kind name of the IstioOperator CRD.
    	IstioOperatorStr = "IstioOperator"
    
    	// OperatorAPINamespace is the API namespace for operator config.
    	// TODO: move this to a base definitions file when one is created.
    	OperatorAPINamespace = "operator.istio.io"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. istioctl/pkg/tag/revision.go

    	Age       string          `json:"age"`
    }
    
    // IstioOperatorCRInfo represents a tiny subset of fields from
    // IstioOperator CR. This structure is used for displaying data.
    // Exposed for integration test
    type IstioOperatorCRInfo struct {
    	IOP            *iopv1alpha1.IstioOperator `json:"-"`
    	Namespace      string                     `json:"namespace"`
    	Name           string                     `json:"name"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/prune.go

    		}
    		usList = append(usList, objects)
    	}
    
    	return usList, nil
    }
    
    // getIstioOperatorCR is a helper function to get IstioOperator CR during purge,
    // otherwise the resources would be reconciled back later if there is in-cluster operator deployment.
    // And it is needed to remove the IstioOperator CRD.
    func (h *HelmReconciler) getIstioOperatorCR() *unstructured.UnstructuredList {
    	iopGVR := iopv1alpha1.IstioOperatorGVR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top