Skip to content

Commit

Permalink
fix(request node): whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque committed Nov 14, 2023
1 parent bdf91d5 commit 9dd36e6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion request-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 0.29.0
description: A Helm chart for Request Node
name: request-node
version: 0.7.0
version: 0.7.1
keywords:
- request
- ipfs
Expand Down
10 changes: 5 additions & 5 deletions request-node/templates/statefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ spec:
value: {{ required "nodeEnv.networkId is required" .Values.nodeEnv.networkId | quote }}
- name: LOG_LEVEL
value: {{ .Values.nodeEnv.logLevel }}
{{ if not .Values.ipfs.sidecar }}
{{- if not .Values.ipfs.sidecar }}
- name: IPFS_URL
value: {{ required "ipfs.api.url is required when IPFS is not a sidecar" .Values.ipfs.api.url | quote }}
{{ end }}
{{- end }}
- name: INITIALIZATION_STORAGE_FILE_PATH
value: {{ .Values.nodeEnv.initializationStorageFilePath }}
{{- with .Values.nodeEnv.extra }}
{{- with .Values.nodeEnv.extra -}}
{{- toYaml . | nindent 10 }}
{{- end }}
{{- end -}}

{{- if .Values.ipfs.sidecar -}}
{{ if .Values.ipfs.sidecar }}
# IPFS Node Container
- name: ipfs
image: "{{ .Values.ipfs.image.image }}:{{ .Values.ipfs.image.tag }}"
Expand Down

0 comments on commit 9dd36e6

Please sign in to comment.