Skip to content

Commit c2208f0

Browse files
committed
fix project for prod
1 parent b78f6c4 commit c2208f0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ What follows are implementation details specific to this repo. For setting up a
88

99
Staging triggers a build on [staging cloudbuild](https://console.cloud.google.com/cloud-build/builds?project=sourcecodeshots) on every push to non-master and deploys to staging firebase hosting/cloud run.
1010

11-
Production triggers a build on (https://console.cloud.google.com/cloud-build/builds?project=onegraph-prod) on pushes to master and deploys to prod firebase hosting/cloud run.
11+
Production triggers a build on (https://console.cloud.google.com/cloud-build/builds?project=onegraph-dashboard) on pushes to master and deploys to prod firebase hosting/cloud run.
1212

1313
Check the cloudbuild-staging.yaml, cloudbuild.yaml, and Dockerfile for implementation details.

cloudbuild.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ steps:
22
- name: 'gcr.io/cloud-builders/docker'
33
args: ['build',
44
'--network=cloudbuild',
5-
'--build-arg', 'gcp_project=onegraph-prod',
6-
'-t', 'gcr.io/onegraph-prod/changelog', '.']
5+
'--build-arg', 'gcp_project=onegraph-dashboard',
6+
'-t', 'gcr.io/onegraph-dashboard/changelog', '.']
77
- name: 'gcr.io/cloud-builders/docker'
8-
args: ['push', 'gcr.io/onegraph-prod/changelog']
8+
args: ['push', 'gcr.io/onegraph-dashboard/changelog']
99
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
1010
entrypoint: gcloud
1111
args: ['run', 'deploy', 'changelog',
12-
'--image', 'gcr.io/onegraph-prod/changelog',
12+
'--image', 'gcr.io/onegraph-dashboard/changelog',
1313
'--region', 'us-central1',
1414
'--platform', 'managed',
1515
'--concurrency', '80',
1616
'--max-instances', '100',
1717
'--timeout', '5m',
1818
'--memory', '512Mi']
19-
images: ['gcr.io/onegraph-prod/changelog']
19+
images: ['gcr.io/onegraph-dashboard/changelog']
2020
timeout: '20m'

0 commit comments

Comments
 (0)