Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 566 for plans (0.04 sec)

  1. 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)
  2. pkg/test/framework/components/istio/kube.go

    		return nil, err
    	}
    
    	// Populate the revisions for the control plane.
    	var revisions resource.RevVerMap
    	if !cfg.DeployIstio {
    		// Using a pre-installed control plane. Get the revisions from the
    		// command-line.
    		revisions = ctx.Settings().Revisions
    	} else if len(iop.Spec.Revision) > 0 {
    		// Use revisions from the default control plane operator.
    		revisions = resource.RevVerMap{
    			iop.Spec.Revision: "",
    		}
    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. tests/integration/pilot/multi_version_revision_test.go

    type revisionedNamespace struct {
    	revision  string
    	namespace namespace.Instance
    }
    
    // TestMultiVersionRevision tests traffic between data planes running under differently versioned revisions
    // should test all possible revisioned namespace pairings to test traffic between all versions
    func TestMultiVersionRevision(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			cfg.SystemNamespace = userGroup1NS.Name()
    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    revision: usergroup-1
    meshConfig:
      # REGISTRY_ONLY on one control plane is used to verify custom resources scoping
      outboundTrafficPolicy:
        mode: REGISTRY_ONLY
      # CR scoping requires discoverySelectors to be configured
      discoverySelectors:
        - matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	brokenFlag := flag.Bool("broken", false, "include broken ports")
    	xflagparse(0)
    
    	var plats []string
    	for p := range cgoEnabled {
    		if broken[p] && !*brokenFlag {
    			continue
    		}
    		plats = append(plats, p)
    	}
    	sort.Strings(plats)
    
    	if !*jsonFlag {
    		for _, p := range plats {
    			xprintf("%s\n", p)
    		}
    		return
    	}
    
    	type jsonResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/net/conf.go

    	switch runtime.GOOS {
    	// Historically on Windows and Plan 9 we prefer the
    	// cgo resolver (which doesn't use the cgo tool) rather than
    	// the go resolver. This is because originally these
    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/health.go

    }
    
    // Name is part of the preflight.Checker interface
    func (c *healthCheck) Name() string {
    	return c.name
    }
    
    // CheckClusterHealth makes sure:
    // - the cluster can accept a workload
    // - all control-plane Nodes are Ready
    // - (if static pod-hosted) that all required Static Pod manifests exist on disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/apply.go

    // - Enforces all version skew policies
    // - Asks the user if they really want to upgrade
    // - Makes sure the control plane images are available locally on the control-plane(s)
    // - Upgrades the control plane components
    // - Applies the other resources that'd be created with kubeadm init as well, like
    //   - Uploads the newly used configuration to the cluster ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/internal/poll/fd_plan9.go

    	return errors.New("not implemented")
    }
    
    func DupCloseOnExec(fd int) (int, string, error) {
    	nfd, err := syscall.Dup(int(fd), -1)
    	if err != nil {
    		return 0, "dup", err
    	}
    	// Plan9 has no syscall.CloseOnExec but
    	// its forkAndExecInChild closes all fds
    	// not related to the fork+exec.
    	return nfd, "", nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. 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)
Back to top