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

Add back --cert-dir option for kubeadm init phase certs sa
pull/564/head
Kubernetes Prow Robot 2019-01-24 08:45:36 -08:00 committed by GitHub
commit 20a11ac5cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

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)