Skip to content

Commit

Permalink
pkg/controller/configmap_ca_injector/controller: Fix {name}/{namespac…
Browse files Browse the repository at this point in the history
…e} log inversion

Typo from e4e10d7 (Adds a CA bundle injector, 2019-08-06, openshift#274).
  • Loading branch information
wking committed Oct 30, 2019
1 parent 4f36dea commit a31da5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/configmap_ca_injector/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ type ReconcileConfigMapInjector struct {
// 2. a configmap in any namespace with the label config.openshift.io/inject-trusted-cabundle = true and will insure that it contains the ca-bundle.crt
// entry in the configmap named trusted-ca-bundle in namespace openshift-config-managed.
func (r *ReconcileConfigMapInjector) Reconcile(request reconcile.Request) (reconcile.Result, error) {
log.Printf("Reconciling configmap from %s/%s\n", request.Name, request.Namespace)
log.Printf("Reconciling configmap from %s/%s\n", request.Namespace, request.Name)

trustedCAbundleConfigMap := &corev1.ConfigMap{}
trustedCAbundleConfigMapName := types.NamespacedName{
Expand Down

0 comments on commit a31da5d

Please sign in to comment.