diff --git a/upstreamed/ghost/Chart.yaml b/upstreamed/ghost/Chart.yaml index e37da27183..7882006e64 100644 --- a/upstreamed/ghost/Chart.yaml +++ b/upstreamed/ghost/Chart.yaml @@ -1,6 +1,6 @@ name: ghost -version: 6.3.8 -appVersion: 2.14.0 +version: 6.3.9 +appVersion: 2.14.1 description: A simple, powerful publishing platform that allows you to share your stories with the world keywords: - ghost diff --git a/upstreamed/ghost/values.yaml b/upstreamed/ghost/values.yaml index 1015695008..e7cd8aa56e 100644 --- a/upstreamed/ghost/values.yaml +++ b/upstreamed/ghost/values.yaml @@ -10,7 +10,7 @@ image: registry: docker.io repository: bitnami/ghost - tag: 2.14.0 + tag: 2.14.1 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/joomla/Chart.yaml b/upstreamed/joomla/Chart.yaml index 9a5977c7ee..2e09723765 100644 --- a/upstreamed/joomla/Chart.yaml +++ b/upstreamed/joomla/Chart.yaml @@ -1,6 +1,6 @@ name: joomla -version: 4.0.3 -appVersion: 3.9.2 +version: 4.0.4 +appVersion: 3.9.3 description: PHP content management system (CMS) for publishing web content keywords: - joomla diff --git a/upstreamed/joomla/values.yaml b/upstreamed/joomla/values.yaml index ad4e9d8073..5756bcba54 100644 --- a/upstreamed/joomla/values.yaml +++ b/upstreamed/joomla/values.yaml @@ -10,7 +10,7 @@ image: registry: docker.io repository: bitnami/joomla - tag: 3.9.2 + tag: 3.9.3 ## Specify a imagePullPolicy ## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' ## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images diff --git a/upstreamed/mongodb/Chart.yaml b/upstreamed/mongodb/Chart.yaml index 760f5ec1d4..7c4959385f 100644 --- a/upstreamed/mongodb/Chart.yaml +++ b/upstreamed/mongodb/Chart.yaml @@ -1,5 +1,5 @@ name: mongodb -version: 5.3.3 +version: 5.3.4 appVersion: 4.0.6 description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. keywords: diff --git a/upstreamed/mongodb/templates/deployment-standalone.yaml b/upstreamed/mongodb/templates/deployment-standalone.yaml index df4e412067..e221f11717 100644 --- a/upstreamed/mongodb/templates/deployment-standalone.yaml +++ b/upstreamed/mongodb/templates/deployment-standalone.yaml @@ -38,7 +38,6 @@ spec: {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} - runAsUser: {{ .Values.securityContext.runAsUser }} {{- end }} {{- if .Values.affinity }} affinity: @@ -62,6 +61,11 @@ spec: - name: {{ template "mongodb.fullname" . }} image: {{ template "mongodb.image" . }} imagePullPolicy: {{ .Values.image.pullPolicy | quote }} + {{- if .Values.securityContext.enabled }} + securityContext: + runAsNonRoot: true + runAsUser: {{ .Values.securityContext.runAsUser }} + {{- end }} env: {{- if .Values.image.debug}} - name: NAMI_DEBUG diff --git a/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml b/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml index ac4cc5f47a..ac388d06f3 100644 --- a/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-arbiter-rs.yaml @@ -37,7 +37,6 @@ spec: {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} - runAsUser: {{ .Values.securityContext.runAsUser }} {{- end }} {{- if .Values.affinity }} affinity: @@ -61,6 +60,11 @@ spec: - name: {{ template "mongodb.name" . }}-arbiter image: {{ template "mongodb.image" . }} imagePullPolicy: {{ .Values.image.pullPolicy }} + {{- if .Values.securityContext.enabled }} + securityContext: + runAsNonRoot: true + runAsUser: {{ .Values.securityContext.runAsUser }} + {{- end }} ports: - containerPort: {{ .Values.service.port }} name: mongodb diff --git a/upstreamed/mongodb/templates/statefulset-primary-rs.yaml b/upstreamed/mongodb/templates/statefulset-primary-rs.yaml index c24774c18f..ad74455868 100644 --- a/upstreamed/mongodb/templates/statefulset-primary-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-primary-rs.yaml @@ -42,7 +42,6 @@ spec: {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} - runAsUser: {{ .Values.securityContext.runAsUser }} {{- end }} {{- if .Values.affinity }} affinity: @@ -66,6 +65,11 @@ spec: - name: {{ template "mongodb.name" . }}-primary image: {{ template "mongodb.image" . }} imagePullPolicy: {{ .Values.image.pullPolicy }} + {{- if .Values.securityContext.enabled }} + securityContext: + runAsNonRoot: true + runAsUser: {{ .Values.securityContext.runAsUser }} + {{- end }} ports: - containerPort: {{ .Values.service.port }} name: mongodb diff --git a/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml b/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml index 1220c4c540..69910ab330 100644 --- a/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml +++ b/upstreamed/mongodb/templates/statefulset-secondary-rs.yaml @@ -43,7 +43,6 @@ spec: {{- if .Values.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} - runAsUser: {{ .Values.securityContext.runAsUser }} {{- end }} {{- if .Values.affinity }} affinity: @@ -67,6 +66,11 @@ spec: - name: {{ template "mongodb.name" . }}-secondary image: {{ template "mongodb.image" . }} imagePullPolicy: {{ .Values.image.pullPolicy }} + {{- if .Values.securityContext.enabled }} + securityContext: + runAsNonRoot: true + runAsUser: {{ .Values.securityContext.runAsUser }} + {{- end }} ports: - containerPort: {{ .Values.service.port }} name: mongodb