From d9b870be83fa06873af54c9c9106ac36244c5150 Mon Sep 17 00:00:00 2001 From: Marius Ensrud Date: Sun, 26 Jun 2022 11:50:22 +0200 Subject: [PATCH] ycast --- charts/ycast/1.1.0/templates/deployment.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/charts/ycast/1.1.0/templates/deployment.yaml b/charts/ycast/1.1.0/templates/deployment.yaml index a33d8c4..a04acdf 100644 --- a/charts/ycast/1.1.0/templates/deployment.yaml +++ b/charts/ycast/1.1.0/templates/deployment.yaml @@ -54,12 +54,19 @@ spec: readOnly: true - mountPath: "/home/dockerapp/.cache" name: cache-volume + - mountPath: "/home/dockerapp/.ycast" + name: ycast-volume + env: + - name: YCAST_PORT + value: "80" volumes: - name: stations configMap: name: {{ include "ycast.fullname" . }} - name: cache-volume emptyDir: {} + - name: ycast-volume + emptyDir: {} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}