Skip to content

Commit 9ba0da8

Browse files
author
Lukasz Zajaczkowski
committed
Add support for binary file in configmap
1 parent e56cfc5 commit 9ba0da8

18 files changed

+9929
-9474
lines changed

pkg/api/types.generated.go

+4,411-4,343
Large diffs are not rendered by default.

pkg/api/types.go

+4
Original file line numberDiff line numberDiff line change
@@ -3321,6 +3321,10 @@ type ConfigMap struct {
33213321
// Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.
33223322
// +optional
33233323
Data map[string]string `json:"data,omitempty"`
3324+
3325+
// Data contains the binary data.
3326+
// Each key must be a valid DNS_SUBDOMAIN with an optional leading dot.
3327+
BinaryData map[string][]byte `json:"binaryData,omitempty"`
33243328
}
33253329

33263330
// ConfigMapList is a resource containing a list of ConfigMap objects.

pkg/api/v1/defaults.go

+3
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ func SetDefaults_ConfigMap(obj *ConfigMap) {
311311
if obj.Data == nil {
312312
obj.Data = make(map[string]string)
313313
}
314+
if obj.BinaryData == nil {
315+
obj.BinaryData = make(map[string][]byte)
316+
}
314317
}
315318

316319
// With host networking default all container ports to host ports.

pkg/api/v1/generated.pb.go

+711-561
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/api/v1/generated.proto

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)