Commit 5415d204 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

session key passed in env var + cookie timeout set to 90 days + platform-ctrl...

session key passed in env var + cookie timeout set to 90 days + platform-ctrl flush sbox data on creation
parent c42ad488
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ image:
  pullPolicy: Always
  env:
    MEEP_SANDBOX_NAME: {{ .SandboxName }}
    MEEP_SESSION_KEY: "my-secret-key"

service:
  name: meep-gis-engine
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ image:
  env:
    MEEP_SANDBOX_NAME: {{ .SandboxName }}
    MEEP_HOST_URL: {{ .HostUrl }}
    MEEP_SESSION_KEY: "my-secret-key"

service:
  name: meep-metrics-engine
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ image:
    MEEP_DEPENDENCY_PODS: ""
    MEEP_CORE_PODS: ""
    MEEP_SANDBOX_PODS: ""
    MEEP_SESSION_KEY: "my-secret-key"

service:
  type: ClusterIP
+4 −0
Original line number Diff line number Diff line
@@ -54,6 +54,10 @@ spec:
              protocol: {{ .Values.deployment.protocol }}
            {{- end}}
          env:
            {{- range $key, $value := .Values.image.env }}
            - name: {{ $key }}
              value: {{ $value }}
            {{- end }}
            {{- if .Values.user.frontend.enabled}}
            - name: USER_FRONTEND
              value: {{ .Values.user.frontend.mountpath }}
+2 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@ image:
  repository: meep-platform-ctrl
  tag: latest
  pullPolicy: Always
  env:
    MEEP_SESSION_KEY: "my-secret-key"

service:
  type: ClusterIP
Loading