Skip to content

Commit

Permalink
fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Jul 30, 2024
1 parent 7b83908 commit d3a65d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/tezos-reward-distributor/templates/cronjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ spec:
volumeMounts:
- mountPath: /trd
name: storage
containers:
containers:
- name: tezos-reward-distributor-cron-job
image: {{ .Values.images.tezos_reward_distributor }}
imagePullPolicy: {{ .Values.images_pull_policy }}
Expand Down Expand Up @@ -82,7 +82,7 @@ spec:
- name: DRY_RUN
value: "{{ .Values.dry_run }}"
- name: BAKER_ALIAS
value: "{{ .Values.baker_alias || default 'unknown' }}"
value: "{{ .Values.baker_alias | default "unknown" }}"
- name: SLACK_WEBHOOK
valueFrom:
secretKeyRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/tezos-reward-distributor/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: Secret
metadata:
name: {{ include "tezos-reward-distributor.fullname" . }}-secret
data:
slack_webhook: {{ .Values.slack_webhook | b64enc | quote }}
slack_webhook: {{ .Values.slack_webhook | b64enc }}
4 changes: 2 additions & 2 deletions charts/tezos-reward-distributor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ extra_trd_args: "--do_not_publish_stats"
# For details, please consult TRD documentation:
# https://tezos-reward-distributor-organization.github.io/tezos-reward-distributor/
trd_config:
# version: 1.0
version: 1.0
# baking_address: tz1WrZpjVRpsmjv8VL3781RhyLi5JyHsGXK2
# payment_address: tz1WrZpjVRpsmjv8VL3781RhyLi5JyHsGXK2
# rewards_type: actual
Expand Down Expand Up @@ -108,7 +108,7 @@ trd_config:
# We paid out %TREWARDS% tez in rewards to %NDELEGATORS% delegators.

# slack webhook to be alerted when TRD fails
# slack_webhook: "https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX"
slack_webhook: "https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX"

# baker alias to push to slack webhook
# baker_alias: "mybaker"

0 comments on commit d3a65d3

Please sign in to comment.