Merge pull request #73239 from mattkelly/bugfix/kubeadm-sa-cert-dir

Add back --cert-dir option for kubeadm init phase certs sa
This commit is contained in:
Kubernetes Prow Robot
2019-01-24 08:45:36 -08:00
committed by GitHub

View File

@@ -115,6 +115,7 @@ func newCertSubPhases() []workflow.Phase {
Short: "Generates a private key for signing service account tokens along with its public key",
Long: saKeyLongDesc,
Run: runCertsSa,
InheritFlags: []string{options.CertificatesDir},
}
subPhases = append(subPhases, saPhase)