Skip to content

Commit ff749ad

Browse files
committed
Merge branch 'dev'
2 parents cff16d6 + 57750ce commit ff749ad

File tree

4 files changed

+23
-31
lines changed

4 files changed

+23
-31
lines changed

charts/bunkerweb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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: 1.0.0
18+
version: 1.0.1
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

charts/bunkerweb/templates/_helpers.tpl

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,23 @@ REDIS settings
9090
{{- end }}
9191
{{- if .Values.redis.enabled }}
9292
- name: REDIS_HOST
93+
{{- if .Values.settings.redis.redisHost }}
94+
value: "{{ .Values.settings.redis.redisHost }}"
95+
{{- else }}
9396
value: "redis-{{ include "bunkerweb.fullname" . }}"
97+
{{- end }}
9498
- name: REDIS_USERNAME
9599
value: ""
96100
- name: REDIS_PASSWORD
97-
{{- if not (empty .Values.settings.existingSecret) }}
101+
{{- if not (empty .Values.settings.existingSecret) }}
98102
valueFrom:
99103
secretKeyRef:
100104
name: "{{ .Values.settings.existingSecret }}"
101105
key: redis-password
102-
{{- else }}
103-
value: "{{ .Values.redis.config.password }}"
104-
{{- end }}
105106
{{- else }}
107+
value: "{{ .Values.redis.config.password }}"
108+
{{- end }}
109+
{{- else }}
106110
- name: REDIS_HOST
107111
value: "{{ .Values.settings.redis.redisHost }}"
108112
- name: REDIS_USERNAME
@@ -123,5 +127,5 @@ REDIS settings
123127
{{- else }}
124128
value: "{{ .Values.settings.redis.redisPassword }}"
125129
{{- end }}
126-
{{- end }}
130+
{{- end }}
127131
{{- end }}

charts/bunkerweb/templates/scheduler-deployment.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,10 @@ spec:
3434
securityContext:
3535
{{- toYaml . | nindent 12}}
3636
{{- end }}
37-
{{- with .Values.bunkerweb.livenessProbe }}
37+
{{- with .Values.scheduler.livenessProbe }}
3838
livenessProbe:
3939
{{- toYaml . | nindent 12}}
4040
{{- end }}
41-
{{- with .Values.bunkerweb.readinessProbe }}
42-
readinessProbe:
43-
{{- toYaml . | nindent 12}}
44-
{{- end }}
4541
env:
4642
# Mandatory for k8s integration
4743
- name: KUBERNETES_MODE

charts/bunkerweb/values.yaml

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ bunkerweb:
6363
replicas: 1
6464
repository: bunkerity/bunkerweb
6565
pullPolicy: Always
66-
tag: 1.6.1
66+
tag: 1.6.2
6767
## RECOMMENDED RESOURCES
6868
## If you want to set resources for the bunkerweb, uncomment the following lines and adjust the values as needed.
6969
# resources:
@@ -104,7 +104,7 @@ bunkerweb:
104104
scheduler:
105105
repository: bunkerity/bunkerweb-scheduler
106106
pullPolicy: Always
107-
tag: 1.6.1
107+
tag: 1.6.2
108108
## RECOMMENDED RESOURCES
109109
## If you want to set resources for the Scheduler, uncomment the following lines and adjust the values as needed.
110110
# resources:
@@ -125,22 +125,14 @@ scheduler:
125125
- ALL
126126
extraEnvs: []
127127
# Probes
128-
# livenessProbe:
129-
# exec:
130-
# command:
131-
# - /usr/share/bunkerweb/helpers/healthcheck-scheduler.sh
132-
# initialDelaySeconds: 30
133-
# periodSeconds: 5
134-
# timeoutSeconds: 1
135-
# failureThreshold: 3
136-
# readinessProbe:
137-
# exec:
138-
# command:
139-
# - /usr/share/bunkerweb/helpers/healthcheck-scheduler.sh
140-
# initialDelaySeconds: 30
141-
# periodSeconds: 1
142-
# timeoutSeconds: 1
143-
# failureThreshold: 3
128+
livenessProbe:
129+
exec:
130+
command:
131+
- /usr/share/bunkerweb/helpers/healthcheck-scheduler.sh
132+
initialDelaySeconds: 30
133+
periodSeconds: 5
134+
timeoutSeconds: 1
135+
failureThreshold: 3
144136
# PRO Features only
145137
proLicenseKey: ""
146138
usePrometheusExporter: false
@@ -150,7 +142,7 @@ controller:
150142
enabled: true
151143
repository: bunkerity/bunkerweb-autoconf
152144
pullPolicy: Always
153-
tag: 1.6.1
145+
tag: 1.6.2
154146
## RECOMMENDED RESOURCES
155147
## If you want to set resources for the Controller, uncomment the following lines and adjust the values as needed.
156148
# resources:
@@ -192,7 +184,7 @@ ui:
192184
enabled: true
193185
repository: bunkerity/bunkerweb-ui
194186
pullPolicy: Always
195-
tag: 1.6.1
187+
tag: 1.6.2
196188
## RECOMMENDED RESOURCES
197189
## If you want to set resources for the UI, uncomment the following lines and adjust the values as needed.
198190
# resources:

0 commit comments

Comments
 (0)