forked from GoogleCloudPlatform/run-gmp-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudbuild-simple.yaml
90 lines (81 loc) · 2.41 KB
/
cloudbuild-simple.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright 2023 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.
steps:
- name: "gcr.io/cloud-builders/docker"
args: ["build", "-t", "${_IMAGE_APP}", "./sample-apps/simple-app"]
id: BUILD_SAMPLE_APP
waitFor: ["-"]
- name: "gcr.io/cloud-builders/docker"
args: ["push", "${_IMAGE_APP}"]
id: PUSH_SAMPLE_APP
waitFor:
- BUILD_SAMPLE_APP
- name: "ubuntu"
env:
- "IMAGE_APP=${_IMAGE_APP}"
script: |
sed -i s@%SAMPLE_APP_IMAGE%@${IMAGE_APP}@g run-service-simple.yaml
id: REPLACE_YAML_VALUE
waitFor:
- PUSH_SAMPLE_APP
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk:slim"
entrypoint: gcloud
args:
[
"run",
"services",
"replace",
"run-service-simple.yaml",
"--region",
"${_REGION}",
]
id: DEPLOY_MULTICONTAINER
waitFor:
- PUSH_SAMPLE_APP
- REPLACE_YAML_VALUE
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk:slim"
entrypoint: gcloud
args:
[
"run",
"services",
"set-iam-policy",
"my-cloud-run-service",
"policy.yaml",
"--region",
"${_REGION}",
"--quiet",
]
id: ALLOW_UNAUTHENTICATED
waitFor:
- DEPLOY_MULTICONTAINER
substitutions:
_REGION: ${LOCATION}
_GCP_PROJECT: ${PROJECT_ID}
_REGISTRY: ${_REGION}-docker.pkg.dev/${_GCP_PROJECT}/run-gmp
_IMAGE_APP: ${_REGISTRY}/sample-app
_SA_NAME: run-gmp-sa
images:
- ${_IMAGE_APP}
# comment out the following line if you want to run Cloud Build with the existing
# service account with the following roles.
# * roles/iam.serviceAccountUser
# * roles/storage.objectViewer
# * roles/logging.logWriter
# * roles/artifactregistry.createOnPushWriter
# * roles/run.admin
serviceAccount: "projects/${_GCP_PROJECT}/serviceAccounts/${_SA_NAME}@${_GCP_PROJECT}.iam.gserviceaccount.com"
options:
dynamic_substitutions: true
logging: CLOUD_LOGGING_ONLY