Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for IstioOperator (0.25 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/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. 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)
  5. 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)
  6. operator/pkg/name/name.go

    	DeploymentStr                     = "Deployment"
    	EndpointStr                       = "Endpoints"
    	HPAStr                            = "HorizontalPodAutoscaler"
    	IstioOperator                     = "IstioOperator"
    	MutatingWebhookConfigurationStr   = "MutatingWebhookConfiguration"
    	NamespaceStr                      = "Namespace"
    	NetworkAttachmentDefinitionStr    = "NetworkAttachmentDefinition"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. operator/cmd/mesh/install.go

    }
    
    // InstallManifests generates manifests from the given istiooperator instance and applies them to the
    // cluster. See GenManifests for more description of the manifest generation process.
    //
    //	force   validation warnings are written to logger but command is not aborted
    //	DryRun  all operations are done but nothing is written
    //
    // Returns final IstioOperator after installation if successful.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. tests/integration/operator/uninstall_test.go

    	}
    
    	if err := cs.ApplyYAMLFiles(IstioNamespace, iopCRFile); err != nil {
    		t.Fatalf("failed to apply IstioOperator CR file: %s, %v", iopCRFile, err)
    	}
    }
    
    func checkIopExist(cs istiokube.CLIClient, iopName string) (bool, error) {
    	scopes.Framework.Infof("checking IstioOperator CR status")
    	gvr := iopv1alpha1.IstioOperatorGVR
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. manifests/profiles/stable.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 94 bytes
    - Viewed (0)
Back to top