Skip to content

Commit

Permalink
Update worker startup command
Browse files Browse the repository at this point in the history
use `./bin/worker-startup.sh` this script is used in terraform,
docker-compose and tiltfile
  • Loading branch information
fumimowdan committed Sep 14, 2023
1 parent b203d93 commit e029ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aks/application.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ module "worker_application" {

docker_image = var.app_docker_image
replicas = 1
command = ["bundle", "exec", "sidekiq", "-C", "./config/sidekiq.yml"]
command = ["/bin/sh", "-c", "./bin/worker-startup.sh"]
probe_command = ["pgrep", "-f", "sidekiq"]
}

0 comments on commit e029ca3

Please sign in to comment.