diff --git a/charts/collab/Chart.yaml b/charts/collab/Chart.yaml index 42977d6..4c82f30 100644 --- a/charts/collab/Chart.yaml +++ b/charts/collab/Chart.yaml @@ -3,8 +3,8 @@ name: codetogether-collab description: CodeTogether Collab type: application -version: 1.2.6 -appVersion: "2025.4.0" +version: 1.2.7 +appVersion: "2025.4.2" icon: https://www.codetogether.com/wp-content/uploads/2020/02/codetogether-circle-128.png home: https://www.codetogether.com diff --git a/charts/collab/templates/deployment.yaml b/charts/collab/templates/deployment.yaml index ff2fde7..9abd011 100644 --- a/charts/collab/templates/deployment.yaml +++ b/charts/collab/templates/deployment.yaml @@ -190,10 +190,12 @@ spec: {{- if .Values.securityContext.readOnlyRootFilesystem}} volumeMounts: - - mountPath: /run - name: codetogether-runtime - - mountPath: /tmp - name: codetogether-tmp + - name: run-volatile + mountPath: /run/volatile + - name: tmp + mountPath: /tmp + - name: tmp + mountPath: /var/tmp {{- if .Values.favicon.enabled }} - mountPath: /opt/volatile-template/nginx/favicon.ico name: favicon-volume @@ -247,10 +249,12 @@ spec: {{- if .Values.securityContext.readOnlyRootFilesystem}} volumes: - - name: codetogether-runtime - emptyDir: {} - - name: codetogether-tmp - emptyDir: {} + - name: run-volatile + emptyDir: + medium: Memory + - name: tmp + emptyDir: + medium: Memory {{- else if .Values.favicon.enabled }} volumes: - name: favicon-volume diff --git a/charts/intel/Chart.yaml b/charts/intel/Chart.yaml index be2d15f..b8846ef 100644 --- a/charts/intel/Chart.yaml +++ b/charts/intel/Chart.yaml @@ -3,8 +3,8 @@ name: codetogether-intel description: CodeTogether Intel provides advanced project insights for developers type: application -version: 1.2.9 -appVersion: "2025.4.1" +version: 1.3.0 +appVersion: "2025.4.2" icon: https://www.codetogether.com/wp-content/uploads/2020/02/codetogether-circle-128.png home: https://www.codetogether.com diff --git a/charts/intel/templates/deployment.yaml b/charts/intel/templates/deployment.yaml index ffc0a9c..34080da 100644 --- a/charts/intel/templates/deployment.yaml +++ b/charts/intel/templates/deployment.yaml @@ -116,6 +116,14 @@ spec: mountPath: /etc/ssl/certs/java/cacerts subPath: cacerts {{- end }} + {{- if .Values.securityContext.readOnlyRootFilesystem }} + - name: run-volatile + mountPath: /run/volatile + - name: tmp + mountPath: /tmp + - name: tmp + mountPath: /var/tmp + {{- end }} ports: - name: http containerPort: 1080 @@ -164,6 +172,13 @@ spec: secret: secretName: {{ .Values.java.customCacerts.cacertsSecretName }} {{- end }} + {{- if .Values.securityContext.readOnlyRootFilesystem }} + - name: run-volatile + emptyDir: {} + - name: tmp + emptyDir: + medium: Memory + {{- end }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}