Skip to content

Commit

Permalink
Change indent -> nident (#54)
Browse files Browse the repository at this point in the history
This fixes current error with indent usage causing:
'error converting YAML to JSON: yaml: line 53: mapping values
are not allowed in this context'

Signed-off-by: Endre Karlson <[email protected]>
  • Loading branch information
ekarlso authored Feb 20, 2021
1 parent b88c215 commit 49904f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/github-actions-runner-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.5.8
version: 2.5.9

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
- name: GITHUB_V4_API_URL
value: {{ .Values.github.apiEndpoint }}
{{- with .Values.extraEnv }}
{{ toYaml . | indent 12 }}
{{ toYaml . | nindent 12 }}
{{- end }}
ports:
- name: metrics
Expand Down

0 comments on commit 49904f1

Please sign in to comment.