Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 576 for planes (0.57 sec)

  1. pkg/test/framework/components/environment/kube/flags.go

    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. This topology also determines where control planes should "+
    			"be deployed. If not specified, the default is to deploy a control plane per cluster (i.e. `replicated control "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    			// Install ingress and egress gateways
    			// These need to be installed as a separate step for external control planes because config clusters are installed
    			// before the external control plane cluster. Since remote clusters use gateway injection, we can't install the gateways
    			// until after the control plane is running, so we install them here. This is not really necessary for pure (non-config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/uninstall.go

    		Long:  "The uninstall command uninstalls Istio from a cluster",
    		Example: `  # Uninstall a single control plane by revision
      istioctl uninstall --revision foo
    
      # Uninstall a single control plane by iop file
      istioctl uninstall -f iop.yaml
      
      # Uninstall all control planes and shared resources
      istioctl uninstall --purge`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pkg/test/framework/test.go

    	//
    	// Deprecated: All new tests should support multiple clusters.
    	RequiresSingleCluster() Test
    	// RequiresLocalControlPlane ensures that clusters are using locally-deployed control planes.
    	//
    	// Deprecated: Tests should not make assumptions regarding control plane topology.
    	RequiresLocalControlPlane() Test
    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            def operand6 = moduleId('fact', 'grass')
            def operand7 = moduleId('crib', 'planes')
            def operand8 = moduleId('stove', 'pull')
            def operand9 = moduleId('calculator', 'suggestion')
            def operand10 = moduleId('beginner', 'plough')
            def operand11 = moduleId('insurance', 'hat')
            def operand12 = moduleId('toys', 'plant')
            def operand13 = moduleId('trail', 'wing')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/values.yaml

        # values by adding its node selector block in the relevant section below and setting
        # the desired values.
        defaultNodeSelector: {}
    
        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload.go

    }
    
    // Returns a map with each k,v entry on a new line
    func mapToString(m map[string]string) string {
    	lines := []string{}
    	for k, v := range m {
    		lines = append(lines, fmt.Sprintf("%s=%s", k, shellescape.Quote(v)))
    	}
    	sort.Strings(lines)
    	return strings.Join(lines, "\n") + "\n"
    }
    
    // extractClusterIDFromInjectionConfig can extract clusterID from injection configmap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. operator/pkg/verifier/verifier.go

    		revCount++
    		if rev == "default" {
    			continue
    		}
    		revision = rev
    	}
    	if revision == "" {
    		revs = "default"
    	} else {
    		revs = revision
    	}
    	v.logger.LogAndPrintf("%d Istio control planes detected, checking --revision %q only", revCount, revs)
    	return revision, nil
    }
    
    func (v *StatusVerifier) verifyFinalIOP() error {
    	crdCount, istioDeploymentCount, daemonSetCount, err := v.verifyPostInstallIstioOperator(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          # stackdriver filter settings.
          stackdriver:
            enabled: false
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
      # Revision tags are aliases to Istio control plane revisions
      revisionTags: []
      # For Helm compatibility.
      ownerName: ""
      # meshConfig defines runtime configuration of components, including Istiod and istio-agent behavior
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top