Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(request node): whitespaces #24

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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