You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ctrlRuntime.Log.Info("Secret with name: "+tlsSecret.Name+" should be reconciled but the target secret name annotation value is empty...")
170
+
ctrlRuntime.Log.Info(fmt.Sprintf("Secret with name: %s should be reconciled but the target secret name annotation value is empty...", tlsSecret.Name))
172
171
return ctrlRuntime.Result{}, nil
173
172
} else {
174
-
ctrlRuntime.Log.Info("Secret with name: "+tlsSecret.Name+" will get reconciled with target secret name: "+tlsSecretAnnotations[targetSecretAnnotationNameKey])
173
+
ctrlRuntime.Log.Info(fmt.Sprintf("Secret with name: %s will get reconciled with target secret name: %s", tlsSecret.Name,tlsSecretAnnotations[targetSecretAnnotationNameKey]))
ctrlRuntime.Log.Info("Secret with name: "+tlsSecret.Name+" should be reconciled but is missing annotation: "+targetSecretAnnotationKeyNameKey)
179
+
ctrlRuntime.Log.Info(fmt.Sprintf("Secret with name: %s should be reconciled but is missing annotation: %s", tlsSecret.Name,targetSecretAnnotationKeyNameKey))
181
180
return ctrlRuntime.Result{}, nil
182
181
} else {
183
182
ifvalue=="" {
184
-
ctrlRuntime.Log.Info("Secret with name: "+tlsSecret.Name+" should be reconciled but the target secret name key annotation value is empty...")
183
+
ctrlRuntime.Log.Info(fmt.Sprintf("Secret with name: %s should be reconciled but the target secret name key annotation value is empty...", tlsSecret.Name))
185
184
return ctrlRuntime.Result{}, nil
186
185
} else {
187
-
ctrlRuntime.Log.Info("Secret with name: "+tlsSecret.Name+" will get reconciled with target secret name: "+tlsSecretAnnotations[targetSecretAnnotationKeyNameKey])
186
+
ctrlRuntime.Log.Info(fmt.Sprintf("Secret with name: %s will get reconciled with target secret name: %s", tlsSecret.Name,tlsSecretAnnotations[targetSecretAnnotationKeyNameKey]))
0 commit comments