diff --git a/charts/incubator/wger/Chart.yaml b/charts/incubator/wger/Chart.yaml index 54dc3ccc3ec..30e44f8c897 100644 --- a/charts/incubator/wger/Chart.yaml +++ b/charts/incubator/wger/Chart.yaml @@ -26,7 +26,7 @@ name: wger sources: - https://github.com/wger-project/wger - https://github.com/wger-project/docker -version: 0.0.3 +version: 0.0.4 annotations: truecharts.org/catagories: | - life diff --git a/charts/incubator/wger/questions.yaml b/charts/incubator/wger/questions.yaml index d643ef431fe..153db8c9302 100644 --- a/charts/incubator/wger/questions.yaml +++ b/charts/incubator/wger/questions.yaml @@ -81,13 +81,6 @@ questions: additional_attrs: true type: dict attrs: - - variable: site_url - label: "SITE_URL" - description: "eg. https://wger.mydomain.com" - schema: - type: string - required: true - default: "" - variable: sync_exercises_on_startup label: "SYNC_EXERCISES_ON_STARTUP" schema: @@ -378,13 +371,13 @@ questions: description: "The groupID this App of the user running the application" schema: type: int - default: 0 + default: 1000 - variable: fsGroup label: "fsGroup" description: "The group that should own ALL storage." schema: type: int - default: 568 + default: 1000 # Include{podSecurityContextAdvanced} # Include{resources} diff --git a/charts/incubator/wger/values.yaml b/charts/incubator/wger/values.yaml index 989d7ce7fa8..b6371b63d2f 100644 --- a/charts/incubator/wger/values.yaml +++ b/charts/incubator/wger/values.yaml @@ -12,8 +12,9 @@ securityContext: readOnlyRootFilesystem: false podSecurityContext: - runAsUser: 0 - runAsGroup: 0 + runAsUser: 1000 + runAsGroup: 1000 + fsGroup: 1000 env: DJANGO_DB_ENGINE: "django.db.backends.postgresql" @@ -42,8 +43,8 @@ env: TIME_ZONE: "{{ .Values.TZ }}" # True, not true WGER_USE_GUNICORN: "True" - # User Defined SITE_URL: "{{ .Values.wger.site_url }}" + # User Defined FROM_EMAIL: "{{ .Values.wger.from_email }}" EXERCISE_CACHE_TTL: "{{ .Values.wger.exercise_cache_ttl }}" EMAIL_HOST: "{{ .Values.wger.email_host }}" @@ -58,6 +59,7 @@ envFrom: name: '{{ include "tc.common.names.fullname" . }}-wger' wger: + # Where the backend will listen. Leave this as is, unless nginx is removed site_url: "http://localhost:8000" sync_exercises_on_startup: false download_exercise_images_on_startup: false @@ -141,6 +143,11 @@ additionalContainers: ports: - containerPort: 80 name: main + securityContext: + runAsUser: 0 + runAsGroup: 1000 + readOnlyRootFilesystem: false + runAsNonRoot: false volumeMounts: - name: wger-config mountPath: "/etc/nginx/conf.d/default.conf" @@ -177,3 +184,4 @@ postgresql: redis: enabled: true existingSecret: "rediscreds" + redisUsername: "default" diff --git a/charts/stable/dashdot/Chart.yaml b/charts/stable/dashdot/Chart.yaml index 8cde62876e7..9db08315f34 100644 --- a/charts/stable/dashdot/Chart.yaml +++ b/charts/stable/dashdot/Chart.yaml @@ -19,7 +19,7 @@ name: dashdot sources: - https://github.com/MauriceNino/dashdot - https://hub.docker.com/r/mauricenino/dashdot -version: 1.0.6 +version: 1.0.7 annotations: truecharts.org/catagories: | - media diff --git a/charts/stable/dashdot/questions.yaml b/charts/stable/dashdot/questions.yaml index 26bdc212966..7a8504c0fdd 100644 --- a/charts/stable/dashdot/questions.yaml +++ b/charts/stable/dashdot/questions.yaml @@ -107,6 +107,12 @@ questions: schema: type: boolean default: false + - variable: DASHDOT_ALWAYS_SHOW_PERCENTAGES + label: "DASHDOT_ALWAYS_SHOW_PERCENTAGES" + description: "To always show the current percentage of each graph in the top-left corner." + schema: + type: boolean + default: false - variable: oswidgetsettings label: "OS Widget Settings" schema: @@ -114,9 +120,9 @@ questions: default: false show_subquestions_if: true subquestions: - - variable: DASHDOT_DISABLE_HOST - label: "DASHDOT_DISABLE_HOST" - description: "If you want to hide the host part in the server widget" + - variable: DASHDOT_SHOW_HOST + label: "DASHDOT_SHOW_HOST" + description: "If you want to show the host part in the server widget" schema: type: boolean default: false diff --git a/charts/stable/dashdot/values.yaml b/charts/stable/dashdot/values.yaml index ab5c66b8eeb..567172d6cce 100644 --- a/charts/stable/dashdot/values.yaml +++ b/charts/stable/dashdot/values.yaml @@ -24,7 +24,8 @@ env: # DASHDOT_ACCEPT_OOKLA_EULA: true # DASHDOT_USE_IMPERIAL: false # DASHDOT_DISABLE_INTEGRATIONS: false - # DASHDOT_DISABLE_HOST: false + # DASHDOT_SHOW_HOST: true + # DASHDOT_ALWAYS_SHOW_PERCENTAGES: false # DASHDOT_OS_LABEL_LIST: "os,arch,up_since" # DASHDOT_OS_WIDGET_GROW: "1.5" # DASHDOT_OS_WIDGET_MIN_WIDTH: "300"