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

RESERVED_NODES and BOOTSTRAP_NODES conditional #1020

Merged
merged 1 commit into from
Feb 16, 2023
Merged
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
4 changes: 4 additions & 0 deletions deployment/charts/templates/fuel-core-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,14 @@ spec:
env:
- name: HUMAN_LOGGING
value: {{ .Values.app.human_logging | quote }}
{{- if .Values.app.reserved_nodes }}
- name: RESERVED_NODES
value: {{ .Values.app.reserved_nodes | quote }}
{{- end }}
{{- if .Values.app.bootstrap_nodes }}
- name: BOOTSTRAP_NODES
value: {{ .Values.app.bootstrap_nodes | quote }}
{{- end }}
# TODO: do we need to do anything to make this more optional for non-consensus nodes?
- name: CONSENSUS_KEY_SECRET
valueFrom:
Expand Down