This commit is contained in:
Wolfgang Hottgenroth 2023-11-08 14:48:19 +01:00
parent 44d5118411
commit 52d690c382
Signed by: wn
GPG Key ID: 836E9E1192A6B132
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ spec:
spec:
containers:
- name: pv-controller
image: wollud1969/pv-controller:1.0.0
image: wollud1969/pv-controller:1.0.1
envFrom:
- configMapRef:
name: pv-controller

View File

@ -17,7 +17,7 @@ class Config:
def __init__(self):
self.values = {}
for section, keys in Config.OPTIONS:
for section, keys in Config.OPTIONS.items():
self.values[section] = {}
for key in keys:
varname = f"{section}__{key}".upper()