Skip to content
Snippets Groups Projects
Commit d6f0351b authored by Goeran Poehner's avatar Goeran Poehner
Browse files

Updated latest features to old chart versions

parent d5d8588a
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,6 @@ type: application ...@@ -7,6 +7,6 @@ type: application
maintainers: maintainers:
- name: groundhog2k - name: groundhog2k
version: 0.2.23 version: 0.3.8
appVersion: "10.5.17" appVersion: "10.6.10"
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
| 0.3.5 | 10.6.8 | Upgraded MariaDB to 10.6.8 | | 0.3.5 | 10.6.8 | Upgraded MariaDB to 10.6.8 |
| 0.3.6 | 10.6.9 | Upgraded MariaDB to 10.6.9 | | 0.3.6 | 10.6.9 | Upgraded MariaDB to 10.6.9 |
| 0.3.7 | 10.6.10 | Upgraded MariaDB to 10.6.10 | | 0.3.7 | 10.6.10 | Upgraded MariaDB to 10.6.10 |
| 0.3.8 | 10.6.10 | Implemented support for custom inline init scripts and image.registry option |
| 0.4.1 | 10.7.1 | Implemented startupProbe support | | 0.4.1 | 10.7.1 | Implemented startupProbe support |
| 0.4.2 | 10.7.1 | Implemented support for extra secrets and advanced configuration capabilites | | 0.4.2 | 10.7.1 | Implemented support for extra secrets and advanced configuration capabilites |
| 0.4.3 | 10.7.1 | Implemented support for extra containers | | 0.4.3 | 10.7.1 | Implemented support for extra containers |
......
...@@ -7,6 +7,6 @@ type: application ...@@ -7,6 +7,6 @@ type: application
maintainers: maintainers:
- name: groundhog2k - name: groundhog2k
version: 0.3.17 version: 0.4.11
appVersion: "4.4.17" appVersion: "5.0.13"
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
| 0.4.8 | 5.0.10 | Upgraded to MongoDB 5.0.10 | | 0.4.8 | 5.0.10 | Upgraded to MongoDB 5.0.10 |
| 0.4.9 | 5.0.11 | Upgraded to MongoDB 5.0.11 | | 0.4.9 | 5.0.11 | Upgraded to MongoDB 5.0.11 |
| 0.4.10 | 5.0.12 | Upgraded to MongoDB 5.0.12 | | 0.4.10 | 5.0.12 | Upgraded to MongoDB 5.0.12 |
| 0.4.11 | 5.0.13 | Upgraded to MongoDB 5.0.13 |
| 0.5.0 | 6.0.1 | Upgraded to MongoDB 6.0.1 | | 0.5.0 | 6.0.1 | Upgraded to MongoDB 6.0.1 |
| 0.5.1 | 6.0.1 | Implemented support for custom inline init scripts | | 0.5.1 | 6.0.1 | Implemented support for custom inline init scripts |
| 0.5.2 | 6.0.1 | Implemented support for image.registry option | | 0.5.2 | 6.0.1 | Implemented support for image.registry option |
......
...@@ -95,7 +95,7 @@ spec: ...@@ -95,7 +95,7 @@ spec:
command: command:
- /bin/sh - /bin/sh
- -c - -c
- mongo --eval "db.adminCommand('ping')" - mongosh --eval "db.adminCommand('ping')"
{{- with .Values.startupProbe }} {{- with .Values.startupProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }} initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }} timeoutSeconds: {{ .timeoutSeconds }}
...@@ -115,7 +115,7 @@ spec: ...@@ -115,7 +115,7 @@ spec:
command: command:
- /bin/sh - /bin/sh
- -c - -c
- mongo --eval "db.adminCommand('ping')" - mongosh --eval "db.adminCommand('ping')"
{{- with .Values.livenessProbe }} {{- with .Values.livenessProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }} initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }} timeoutSeconds: {{ .timeoutSeconds }}
...@@ -135,7 +135,7 @@ spec: ...@@ -135,7 +135,7 @@ spec:
command: command:
- /bin/sh - /bin/sh
- -c - -c
- mongo --eval "db.adminCommand('ping')" - mongosh --eval "db.adminCommand('ping')"
{{- with .Values.readinessProbe }} {{- with .Values.readinessProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }} initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }} timeoutSeconds: {{ .timeoutSeconds }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment