Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 626 for plans (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    	exit 1
    	;;
    plan9_386)
    	mkerrors=
    	mksyscall="go run mksyscall.go -l32 -plan9 -tags plan9,386"
    	mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h"
    	mktypes="XXX"
    	;;
    plan9_amd64)
    	mkerrors=
    	mksyscall="go run mksyscall.go -l32 -plan9 -tags plan9,amd64"
    	mksysnum="./mksysnum_plan9.sh /n/sources/plan9/sys/src/libc/9syscall/sys.h"
    	mktypes="XXX"
    	;;
    plan9_arm)
    	mkerrors=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/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",
    		Short: "Wait for the control plane to start",
    		// TODO: unhide this phase once WaitForAllControlPlaneComponents goes GA:
    		// https://github.com/kubernetes/kubeadm/issues/2907
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/config/xds/xds.go

    	bootstrap "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	route "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top