Skip to content

Commit 7d6b0a1

Browse files
committed
Iter
1 parent 6c7658b commit 7d6b0a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/deployment/pod/encryption.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ func GetEncryptionFolderSecretName(name string) string {
108108
return n
109109
}
110110

111+
// GetLicenseRegistryCredentialsSecretName returns the secret name for storing registry credentials used to pull licensed images
111112
func GetLicenseRegistryCredentialsSecretName(name string) string {
112113
n := fmt.Sprintf("%s-rlm", name)
113114

pkg/deployment/reconcile/action_license_generate.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,7 @@ func (a *actionLicenseGenerate) Start(ctx context.Context) (bool, error) {
209209
core.DockerConfigJsonKey: token,
210210
utilConstants.ChecksumKey: []byte(l.API.Hash()),
211211
},
212-
StringData: nil,
213-
Type: core.SecretTypeDockerConfigJson,
212+
Type: core.SecretTypeDockerConfigJson,
214213
}, meta.CreateOptions{}); err != nil {
215214
a.log.Err(err).Debug("Failed to create License Secret")
216215
return true, nil

0 commit comments

Comments
 (0)