Skip to content

Commit

Permalink
BGD-4374 - allow enabling/disabling kill and ghost syncers (#169)
Browse files Browse the repository at this point in the history
* BGD-4374 -  allow enabling/disabling kill and ghost syncers

* BGD-4374 - bump chart version

* BGD-4374 - update watcher image tag
  • Loading branch information
alextarasov-spot authored Jan 31, 2024
1 parent eec4c06 commit 50cf92e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/bigdata-spark-watcher/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: bigdata-spark-watcher
description: A Helm chart for the Spot Big Data Spark Watcher
type: application
version: 0.5.2
appVersion: 0.4.5
version: 0.5.3
appVersion: 0.4.6
home: https://github.com/spotinst/charts
icon: https://docs.spot.io/_media/images/spot_mark.png
sources:
Expand Down
4 changes: 4 additions & 0 deletions charts/bigdata-spark-watcher/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ spec:
- --replica-count
- "{{ .Values.replicaTagger.replicaCount }}"
{{- end }}
- --enable-ghost-syncer
- "{{ .Values.ghostSyncerEnabled}}"
- --enable-kill-syncer
- "{{ .Values.killSyncerEnabled}}"
ports:
- name: metrics
containerPort: 8080
Expand Down
5 changes: 4 additions & 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.5-78b84f0c
tag: 0.4.6-58dc6e61

imagePullSecrets:
- name: spot-bigdata-image-pull
Expand Down Expand Up @@ -43,6 +43,9 @@ replicaTagger:

logLevel: debug

killSyncerEnabled: true
ghostSyncerEnabled: true

serviceAccount:
create: true
annotations: {}
Expand Down

0 comments on commit 50cf92e

Please sign in to comment.