Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Hepto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACIDES
Hepto
Commits
b38b7c71
Commit
b38b7c71
authored
2 years ago
by
kaiyou
Browse files
Options
Downloads
Patches
Plain Diff
Get apiserver to start
parent
a6d868a8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#21106
passed
2 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pkg/cluster/services.go
+1
-1
1 addition, 1 deletion
pkg/cluster/services.go
pkg/pki/io.go
+1
-1
1 addition, 1 deletion
pkg/pki/io.go
with
2 additions
and
2 deletions
pkg/cluster/services.go
+
1
−
1
View file @
b38b7c71
...
@@ -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
.
Cert
Path
()
,
"--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
(),
...
...
This diff is collapsed.
Click to expand it.
pkg/pki/io.go
+
1
−
1
View file @
b38b7c71
...
@@ -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
=
"EC
DSA
PRIVATE KEY"
blockType
=
"EC PRIVATE KEY"
case
CertType
:
case
CertType
:
blockType
=
"CERTIFICATE"
blockType
=
"CERTIFICATE"
case
CSRType
:
case
CSRType
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment