Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for controlPlane (0.19 sec)

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

    	)
    	flagSet.StringVar(
    		&cfg.ControlPlane.CertificateKey, options.CertificateKey, cfg.ControlPlane.CertificateKey,
    		"Use this key to decrypt the certificate secrets uploaded by init. The certificate key is a hex encoded string that is an AES key of size 32 bytes.",
    	)
    	// add control plane endpoint flags to the specified flagset
    	flagSet.StringVar(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/util/join.go

    		"Token":                token,
    		"CAPubKeyPins":         publicKeyPins,
    		"ControlPlaneHostPort": strings.Replace(clusterConfig.Server, "https://", "", -1),
    		"CertificateKey":       key,
    		"ControlPlane":         controlPlane,
    	}
    
    	if skipTokenPrint {
    		ctx["Token"] = template.HTML("<value withheld>")
    	}
    	if skipCertificateKeyPrint {
    		ctx["CertificateKey"] = template.HTML("<value withheld>")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.defaults.go

    	SetDefaults_JoinConfiguration(in)
    	SetDefaults_Discovery(&in.Discovery)
    	if in.Discovery.File != nil {
    		SetDefaults_FileDiscovery(in.Discovery.File)
    	}
    	if in.ControlPlane != nil {
    		SetDefaults_JoinControlPlane(in.ControlPlane)
    		SetDefaults_APIEndpoint(&in.ControlPlane.LocalAPIEndpoint)
    	}
    	if in.Timeouts != nil {
    		SetDefaults_Timeouts(in.Timeouts)
    	}
    }
    
    func SetObjectDefaults_ResetConfiguration(in *ResetConfiguration) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/controller/storageversiongc/gc_controller.go

    		lease, err := c.kubeclientset.CoordinationV1().Leases(metav1.NamespaceSystem).Get(ctx, v.APIServerID, metav1.GetOptions{})
    		if err != nil || lease == nil || lease.Labels == nil ||
    			lease.Labels[controlplane.IdentityLeaseComponentLabelKey] != controlplane.KubeAPIServer {
    			// We cannot find a corresponding identity lease from apiserver as well.
    			// We need to clean up this storage version.
    			hasInvalidID = true
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    					Kind:       "",
    					APIVersion: "",
    				},
    				EgressSelections: []apiserver.EgressSelection{
    					{
    						Name: "controlplane",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    					},
    					{
    						Name: "controlplane",
    						Connection: apiserver.Connection{
    							ProxyProtocol: apiserver.ProtocolDirect,
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. samples/addons/kiali.yaml

      name: kiali
    subjects:
    - kind: ServiceAccount
      name: kiali
      namespace: istio-system
    ...
    ---
    # Source: kiali-server/templates/role-controlplane.yaml
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      name: kiali-controlplane
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    // See https://github.com/kubernetes/enhancements/blob/master/keps/sig-api-machinery/1281-network-proxy/README.md#network-context
    type EgressType int
    
    const (
    	// ControlPlane is the EgressType for traffic intended to go to the control plane.
    	ControlPlane EgressType = iota
    	// Etcd is the EgressType for traffic intended to go to Kubernetes persistence store.
    	Etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    	openapicommon "k8s.io/kube-openapi/pkg/common"
    
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	controlplaneadmission "k8s.io/kubernetes/pkg/controlplane/apiserver/admission"
    	"k8s.io/kubernetes/pkg/controlplane/apiserver/options"
    	"k8s.io/kubernetes/pkg/controlplane/controller/clusterauthenticationtrust"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	# Joins a machine as a control plane instance
    	kubeadm join phase control-plane-join all
    `)
    
    func getControlPlaneJoinPhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.ControlPlane,
    		options.NodeName,
    	}
    	if name == "etcd" || name == "all" {
    		flags = append(flags, options.Patches)
    	}
    	if name != "mark-control-plane" {
    		flags = append(flags, options.APIServerAdvertiseAddress)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/server.go

    	"k8s.io/component-helpers/apimachinery/lease"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/clock"
    
    	"k8s.io/kubernetes/pkg/controlplane/controller/apiserverleasegc"
    	"k8s.io/kubernetes/pkg/controlplane/controller/clusterauthenticationtrust"
    	"k8s.io/kubernetes/pkg/controlplane/controller/legacytokentracking"
    	"k8s.io/kubernetes/pkg/controlplane/controller/systemnamespaces"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/routes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top