Rename app to avoid route collisions with 10x space

This commit is contained in:
Ryan Ahearn
2022-11-02 11:07:45 -04:00
parent afd855442b
commit a0ed7dd053
7 changed files with 15 additions and 15 deletions

View File

@@ -3,5 +3,5 @@ web_instances: 1
web_memory: 1G web_memory: 1G
worker_instances: 1 worker_instances: 1
worker_memory: 512M worker_memory: 512M
public_api_route: notifications-api-demo.app.cloud.gov public_api_route: notify-api-demo.app.cloud.gov
admin_base_url: https://notifications-admin.app.cloud.gov admin_base_url: https://notify-demo.app.cloud.gov

View File

@@ -3,5 +3,5 @@ web_instances: 2
web_memory: 1G web_memory: 1G
worker_instances: 1 worker_instances: 1
worker_memory: 512M worker_memory: 512M
public_api_route: notifications-api.app.cloud.gov public_api_route: notify-api.app.cloud.gov
admin_base_url: https://notifications-admin.app.cloud.gov admin_base_url: https://notify.app.cloud.gov

View File

@@ -3,5 +3,5 @@ web_instances: 1
web_memory: 1G web_memory: 1G
worker_instances: 1 worker_instances: 1
worker_memory: 512M worker_memory: 512M
public_api_route: notifications-api-staging.app.cloud.gov public_api_route: notify-api-staging.app.cloud.gov
admin_base_url: https://notifications-admin-staging.app.cloud.gov admin_base_url: https://notify-staging.app.cloud.gov

View File

@@ -1,18 +1,18 @@
--- ---
applications: applications:
- name: notifications-api-((env)) - name: notify-api-((env))
buildpack: python_buildpack buildpack: python_buildpack
instances: 1 instances: 1
disk_quota: 1G disk_quota: 1G
routes: routes:
- route: ((public_api_route)) - route: ((public_api_route))
- route: notifications-api-((env)).apps.internal - route: notify-api-((env)).apps.internal
services: services:
- notifications-api-rds-((env)) - notify-api-rds-((env))
- notifications-api-redis-((env)) - notify-api-redis-((env))
- notifications-api-csv-upload-bucket-((env)) - notify-api-csv-upload-bucket-((env))
- notifications-api-contact-list-bucket-((env)) - notify-api-contact-list-bucket-((env))
processes: processes:
- type: web - type: web

View File

@@ -2,7 +2,7 @@ locals {
cf_org_name = "gsa-tts-benefits-studio-prototyping" cf_org_name = "gsa-tts-benefits-studio-prototyping"
cf_space_name = "notify-demo" cf_space_name = "notify-demo"
env = "demo" env = "demo"
app_name = "notifications-api" app_name = "notify-api"
recursive_delete = false recursive_delete = false
} }

View File

@@ -2,7 +2,7 @@ locals {
cf_org_name = "gsa-tts-benefits-studio-prototyping" cf_org_name = "gsa-tts-benefits-studio-prototyping"
cf_space_name = "notify-prod" cf_space_name = "notify-prod"
env = "production" env = "production"
app_name = "notifications-api" app_name = "notify-api"
recursive_delete = false recursive_delete = false
} }

View File

@@ -2,7 +2,7 @@ locals {
cf_org_name = "gsa-tts-benefits-studio-prototyping" cf_org_name = "gsa-tts-benefits-studio-prototyping"
cf_space_name = "notify-staging" cf_space_name = "notify-staging"
env = "staging" env = "staging"
app_name = "notifications-api" app_name = "notify-api"
recursive_delete = true recursive_delete = true
} }