Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/helm-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
# sometimes it fail to download the binary
for i in {1..5}; do
helm plugin install https://github.com/jtyr/kubeconform-helm && break
helm plugin install --verify=false https://github.com/jtyr/kubeconform-helm && break
echo "Retry $i failed... trying again in 5 seconds"
sleep 5
done
Expand Down
9 changes: 8 additions & 1 deletion mviewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.1.0
- Update to mviewer v4.1 & mviewerstudio v4.3
- Switch user id from 999 to 1000. **Make sure to change the permission of your existing volume**:
```
chown 1000:1000 * -R
```

# 1.0.1

Bug fix for https://github.com/mviewer/mviewerstudio/issues/327
Expand All @@ -18,4 +25,4 @@ Update ingress so that / is default to mviewer

# 0.7.0

Initial version of the helm chart
Initial version of the helm chart
2 changes: 1 addition & 1 deletion mviewer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.1
version: 1.1.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions mviewer/templates/mviewerstudio-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ spec:
{{- end }}
volumeMounts:
- name: mviewer-conf
mountPath: /home/apprunner/apps
mountPath: /home/mvuser/apps
- name: mviewerstudio-static-apps
mountPath: /home/apprunner/mviewerstudio_backend/static/apps
mountPath: /home/mvuser/mviewerstudio_backend/static/apps
{{- if $webapp.extraVolumeMounts }}
{{- $webapp.extraVolumeMounts | toYaml | nindent 8 }}
{{- end }}
Expand Down
20 changes: 10 additions & 10 deletions mviewer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ mviewer:
image:
repository: mviewer/mviewer
pullPolicy: IfNotPresent
tag: v3.13
tag: v4.1
resources: {}
podSecurityContext:
runAsNonRoot: true
runAsUser: 999
runAsGroup: 999
fsGroup: 999
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
securityContext:
runAsUser: 999
runAsUser: 1000
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down Expand Up @@ -121,15 +121,15 @@ mviewerstudio:
image:
repository: mviewer/mviewerstudio
pullPolicy: IfNotPresent
tag: stable
tag: v4.3
resources: {}
podSecurityContext:
runAsNonRoot: true
runAsUser: 999
runAsGroup: 999
fsGroup: 999
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
securityContext:
runAsUser: 999
runAsUser: 1000
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down
Loading