Skip to content

Commit

Permalink
Update startup-command
Browse files Browse the repository at this point in the history
to match Dockerfile
  • Loading branch information
fumimowdan committed Sep 14, 2023
1 parent 5a92bf8 commit 8f458f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion terraform/aks/config/production.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"key_vault_app_secret_name": "TRP-APP-SECRETS-PRODUCTION",
"key_vault_infra_secret_name": "TRP-INFRA-SECRETS-PRODUCTION",
"enable_monitoring": true,
"startup_command": ["/bin/sh", "-c", "bundle exec rails db:migrate && bundle exec rails server -b 0.0.0.0"],
"startup_command": ["/bin/sh", "-c", "./bin/app-startup.sh"],
"replicas": 2,
"memory_max": "1Gi",
"gov_uk_host_names": [
Expand Down
2 changes: 1 addition & 1 deletion terraform/aks/config/qa.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"key_vault_app_secret_name": "TRP-APP-SECRETS-QA",
"key_vault_infra_secret_name": "TRP-INFRA-SECRETS-QA",
"enable_monitoring": false,
"startup_command": ["/bin/sh", "-c", "bundle exec rails db:migrate && bundle exec rails server -b 0.0.0.0"],
"startup_command": ["/bin/sh", "-c", "./bin/app-startup.sh"],
"replicas": 1,
"memory_max": "1Gi",
"gov_uk_host_names": [
Expand Down
2 changes: 1 addition & 1 deletion terraform/aks/config/review.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"key_vault_app_secret_name": "TRP-APP-SECRETS-REVIEW",
"key_vault_infra_secret_name": "TRP-INFRA-SECRETS-REVIEW",
"enable_monitoring": false,
"startup_command": ["/bin/sh", "-c", "bundle exec rails db:migrate && bundle exec rails server -b 0.0.0.0"],
"startup_command": ["/bin/sh", "-c", "./bin/app-startup.sh"],
"replicas": 1,
"memory_max": "1Gi"
}
2 changes: 1 addition & 1 deletion terraform/aks/config/staging.tfvars.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"key_vault_app_secret_name": "TRP-APP-SECRETS-STAGING",
"key_vault_infra_secret_name": "TRP-INFRA-SECRETS-STAGING",
"enable_monitoring": false,
"startup_command": ["/bin/sh", "-c", "bundle exec rails db:migrate && bundle exec rails server -b 0.0.0.0"],
"startup_command": ["/bin/sh", "-c", "./bin/app-startup.sh"],
"replicas": 1,
"memory_max": "1Gi",
"gov_uk_host_names": [
Expand Down

0 comments on commit 8f458f3

Please sign in to comment.