Skip to content

Commit

Permalink
Fix tls certificates for droptailer (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 authored Dec 7, 2020
1 parent d09bba1 commit 07c38af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/controller/controlplane/valuesprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ func (vp *valuesProvider) deployControlPlaneShootDroptailerCerts(ctx context.Con
CertificateSecretConfig: &secrets.CertificateSecretConfig{
Name: metal.DroptailerClientSecretName,
CommonName: "droptailer",
DNSNames: []string{"droptailer"},
Organization: []string{"droptailer-client"},
CertType: secrets.ClientCert,
SigningCA: cas[v1alpha1constants.SecretNameCACluster],
Expand All @@ -673,6 +674,7 @@ func (vp *valuesProvider) deployControlPlaneShootDroptailerCerts(ctx context.Con
CertificateSecretConfig: &secrets.CertificateSecretConfig{
Name: metal.DroptailerServerSecretName,
CommonName: "droptailer",
DNSNames: []string{"droptailer"},
Organization: []string{"droptailer-server"},
CertType: secrets.ServerCert,
SigningCA: cas[v1alpha1constants.SecretNameCACluster],
Expand Down

0 comments on commit 07c38af

Please sign in to comment.