forked from GoogleCloudPlatform/run-gmp-sidecar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cloudbuild-single-req.yaml
117 lines (105 loc) · 3.27 KB
/
cloudbuild-single-req.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# 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/single-req-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: "gcr.io/cloud-builders/docker"
args: ["build", "-t", "${_IMAGE_COLLECTOR}", "."]
id: BUILD_COLLECTOR
waitFor: ["-"]
- name: "gcr.io/cloud-builders/docker"
args: ["push", "${_IMAGE_COLLECTOR}"]
id: PUSH_COLLECTOR
waitFor:
- BUILD_COLLECTOR
- name: "gcr.io/cloud-builders/gcloud"
args: ["secrets", "create", "${_RUN_GMP_CONFIG}", "--data-file=default-config.yaml"]
id: CREATE_SECRET
waitFor:
- PUSH_COLLECTOR
- name: "ubuntu"
env:
- "IMAGE_APP=${_IMAGE_APP}"
- "IMAGE_COLLECTOR=${_IMAGE_COLLECTOR}"
- "SECRET=${_RUN_GMP_CONFIG}"
- "PROJECT=${_GCP_PROJECT}"
script: |
sed -i s@%OTELCOL_IMAGE%@${IMAGE_COLLECTOR}@g run-service.yaml
sed -i s@%SAMPLE_APP_IMAGE%@${IMAGE_APP}@g run-service.yaml
sed -i s@%SECRET%@${SECRET}@g run-service.yaml
sed -i s@%PROJECT%@${PROJECT}@g run-service.yaml
id: REPLACE_YAML_VALUE
waitFor:
- CREATE_SECRET
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk:slim"
entrypoint: gcloud
args:
[
"run",
"services",
"replace",
"run-service.yaml",
"--region",
"${_REGION}",
]
id: DEPLOY_MULTICONTAINER
waitFor:
- PUSH_SAMPLE_APP
- PUSH_COLLECTOR
- 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
_IMAGE_COLLECTOR: ${_REGISTRY}/collector
_RUN_GMP_CONFIG: run-gmp-config
_SA_NAME: run-gmp-sa
images:
- ${_IMAGE_APP}
- ${_IMAGE_COLLECTOR}
# 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