Skip to content
Snippets Groups Projects
Commit b38b7c71 authored by kaiyou's avatar kaiyou
Browse files

Get apiserver to start

parent a6d868a8
No related branches found
No related tags found
No related merge requests found
Pipeline #21106 passed
...@@ -56,7 +56,7 @@ func (s *ClusterServices) startK8sMaster(pki *ClusterPKI, certs *MasterCerts) { ...@@ -56,7 +56,7 @@ func (s *ClusterServices) startK8sMaster(pki *ClusterPKI, certs *MasterCerts) {
"--bind-address", "::", "--bind-address", "::",
"--tls-cert-file", certs.Service.CertPath(), "--tls-cert-file", certs.Service.CertPath(),
"--tls-private-key-file", certs.Service.KeyPath(), "--tls-private-key-file", certs.Service.KeyPath(),
"--client-ca-file", pki.API.Path, "--client-ca-file", pki.API.CertPath(),
"--kubelet-certificate-authority", pki.Kubelet.CertPath(), "--kubelet-certificate-authority", pki.Kubelet.CertPath(),
"--kubelet-client-certificate", certs.Kubelet.CertPath(), "--kubelet-client-certificate", certs.Kubelet.CertPath(),
"--kubelet-client-key", certs.Kubelet.KeyPath(), "--kubelet-client-key", certs.Kubelet.KeyPath(),
......
...@@ -29,7 +29,7 @@ func (f FileIO) blockFor(t Type) *pem.Block { ...@@ -29,7 +29,7 @@ func (f FileIO) blockFor(t Type) *pem.Block {
var blockType string var blockType string
switch t { switch t {
case KeyType: case KeyType:
blockType = "ECDSA PRIVATE KEY" blockType = "EC PRIVATE KEY"
case CertType: case CertType:
blockType = "CERTIFICATE" blockType = "CERTIFICATE"
case CSRType: case CSRType:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment