Skip to content

Commit

Permalink
fix(request node): whitespaces (#24)
Browse files Browse the repository at this point in the history
benjlevesque authored Nov 14, 2023
1 parent bdf91d5 commit bcbd903
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
@@ -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
10 changes: 5 additions & 5 deletions request-node/templates/statefulSet.yaml
Original file line number Diff line number Diff line change
@@ -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 }}"

0 comments on commit bcbd903

Please sign in to comment.