diff --git a/stable/entropy/Chart.yaml b/stable/entropy/Chart.yaml index d67362a3..32ffc583 100644 --- a/stable/entropy/Chart.yaml +++ b/stable/entropy/Chart.yaml @@ -2,9 +2,16 @@ apiVersion: v2 name: entropy description: A Helm chart for Kubernetes type: application -version: 0.1.6 -appVersion: 0.1.2 +version: 0.1.7 +appVersion: 0.1.26 dependencies: - name: app version: "0.5.12" repository: "https://goto.github.io/charts/" + alias: app + condition: app.enabled +- name: worker + version: "0.5.12" + repository: "https://goto.github.io/charts/" + alias: worker + condition: worker.enabled \ No newline at end of file diff --git a/stable/entropy/values.yaml b/stable/entropy/values.yaml index 62596712..a7d98f22 100644 --- a/stable/entropy/values.yaml +++ b/stable/entropy/values.yaml @@ -52,3 +52,47 @@ app: # NEW_RELIC_APP_NAME: entropy secretConfig: {} + +worker: + image: + repository: gotocompany/entropy + pullPolicy: Always + tag: "latest" + container: + command: + - entropy + args: + - worker + livenessProbe: + exec: + command: + - /bin/sh + - -c + - ps -ef | grep entropy | grep -v grep + initialDelaySeconds: 10 + periodSeconds: 10 + readinessProbe: + exec: + command: + - /bin/sh + - -c + - ps -ef | grep entropy | grep -v grep + initialDelaySeconds: 10 + periodSeconds: 10 + podLabels: {} + + migration: + enabled: false + + ingress: + enabled: false + + config: + LOG_LEVEL: INFO + SYNCER_SYNC_INTERVAL: 1s + SYNCER_REFRESH_INTERVAL: 3s + SYNCER_EXTEND_LOCK_BY: 5s + SYNCER_SYNC_BACKOFF_INTERVAL: 5s + SYNCER_MAX_RETRIES: 5 + + secretConfig: {} \ No newline at end of file