Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 159 for IstioOperator (0.21 sec)

  1. 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)
  2. 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)
  3. tests/integration/pilot/testdata/upgrade/README.md

    They are `tar`ed to avoid developer confusion and accidental edits.
    
    ## Adding a new version
    
    1. Generate a revisioned IstioOperator for the version with equivalent settings:
    
    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      hub: gcr.io/istio-release
      revision: 1-x-y
      components:
        base:
          enabled: false
        pilot:
          enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. manifests/charts/istio-operator/crds/crd-operator.yaml

    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:
      - additionalPrinterColumns:
        - description: Istio control plane revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K 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/cmd/mesh/testdata/manifest-generate/input/default.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 10 04:08:45 UTC 2020
    - 84 bytes
    - Viewed (0)
Back to top