Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for controlPlane (5.64 sec)

  1. cmd/kubeadm/app/phases/controlplane/volumes.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package controlplane
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	Discovery Discovery `json:"discovery"`
    
    	// ControlPlane defines the additional control plane instance to be deployed on the joining node.
    	// If nil, no additional control plane instance will be deployed.
    	// +optional
    	ControlPlane *JoinControlPlane `json:"controlPlane,omitempty"`
    
    	// SkipPhases is a list of phases to skip during command execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/cluster.go

    		if err := componentconfigs.FetchFromCluster(&initcfg.ClusterConfiguration, client); err != nil {
    			return nil, errors.Wrap(err, "failed to get component configs")
    		}
    	}
    
    	// if this isn't a new controlplane instance (e.g. in case of kubeadm upgrades)
    	// get nodes specific information as well
    	if !newControlPlane {
    		// gets the nodeRegistration for the current from the node object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    				},
    				TLSBootstrapToken: "abcdef.1234567890123456",
    			},
    			NodeRegistration: kubeadmapi.NodeRegistrationOptions{
    				Name:      "aaa",
    				CRISocket: criPath,
    			},
    			ControlPlane: &kubeadmapi.JoinControlPlane{
    				LocalAPIEndpoint: kubeadmapi.APIEndpoint{
    					AdvertiseAddress: "1.2.3.4",
    					BindPort:         1234,
    				},
    			},
    		}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta.go

    			s.StatusReporter.RegisterEvent(con.ID(), w.TypeUrl, req.Push.LedgerVersion)
    		}
    		return err
    	}
    	defer func() { recordPushTime(w.TypeUrl, time.Since(t0)) }()
    	resp := &discovery.DeltaDiscoveryResponse{
    		ControlPlane: ControlPlane(),
    		TypeUrl:      w.TypeUrl,
    		// TODO: send different version for incremental eds
    		SystemVersionInfo: req.Push.PushVersion,
    		Nonce:             nonce(req.Push.LedgerVersion),
    		Resources:         res,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    type EgressSelection struct {
    	// name is the name of the egress selection.
    	// Currently supported values are "controlplane", "master", "etcd" and "cluster"
    	// The "master" egress selector is deprecated in favor of "controlplane"
    	Name string `json:"name"`
    
    	// connection is the exact information used to configure the egress selection
    	Connection Connection `json:"connection"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	// to a chunking list request.
    	RemainingItemCount featuregate.Feature = "RemainingItemCount"
    
    	// owner: @wojtek-t
    	// beta: v1.31
    	//
    	// Enables resilient watchcache initialization to avoid controlplane
    	// overload.
    	ResilientWatchCacheInitialization featuregate.Feature = "ResilientWatchCacheInitialization"
    
    	// owner: @serathius
    	// beta: v1.30
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. pkg/controlplane/apiserver/options/options.go

    	kubeoptions "k8s.io/kubernetes/pkg/kubeapiserver/options"
    	"k8s.io/kubernetes/pkg/serviceaccount"
    )
    
    // Options define the flags and validation for a generic controlplane. If the
    // structs are nil, the options are not added to the command line and not validated.
    type Options struct {
    	GenericServerRunOptions *genericoptions.ServerRunOptions
    	Etcd                    *genericoptions.EtcdOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    }
    
    // EgressSelection provides the configuration for a single egress selection client.
    type EgressSelection struct {
    	// Name is the name of the egress selection.
    	// Currently supported values are "controlplane", "etcd" and "cluster"
    	Name string
    
    	// Connection is the exact information used to configure the egress selection
    	Connection Connection
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top