This commit is contained in:
2023-11-08 14:45:01 +01:00
parent 05d10107ac
commit 44d5118411
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
apiVersion: v1
kind: namespace
kind: Namespace
metadata:
name: pv-controller
---
@ -35,7 +35,7 @@ spec:
spec:
containers:
- name: pv-controller
image: wollud1969/sinkserver:e5f9d3e3
image: wollud1969/pv-controller:1.0.0
envFrom:
- configMapRef:
name: pv-controller

View File

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