Skip to content
Snippets Groups Projects
Verified Commit c5f96ef2 authored by Peer Wipprecht's avatar Peer Wipprecht
Browse files

Fix configmap naming & add missing deployment configuration

parent c3a97ff0
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ in {
inherit readinessProbe;
};
};
configMaps.myapp.data = {
configMaps.app-config.data = {
"LOG_LEVEL" = "info";
"FEATURE_FLAGS" = "new-ui=true,beta-features=false";
"CACHE_SIZE" = "1024m";
......@@ -33,9 +33,10 @@ in {
replicas = 5;
template.spec.containers.whoami = {
imagePullPolicy = "IfNotPresent";
inherit readinessProbe;
};
};
configMaps.myapp.data = {
configMaps.app-config.data = {
"LOG_LEVEL" = "warn";
"FEATURE_FLAGS" = "new-ui=false,beta-features=false";
"CACHE_SIZE" = "4096m";
......
......@@ -57,7 +57,7 @@ in {
};
};
configMaps.myapp.data = {
configMaps.app-config.data = {
"WHOAMI_PORT_NUMBER" = "80";
"LOG_LEVEL" = "debug";
"FEATURE_FLAGS" = "new-ui=true,beta-features=true";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment