Skip to content

Commit

Permalink
Fix go template errors and add timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Apr 10, 2024
1 parent c7dd00e commit f5cf259
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions helmfile.d/05-ory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ bases:
releases:
- name: kratos
chart: ory/kratos
version: { { .Values.kratos._chart_version } }
installed: { { .Values.kratos._install } }
version: {{ .Values.kratos._chart_version }}
installed: {{ .Values.kratos._install }}
timeout: {{ add .Values.base_timeout .Values.kratos._extra_timeout }}
values:
- "../etc/kratos/values.yaml"
- {{ .Values.kratos | toYaml | indent 8 | trim }}

- name: kratos-selfservice-ui-node
chart: ory/kratos-selfservice-ui-node
version: { { .Values.kratos_ui._chart_version } }
installed: { { .Values.kratos_ui._install } }
version: {{ .Values.kratos_ui._chart_version }}
installed: {{ .Values.kratos_ui._install }}
timeout: {{ add .Values.base_timeout .Values.kratos_ui._extra_timeout }}
values:
- "../etc/kratos_ui/values.yaml"
- {{ .Values.kratos_ui | toYaml | indent 8 | trim }}

0 comments on commit f5cf259

Please sign in to comment.