updates getDNSNames to use correct pramaeter order

This commit is contained in:
Hyatt 2023-03-26 10:29:32 -05:00
parent f2df6e70e8
commit a205b07037
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -173,7 +173,7 @@ func certificateInit(cfg *Config) error {
// certificate certificate is missing, create it
if len(cfg.CertCert) == 0 {
log.Printf("[TRACE] No server certificate detected")
csr, err := certificate.CreateCSR(cfg.CertPrivateKey, getDNSNames(cfg.NameSpace, cfg.ServiceName))
csr, err := certificate.CreateCSR(cfg.CertPrivateKey, getDNSNames(cfg.ServiceName, cfg.NameSpace,))
if err != nil {
return fmt.Errorf("Create CSR (%v)", err)
}
@ -187,11 +187,10 @@ func certificateInit(cfg *Config) error {
return nil
}
func getDNSNames(ns, service string) []string {
func getDNSNames(service, ns string) []string {
return []string{
fmt.Sprintf("%s", service),
fmt.Sprintf("%s.%s", service, ns),
fmt.Sprintf("%s.%s", service, ns),
fmt.Sprintf("%s.%s.svc", service, ns),
fmt.Sprintf("%s.%s.svc.cluster", service, ns),
fmt.Sprintf("%s.%s.svc.cluster.local", service, ns),