Fix typos on cmd/kubeadm/app/cmd

This commit is contained in:
Yago Nobre
2018-10-28 18:41:37 -03:00
parent ebe5e635c0
commit cc670e29a1
29 changed files with 66 additions and 67 deletions

View File

@@ -236,16 +236,16 @@ var (
// KubeadmCertRootCA is the definition of the Kubernetes Root CA for the API Server and kubelet.
KubeadmCertRootCA = KubeadmCert{
Name: "ca",
LongName: "self-signed kubernetes CA to provision identities for other kuberenets components",
LongName: "self-signed Kubernetes CA to provision identities for other Kubernets components",
BaseName: kubeadmconstants.CACertAndKeyBaseName,
config: certutil.Config{
CommonName: "kubernetes",
},
}
// KubeadmCertAPIServer is the definition of the cert used to serve the kubernetes API.
// KubeadmCertAPIServer is the definition of the cert used to serve the Kubernetes API.
KubeadmCertAPIServer = KubeadmCert{
Name: "apiserver",
LongName: "certificate for serving the kubernetes API",
LongName: "certificate for serving the Kubernetes API",
BaseName: kubeadmconstants.APIServerCertAndKeyBaseName,
CAName: "ca",
config: certutil.Config{

View File

@@ -26,8 +26,8 @@ package certs
.APIServerCertSANs is an optional parameter for adding DNS names and IPs to the API Server serving cert SAN
.Etcd.Local.ServerCertSANs is an optional parameter for adding DNS names and IPs to the etcd serving cert SAN
.Etcd.Local.PeerCertSANs is an optional parameter for adding DNS names and IPs to the etcd peer cert SAN
.Networking.DNSDomain is needed for knowing which DNS name the internal kubernetes service has
.Networking.ServiceSubnet is needed for knowing which IP the internal kubernetes service is going to point to
.Networking.DNSDomain is needed for knowing which DNS name the internal Kubernetes service has
.Networking.ServiceSubnet is needed for knowing which IP the internal Kubernetes service is going to point to
.CertificatesDir is required for knowing where all certificates should be stored
OUTPUTS: