Skip to content

Commit

Permalink
feat(entropy): add worker deployment (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
FemiNoviaLina authored Aug 26, 2024
1 parent bbc1de8 commit 75008a5
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 2 deletions.
11 changes: 9 additions & 2 deletions stable/entropy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
44 changes: 44 additions & 0 deletions stable/entropy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}

0 comments on commit 75008a5

Please sign in to comment.