forked from LaconicNetwork/kompose
Added Case for Config Map in kompose down.
To implement this, added label in configmap object at the time of init Fixed ConfigMap test because we are adding one more field labels in metadata
This commit is contained in:
+8
-2
@@ -113,7 +113,10 @@
|
||||
"apiVersion": "v1",
|
||||
"metadata": {
|
||||
"name": "redis-foo-env",
|
||||
"creationTimestamp": null
|
||||
"creationTimestamp": null,
|
||||
"labels": {
|
||||
"io.kompose.service": "redis-foo-env"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"ALLOW_EMPTY_PASSWORD": "yes"
|
||||
@@ -124,7 +127,10 @@
|
||||
"apiVersion": "v1",
|
||||
"metadata": {
|
||||
"name": "redis-bar-env",
|
||||
"creationTimestamp": null
|
||||
"creationTimestamp": null,
|
||||
"labels": {
|
||||
"io.kompose.service": "redis-bar-env"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"BAR": "FOO",
|
||||
|
||||
Reference in New Issue
Block a user