Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for certSANs (0.2 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/zz_generated.conversion.go

    	if err := Convert_v1beta3_ControlPlaneComponent_To_kubeadm_ControlPlaneComponent(&in.ControlPlaneComponent, &out.ControlPlaneComponent, s); err != nil {
    		return err
    	}
    	out.CertSANs = *(*[]string)(unsafe.Pointer(&in.CertSANs))
    	out.TimeoutForControlPlane = (*v1.Duration)(unsafe.Pointer(in.TimeoutForControlPlane))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *APIServer) DeepCopyInto(out *APIServer) {
    	*out = *in
    	in.ControlPlaneComponent.DeepCopyInto(&out.ControlPlaneComponent)
    	if in.CertSANs != nil {
    		in, out := &in.CertSANs, &out.CertSANs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.TimeoutForControlPlane != nil {
    		in, out := &in.TimeoutForControlPlane, &out.TimeoutForControlPlane
    		*out = new(v1.Duration)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    }
    
    // APIServer holds settings necessary for API server deployments in the cluster
    type APIServer struct {
    	ControlPlaneComponent `json:",inline"`
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	// +optional
    	CertSANs []string `json:"certSANs,omitempty"`
    
    	// TimeoutForControlPlane controls the timeout that we use for API server to appear
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *APIServer) DeepCopyInto(out *APIServer) {
    	*out = *in
    	in.ControlPlaneComponent.DeepCopyInto(&out.ControlPlaneComponent)
    	if in.CertSANs != nil {
    		in, out := &in.CertSANs, &out.CertSANs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new APIServer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    }
    
    // APIServer holds settings necessary for API server deployments in the cluster
    type APIServer struct {
    	ControlPlaneComponent `json:",inline"`
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	// +optional
    	CertSANs []string `json:"certSANs,omitempty"`
    }
    
    // DNS defines the DNS addon that should be used in the cluster
    type DNS struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	if err := Convert_v1beta4_ControlPlaneComponent_To_kubeadm_ControlPlaneComponent(&in.ControlPlaneComponent, &out.ControlPlaneComponent, s); err != nil {
    		return err
    	}
    	out.CertSANs = *(*[]string)(unsafe.Pointer(&in.CertSANs))
    	return nil
    }
    
    // Convert_v1beta4_APIServer_To_kubeadm_APIServer is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/types.go

    	ExtraEnvs []EnvVar
    }
    
    // APIServer holds settings necessary for API server deployments in the cluster
    type APIServer struct {
    	ControlPlaneComponent
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	CertSANs []string
    
    	// TimeoutForControlPlane controls the timeout that we use for API server to appear
    	TimeoutForControlPlane *metav1.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //	    authorization-mode: "Node,RBAC"
    //	  extraVolumes:
    //	  - name: "some-volume"
    //	    hostPath: "/etc/some-path"
    //	    mountPath: "/etc/some-pod-path"
    //	    readOnly: false
    //	    pathType: File
    //	  certSANs:
    //	  - "10.100.1.1"
    //	  - "ec2-10-100-0-1.compute-1.amazonaws.com"
    //	  timeoutForControlPlane: 4m0s
    //	controllerManager:
    //	  extraArgs:
    //	    "node-cidr-mask-size": "20"
    //	  extraVolumes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    func ValidateAPIServer(a *kubeadm.APIServer, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateCertSANs(a.CertSANs, fldPath.Child("certSANs"))...)
    	allErrs = append(allErrs, ValidateExtraArgs(a.ExtraArgs, fldPath.Child("extraArgs"))...)
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    localAPIEndpoint:
      advertiseAddress: 192.168.2.2
      bindPort: 6443
    bootstrapTokens:
    - token: ce3aa5.5ec8455bb76b379f
      ttl: 24h
    ---
    apiVersion: %[1]s
    kind: ClusterConfiguration
    
    apiServer:
      certSANs: null
      extraArgs: null
    certificatesDir: %%s
    etcd:
      local:
        dataDir: %%s
        image: ""
    imageRepository: registry.k8s.io
    kubernetesVersion: %%s
    networking:
      dnsDomain: cluster.local
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top