Skip to content

Commit

Permalink
Change cd name (#1641)
Browse files Browse the repository at this point in the history
* cd: update cd name

* update clouddeploy name
  • Loading branch information
EPortman authored Dec 24, 2024
1 parent 13355ed commit a8e7e56
Showing 1 changed file with 104 additions and 0 deletions.
104 changes: 104 additions & 0 deletions services/emailer/devops/gcp/clouddeploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

apiVersion: deploy.cloud.google.com/v1
kind: Target
metadata:
name: dev
description: Dev Environment
deployParameters:
deploy-env: "development"
deploy-project-id: "a083gt-dev"
service-name: "namex-emailer-dev"
container-name: "namex-emailer-dev"
cloudsql-instances: ""
app-env: "dev"
service-account: "sa-api@a083gt-dev.iam.gserviceaccount.com"
run:
location: projects/a083gt-dev/locations/northamerica-northeast1
executionConfigs:
- usages: [DEPLOY, RENDER]
artifactStorage: 'gs://c4hnrd-tools_clouddeploy/history'
---

apiVersion: deploy.cloud.google.com/v1
kind: Target
metadata:
name: test
description: Test Environment
deployParameters:
deploy-env: "development"
deploy-project-id: "a083gt-test"
service-name: "namex-emailer-test"
container-name: "namex-emailer-test"
cloudsql-instances: ""
app-env: "test"
service-account: "sa-api@a083gt-test.iam.gserviceaccount.com"
run:
location: projects/a083gt-test/locations/northamerica-northeast1
executionConfigs:
- usages: [DEPLOY, RENDER]
artifactStorage: 'gs://c4hnrd-tools_clouddeploy/history'
---

apiVersion: deploy.cloud.google.com/v1
kind: Target
metadata:
name: sandbox
description: Sandbox Environment
requireApproval: true
deployParameters:
deploy-env: "production"
deploy-project-id: "a083gt-tools"
service-name: "namex-emailer-sandbox"
container-name: "namex-emailer-sandbox"
cloudsql-instances: ""
app-env: "sandbox"
service-account: "sa-api@a083gt-tools.iam.gserviceaccount.com"
max-scale: "50"
container-concurrency: "20"
container-port: "8080"
resources-cpu: 4000m
resources-memory: 8Gi
run:
location: projects/a083gt-tools/locations/northamerica-northeast1
executionConfigs:
- usages: [DEPLOY, RENDER]
artifactStorage: 'gs://c4hnrd-tools_clouddeploy/history'
---

apiVersion: deploy.cloud.google.com/v1
kind: Target
metadata:
name: prod
description: Production Environment
requireApproval: true
deployParameters:
deploy-env: "production"
deploy-project-id: "a083gt-prod"
service-name: "namex-emailer-prod"
container-name: "namex-emailer-prod"
cloudsql-instances: ""
app-env: "production"
service-account: "sa-api@a083gt-prod.iam.gserviceaccount.com"
max-scale: "50"
container-concurrency: "20"
container-port: "8080"
resources-cpu: 4000m
resources-memory: 8Gi
run:
location: projects/a083gt-prod/locations/northamerica-northeast1
executionConfigs:
- usages: [DEPLOY, RENDER]
artifactStorage: 'gs://c4hnrd-tools_clouddeploy/history'

0 comments on commit a8e7e56

Please sign in to comment.