From 2f3ca6cffb20b626f17986fc016c6715bce25a10 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Mon, 27 Apr 2026 19:07:05 -0400 Subject: [PATCH] Fix crypto usage in `plural cd control-plane` This is blocking on fresh installs that do not configure crypto by default --- pkg/cd/control_plane_install.go | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkg/cd/control_plane_install.go b/pkg/cd/control_plane_install.go index e45f3e81..fe672229 100644 --- a/pkg/cd/control_plane_install.go +++ b/pkg/cd/control_plane_install.go @@ -120,13 +120,10 @@ func ControlPlaneValues(conf config.Config, file, domain, dsn, name string) (str configuration[k] = v } - cryptos, err := cryptoVals() - if err != nil { - return "", err - } - - for k, v := range cryptos { - configuration[k] = v + if cryptos, err := cryptoVals(); err == nil { + for k, v := range cryptos { + configuration[k] = v + } } clientId, clientSecret, err := ensureInstalledAndOidc(client, consoleDns)