Merge pull request #74 from bparees/template

fix invalid key names
This commit is contained in:
Ben Parees 2017-01-17 14:06:18 -05:00 committed by GitHub
commit 6ddac81c67
1 changed files with 6 additions and 6 deletions

View File

@ -22,8 +22,8 @@
"name": "${NAME}"
},
"stringData" : {
"databaseUser" : "${DATABASE_USER}",
"databasePassword" : "${DATABASE_PASSWORD}"
"database-user" : "${DATABASE_USER}",
"database-password" : "${DATABASE_PASSWORD}"
}
},
{
@ -218,7 +218,7 @@
"valueFrom": {
"secretKeyRef" : {
"name" : "${NAME}",
"key" : "databaseUser"
"key" : "database-user"
}
}
},
@ -227,7 +227,7 @@
"valueFrom": {
"secretKeyRef" : {
"name" : "${NAME}",
"key" : "databasePassword"
"key" : "database-password"
}
}
},
@ -338,7 +338,7 @@
"valueFrom": {
"secretKeyRef" : {
"name" : "${NAME}",
"key" : "databaseUser"
"key" : "database-user"
}
}
},
@ -347,7 +347,7 @@
"valueFrom": {
"secretKeyRef" : {
"name" : "${NAME}",
"key" : "databasePassword"
"key" : "database-password"
}
}
},