Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for istiooperators (0.3 sec)

  1. manifests/charts/istio-operator/crds/crd-operator.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: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

    ---
    # SYNC WITH manifests/charts/base/files
    apiVersion: apiextensions.k8s.io/v1beta1
    kind: CustomResourceDefinition
    metadata:
      name: istiooperators.install.istio.io
    spec:
      group: install.istio.io
      names:
        kind: IstioOperator
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
      scope: Namespaced
      subresources:
        status: {}
      validation:
        openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top