Skip to content

Commit

Permalink
BGD-4374 Fix passing args (#179)
Browse files Browse the repository at this point in the history
* BGD-4374 - fix `killSyncerEnabled` `ghostSyncerEnabled` args

* BGD-4374 - bump chart version

* BGD-4374 - fix yaml

* BGD-4374 - update watcher image tage
  • Loading branch information
alextarasov-spot authored Feb 4, 2024
1 parent 50cf92e commit 9d102d9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/bigdata-spark-watcher/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: bigdata-spark-watcher
description: A Helm chart for the Spot Big Data Spark Watcher
type: application
version: 0.5.3
version: 0.5.4
appVersion: 0.4.6
home: https://github.com/spotinst/charts
icon: https://docs.spot.io/_media/images/spot_mark.png
Expand Down
6 changes: 4 additions & 2 deletions charts/bigdata-spark-watcher/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,12 @@ spec:
- --replica-count
- "{{ .Values.replicaTagger.replicaCount }}"
{{- end }}
{{- if .Values.ghostSyncerEnabled }}
- --enable-ghost-syncer
- "{{ .Values.ghostSyncerEnabled}}"
{{- end }}
{{- if .Values.killSyncerEnabled }}
- --enable-kill-syncer
- "{{ .Values.killSyncerEnabled}}"
{{- end }}
ports:
- name: metrics
containerPort: 8080
Expand Down
2 changes: 1 addition & 1 deletion charts/bigdata-spark-watcher/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: 066597193667.dkr.ecr.us-east-1.amazonaws.com/private/bigdata-spark-watcher
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 0.4.6-58dc6e61
tag: 0.4.6-80ff0942

imagePullSecrets:
- name: spot-bigdata-image-pull
Expand Down

0 comments on commit 9d102d9

Please sign in to comment.