Skip to content

Commit

Permalink
Fix kubernetes database field value import
Browse files Browse the repository at this point in the history
Fixes the following bug:

```
Error: INSTALLATION FAILED: template:
icinga-stack/charts/icingaweb2/templates/deployment.yaml:41:16: executing
"icinga-stack/charts/icingaweb2/templates/deployment.yaml" at <include
"icingaweb2.config" .>: error calling include: template:
icinga-stack/charts/icingaweb2/templates/_icingaweb-config.tpl:140:19:
executing "icingaweb2.config" at
<.Values.global.databases.kubernetes.database.value>: can't evaluate field
value in type interface {}
```
  • Loading branch information
lippserd committed Dec 18, 2024
1 parent 71ea8e7 commit 5d6b491
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ database:
port: {{ .Values.global.databases.kubernetes.port | default 3306 }}

# Database name.
database: {{ .Values.global.databases.kubernetes.database.value }}
database: {{ .Values.global.databases.kubernetes.database }}

# Database user.
user: {{ .Values.global.databases.kubernetes.username.value }}
Expand Down

0 comments on commit 5d6b491

Please sign in to comment.