From 9ab2cf373b9a04e6b674347d702d22076ffeeadf Mon Sep 17 00:00:00 2001 From: Tobias Lindberg Date: Thu, 15 Aug 2024 14:37:51 +0200 Subject: [PATCH] fix configmap keys to uppercase rel #19 --- charts/tibiadata-api-go/Chart.yaml | 2 +- charts/tibiadata-api-go/values.yaml | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/charts/tibiadata-api-go/Chart.yaml b/charts/tibiadata-api-go/Chart.yaml index f9f3523..cee57a9 100644 --- a/charts/tibiadata-api-go/Chart.yaml +++ b/charts/tibiadata-api-go/Chart.yaml @@ -24,7 +24,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.2.0 +version: 1.2.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/tibiadata-api-go/values.yaml b/charts/tibiadata-api-go/values.yaml index f5158c6..15fe7b1 100644 --- a/charts/tibiadata-api-go/values.yaml +++ b/charts/tibiadata-api-go/values.yaml @@ -28,14 +28,14 @@ configMap: create: true settings: # generic settings - debug_mode: false + DEBUG_MODE: false # Gin-related settings - gin_mode: release - gin_trusted_proxies: "" + GIN_MODE: release + GIN_TRUSTED_PROXIES: "" # TibiaData-related settings - tibiadata_edition: open-source - tibiadata_host: undefined - tibiadata_restriction_mode: false + TIBIADATA_EDITION: open-source + TIBIADATA_HOST: undefined + TIBIADATA_RESTRICTION_MODE: false podAnnotations: {}