Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 433 for planes (0.13 sec)

  1. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    func NewControlPlaneJoinPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "control-plane-join",
    		Short:   "Join a machine as a control plane instance",
    		Example: controlPlaneJoinExample,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    				Short:          "Join a machine as a control plane instance",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/upgrade"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    // NewControlPlane creates a kubeadm workflow phase that implements handling of control-plane upgrade.
    func NewControlPlane() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "control-plane",
    		Short: "Upgrade the control plane instance deployed on this node, if any",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/markcontrolplane.go

    		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
    		`)
    )
    
    // NewMarkControlPlanePhase creates a kubeadm workflow phase that implements mark-controlplane checks.
    func NewMarkControlPlanePhase() workflow.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    }
    
    // NewControlPlanePhase creates a kubeadm workflow phase that implements bootstrapping the control plane.
    func NewControlPlanePhase() workflow.Phase {
    	phase := workflow.Phase{
    		Name:  "control-plane",
    		Short: "Generate all static Pod manifest files necessary to establish the control plane",
    		Long:  cmdutil.MacroCommandLongDescription,
    		Phases: []workflow.Phase{
    			{
    				Name:           "all",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  5. 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)
  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. 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)
  8. 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)
  9. okhttp/src/test/java/okhttp3/FakeRoutePlanner.kt

        if (nextPlanIndex >= plans.size && autoGeneratePlans) addPlan()
    
        require(nextPlanIndex < plans.size) {
          "not enough plans! call addPlan() or set autoGeneratePlans=true in the test to set this up"
        }
        val result = plans[nextPlanIndex++]
        events += "take plan ${result.id}"
    
        if (result.yieldBeforePlanReturns) {
          taskFaker.yield()
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. 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)
Back to top