diff --git a/charts/devlake/templates/deployments.yaml b/charts/devlake/templates/deployments.yaml index c2b9ece..5a344c2 100644 --- a/charts/devlake/templates/deployments.yaml +++ b/charts/devlake/templates/deployments.yaml @@ -201,6 +201,10 @@ spec: - name: "{{ tpl $key2 $ }}" value: "{{ tpl (print $value2) $ }}" {{- end }} + {{- with .Values.lake.command }} + command: + {{- toYaml . | nindent 12 }} + {{- end }} {{- with .Values.lake.resources }} resources: {{- toYaml . | nindent 12 }} diff --git a/charts/devlake/values.yaml b/charts/devlake/values.yaml index a29a64c..04a5507 100644 --- a/charts/devlake/values.yaml +++ b/charts/devlake/values.yaml @@ -197,6 +197,8 @@ lake: #extra envs from an existing secret extraEnvsFromSecret: "" + # Set different container command + command: [] encryptionSecret: # The name of secret which contains keys named ENCRYPTION_SECRET secretName: "" @@ -427,4 +429,4 @@ extraResources: [] # type: Opaque # stringData: # username: admin - # password: mypassword \ No newline at end of file + # password: mypassword