Skip to content

Commit 7768fc7

Browse files
committed
manifests-gen: fix: readd missing metadata
1 parent b43416d commit 7768fc7

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)