Skip to content

Commit 4dd7f3f

Browse files
committed
Merge branch 'dev'
2 parents ffcfe26 + 1655c53 commit 4dd7f3f

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

charts/bunkerweb/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.6
18+
version: 0.0.7
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "1.6.0"
24+
appVersion: "1.6.1"

charts/bunkerweb/templates/mariadb-deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ spec:
2020
- name: mariadb
2121
image: mariadb:11
2222
imagePullPolicy: Always
23+
{{- if .Values.mariadb.args }}
24+
args:
25+
{{- toYaml .Values.mariadb.args | indent 12 }}
26+
{{- end }}
2327
env:
2428
- name: MARIADB_RANDOM_ROOT_PASSWORD
2529
value: "{{ .Values.mariadb.config.randomRootPassword }}"

charts/bunkerweb/values.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ service:
5757
bunkerweb:
5858
repository: bunkerity/bunkerweb
5959
pullPolicy: Always
60-
tag: 1.6.0
60+
tag: 1.6.1
6161
podAnnotations: {}
6262
podLabels: {}
6363
securityContext:
@@ -89,7 +89,7 @@ bunkerweb:
8989
scheduler:
9090
repository: bunkerity/bunkerweb-scheduler
9191
pullPolicy: Always
92-
tag: 1.6.0
92+
tag: 1.6.1
9393
podAnnotations: {}
9494
podLabels: {}
9595
securityContext:
@@ -106,7 +106,7 @@ scheduler:
106106
controller:
107107
repository: bunkerity/bunkerweb-autoconf
108108
pullPolicy: Always
109-
tag: 1.6.0
109+
tag: 1.6.1
110110
podAnnotations: {}
111111
podLabels: {}
112112
securityContext:
@@ -123,7 +123,7 @@ ui:
123123
enabled: true
124124
repository: bunkerity/bunkerweb-ui
125125
pullPolicy: Always
126-
tag: 1.6.0
126+
tag: 1.6.1
127127
podAnnotations: {}
128128
podLabels: {}
129129
securityContext:
@@ -147,6 +147,7 @@ mariadb:
147147
database: "db"
148148
user: "bunkerweb"
149149
password: "changeme"
150+
args: []
150151

151152
# Redis variables
152153
redis:

0 commit comments

Comments
 (0)