Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,011 for plans (0.07 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		data, ok := c.(Data)
    		if !ok {
    			return errors.New("control-plane phase invoked with an invalid data struct")
    		}
    
    		// if this is not a control-plane node, this phase should not be executed
    		if !data.IsControlPlaneNode() {
    			fmt.Println("[upgrade] Skipping phase. Not a control plane node.")
    			return nil
    		}
    
    		// otherwise, retrieve all the info required for control plane upgrade
    		cfg := data.InitCfg()
    		client := data.Client()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    )
    
    var (
    	markControlPlaneExample = cmdutil.Examples(`
    		# Applies control-plane label and taint to the current node, functionally equivalent to what executed by kubeadm init.
    		kubeadm init phase mark-control-plane --config config.yaml
    
    		# Applies control-plane label and taint to a specific node
    		kubeadm init phase mark-control-plane --node-name myNode
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    var (
    	controlPlaneExample = cmdutil.Examples(`
    		# Generates all static Pod manifest files for control plane components,
    		# functionally equivalent to what is generated by kubeadm init.
    		kubeadm init phase control-plane all
    
    		# Generates all static Pod manifest files using options read from a configuration file.
    		kubeadm init phase control-plane all --config config.yaml
    		`)
    
    	controlPlanePhaseProperties = map[string]struct {
    		name  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    import (
    	"fmt"
    
    	envoy_accesslogv3 "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	envoy_bootstrap "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	envoy_cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	envoy_core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	envoy_listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/filters/filters.go

    	fault "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/fault/v3"
    	grpcstats "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_stats/v3"
    	grpcweb "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/grpc_web/v3"
    	router "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane.go

    var labelsToAdd = []string{
    	constants.LabelNodeRoleControlPlane,
    	constants.LabelExcludeFromExternalLB,
    }
    
    // MarkControlPlane taints the control-plane and sets the control-plane label
    func MarkControlPlane(client clientset.Interface, controlPlaneName string, taints []v1.Taint) error {
    	fmt.Printf("[mark-control-plane] Marking the node %s as control-plane by adding the labels: %v\n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 13 15:45:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/net/net_test.go

    	defer ss.Close()
    
    	_, err = ss.Read([]byte{0})
    	if err == nil {
    		t.Fatal("Read succeeded unexpectedly")
    	} else if err == io.EOF {
    		// This happens on Plan 9, but for some reason (prior to CL 385314) it was
    		// accepted everywhere else too.
    		if runtime.GOOS == "plan9" {
    			return
    		}
    		t.Fatal("Read unexpectedly returned io.EOF after socket was abruptly closed")
    	}
    	if ne, ok := err.(Error); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/waitcontrolplane.go

    // NewWaitControlPlanePhase is a hidden phase that runs after the control-plane and etcd phases
    func NewWaitControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name: "wait-control-plane",
    		// TODO: remove this EXPERIMENTAL prefix once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    		Short: "EXPERIMENTAL: Wait for the control plane to start",
    		Run:   runWaitControlPlanePhase,
    	}
    	return phase
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. istioctl/pkg/version/version.go

      # (This is the usual way to get the control plane version with an out-of-cluster control plane.)
      istioctl x version --xds-address istio.cloudprovider.example.com:15012
    
      # Retrieve version information via Kubernetes config, using token security
      # (This is the usual way to get the control plane version with an in-cluster control plane.)
      istioctl x version
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/internal/platform/zosarch.go

    	{"netbsd", "arm64"},
    	{"openbsd", "386"},
    	{"openbsd", "amd64"},
    	{"openbsd", "arm"},
    	{"openbsd", "arm64"},
    	{"openbsd", "mips64"},
    	{"openbsd", "ppc64"},
    	{"openbsd", "riscv64"},
    	{"plan9", "386"},
    	{"plan9", "amd64"},
    	{"plan9", "arm"},
    	{"solaris", "amd64"},
    	{"wasip1", "wasm"},
    	{"windows", "386"},
    	{"windows", "amd64"},
    	{"windows", "arm"},
    	{"windows", "arm64"},
    }
    
    var distInfo = map[OSArch]osArchInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:19:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top