Unverified Commit d07b953b authored by Kevin Di Lallo's avatar Kevin Di Lallo Committed by GitHub
Browse files

Merge pull request #111 from dilallkx/kd_sp29_fix_influx

Backend security & bug fixes
parents c42ad488 66c2b001
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