Skip to content
Snippets Groups Projects
Unverified Commit 80430394 authored by Maxime Vidori's avatar Maxime Vidori Committed by GitHub
Browse files

Remark42: init container command improvement (#1249)


* Remark42: init container command improvement

This patch makes the command from the init container configurable.
It does not modify the previous behavior since it has been copy pasted
in the values.yaml file.
You can change initCommand and initArgs to change the default behavior.

Fixes #1248

* Updated chart version and documentation

---------

Co-authored-by: default avatarGoeran Poehner <goeran.poehner@gmail.com>
parent 7f1e5d24
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ type: application ...@@ -7,7 +7,7 @@ type: application
maintainers: maintainers:
- name: groundhog2k - name: groundhog2k
version: "0.5.8" version: "0.5.9"
appVersion: "v1.11.3" appVersion: "v1.11.3"
......
# Remark42 # Remark42
![Version: 0.5.8](https://img.shields.io/badge/Version-0.5.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.11.3](https://img.shields.io/badge/AppVersion-v1.11.3-informational?style=flat-square) ![Version: 0.5.9](https://img.shields.io/badge/Version-0.5.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.11.3](https://img.shields.io/badge/AppVersion-v1.11.3-informational?style=flat-square)
A Helm chart for Remark42 on Kubernetes A Helm chart for Remark42 on Kubernetes
...@@ -62,6 +62,8 @@ helm uninstall my-release ...@@ -62,6 +62,8 @@ helm uninstall my-release
| image.registry | string | `"docker.io"` | Image registry | | image.registry | string | `"docker.io"` | Image registry |
| image.repository | string | `"umputun/remark42"` | Image name | | image.repository | string | `"umputun/remark42"` | Image name |
| image.tag | string | `""` | Image tag | | image.tag | string | `""` | Image tag |
| initCommand | list | `["/bin/sh"]` | Init container command |
| initArgs | list | `["-c","find /srvtmp -maxdepth 1 -type f -delete && rm -rf /srvtmp/web && cp -R /srv/* /srvtmp && mkdir -p /srvtmp/var"]` | Init container command args |
| imagePullSecrets | list | `[]` | Image pull secrets | | imagePullSecrets | list | `[]` | Image pull secrets |
| strategy | object | `{}` | Pod deployment strategy | | strategy | object | `{}` | Pod deployment strategy |
| startupProbe | object | `see values.yaml` | Startup probe configuration | | startupProbe | object | `see values.yaml` | Startup probe configuration |
......
...@@ -23,4 +23,5 @@ ...@@ -23,4 +23,5 @@
| 0.5.6 | v1.11.3 | Updated chart dependencies (redis 0.6.9) | | 0.5.6 | v1.11.3 | Updated chart dependencies (redis 0.6.9) |
| 0.5.7 | v1.11.3 | Updated chart dependencies (redis 0.6.10) | | 0.5.7 | v1.11.3 | Updated chart dependencies (redis 0.6.10) |
| 0.5.8 | v1.11.3 | Updated chart dependencies (redis 0.6.11) | | 0.5.8 | v1.11.3 | Updated chart dependencies (redis 0.6.11) |
| 0.5.9 | v1.11.3 | Added support for init container command and arguments (thx @IxDay) |
| | | | | | | |
...@@ -45,8 +45,8 @@ spec: ...@@ -45,8 +45,8 @@ spec:
volumeMounts: volumeMounts:
- mountPath: /srvtmp - mountPath: /srvtmp
name: remark-vol name: remark-vol
command: [ "/bin/sh" ] command: {{- toYaml .Values.initCommand | nindent 12 }}
args: [ "-c", "find /srvtmp -maxdepth 1 -type f -delete && rm -rf /srvtmp/web && cp -R /srv/* /srvtmp && mkdir -p /srvtmp/var" ] args: {{- toYaml .Values.initArgs | nindent 12 }}
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
{{- with .Values.securityContext }} {{- with .Values.securityContext }}
......
...@@ -8,6 +8,15 @@ image: ...@@ -8,6 +8,15 @@ image:
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""
## Init container command
initCommand:
- /bin/sh
## Init container command args
initArgs:
- -c
- find /srvtmp -maxdepth 1 -type f -delete && rm -rf /srvtmp/web && cp -R /srv/* /srvtmp && mkdir -p /srvtmp/var
## Pull secrets and name override options ## Pull secrets and name override options
imagePullSecrets: [] imagePullSecrets: []
nameOverride: "" nameOverride: ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment