We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128ce6e commit 27baef8Copy full SHA for 27baef8
internal/provisioner/utility/unmanaged.go
@@ -56,6 +56,12 @@ func (u *unmanaged) ValuesPath() string {
56
}
57
58
func (u *unmanaged) CreateOrUpgrade() error {
59
+ if u.ActualVersion().Version() == model.UnmanagedUtilityVersion {
60
+ //skip if the utility is already unmanaged
61
+ u.logger.WithField("unmanaged-action", "skip").Info("Utility is unmanaged; skipping...")
62
+ return nil
63
+ }
64
+
65
u.logger.WithField("unmanaged-action", "create").Info("Utility is unmanaged; deploying with argocd...")
66
67
privateDomainName, err := u.awsClient.GetPrivateZoneDomainName(u.logger)
0 commit comments