Skip to content

Commit baa3b31

Browse files
Merge pull request #197 from damdo/manifests-gen-fix-missing-metadata
OCPBUGS-39298: manifests-gen: fix: readd missing metadata
2 parents b43416d + 7768fc7 commit baa3b31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifests-gen/providers.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func addComponentsToConfigMap(cm corev1.ConfigMap, objs []unstructured.Unstructu
180180
"components-zstd": compressed.Bytes(),
181181
}
182182
} else {
183-
cm.Data = map[string]string{"components": string(combined)}
183+
cm.Data["components"] = string(combined)
184184
}
185185

186186
return cm, nil

0 commit comments

Comments
 (0)