From c6e2978f99ef2258646e87308ee195b13951bdd6 Mon Sep 17 00:00:00 2001 From: Leif Ringstad Date: Tue, 19 Mar 2019 14:30:44 +0100 Subject: [PATCH] Update worker cmd and bump version --- Chart.yaml | 2 +- README.md | 2 +- values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index ce590c1..5419036 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 description: GitLab Auto-deploy Helm Chart - Rails version name: auto-deploy-rails -version: 0.2.9 +version: 0.2.11 icon: https://gitlab.com/gitlab-com/gitlab-artwork/raw/master/logo/logo-square.png diff --git a/README.md b/README.md index fe8411f..ecb74a9 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Copy [```values.yaml```](https://gitlab.com/leifcr/auto-deploy-rails/blob/master | readinessProbe.initialDelaySeconds | # of seconds after the container has started before readiness probes are initiated. | `5` | | readinessProbe.timeoutSeconds | # of seconds after which the readiness probe times out. | `3` | | worker.enabled | | `true` | -| worker.command | | `bundle exec sidekiq` | +| worker.command | | `sidekiq` | | worker.replicaCount | | 1 | | worker.sidekiq_alive.enabled | | `true` | | worker.sidekiq_alive.livenessProbe.path | Path to access on the HTTP server on periodic probe of container liveness. | `/` | diff --git a/values.yaml b/values.yaml index b1fd5e8..91a8df9 100644 --- a/values.yaml +++ b/values.yaml @@ -34,7 +34,7 @@ readinessProbe: timeoutSeconds: 3 worker: enabled: true - command: 'bundle exec sidekiq' # Note: Will override entrypoint. + command: 'sidekiq' # Note: Will override entrypoint. replicaCount: 1 sidekiq_alive: enabled: true