Fix configmap name case error (#1215)

This commit is contained in:
Hang Yan
2019-12-27 22:39:45 +08:00
committed by GitHub
parent d2d0d61cf2
commit bc32e29ee4
10 changed files with 3308 additions and 17 deletions
+6 -6
View File
@@ -78,8 +78,8 @@
"name": "ALLOW_EMPTY_PASSWORD",
"valueFrom": {
"configMapKeyRef": {
"Name": "foo-env",
"key": "ALLOW_EMPTY_PASSWORD"
"key": "ALLOW_EMPTY_PASSWORD",
"name": "foo-env"
}
}
},
@@ -87,8 +87,8 @@
"name": "BAR",
"valueFrom": {
"configMapKeyRef": {
"Name": "bar-env",
"key": "BAR"
"key": "BAR",
"name": "bar-env"
}
}
},
@@ -96,8 +96,8 @@
"name": "FOO",
"valueFrom": {
"configMapKeyRef": {
"Name": "bar-env",
"key": "FOO"
"key": "FOO",
"name": "bar-env"
}
}
}