Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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