-
Notifications
You must be signed in to change notification settings - Fork 75
/
cloudbuild-tag.yaml
97 lines (84 loc) · 3.74 KB
/
cloudbuild-tag.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
# Used for building tagged releases.
# It updates the "latest" tag in the corresponding GCR repos
# if the current SemVer is the most recent.
#
# This does not actually build images; it copies candidates
# built in the staging project instead. These images should have
# been built by cloudbuild.yaml, which should be triggered on
# every new commit.
substitutions:
_STAGING_PROJECT_ID: null
steps:
- id: &PublishImages Publish Images
name: gcr.io/cloud-builders/docker
waitFor:
- '-'
entrypoint: bash
args:
- -ceux
- |
docker pull gcr.io/$_STAGING_PROJECT_ID/k8s/dev:sha_$COMMIT_SHA
docker tag gcr.io/$_STAGING_PROJECT_ID/k8s/dev:sha_$COMMIT_SHA gcr.io/$PROJECT_ID/k8s/dev:$TAG_NAME
docker pull gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_helm:sha_$COMMIT_SHA
docker tag gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_helm:sha_$COMMIT_SHA gcr.io/$PROJECT_ID/k8s/deployer_helm:$TAG_NAME
docker pull gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_helm/onbuild:sha_$COMMIT_SHA
docker tag gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_helm/onbuild:sha_$COMMIT_SHA gcr.io/$PROJECT_ID/k8s/deployer_helm/onbuild:$TAG_NAME
docker pull gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_envsubst:sha_$COMMIT_SHA
docker tag gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_envsubst:sha_$COMMIT_SHA gcr.io/$PROJECT_ID/k8s/deployer_envsubst:$TAG_NAME
docker pull gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_envsubst/onbuild:sha_$COMMIT_SHA
docker tag gcr.io/$_STAGING_PROJECT_ID/k8s/deployer_envsubst/onbuild:sha_$COMMIT_SHA gcr.io/$PROJECT_ID/k8s/deployer_envsubst/onbuild:$TAG_NAME
- id: &DetermineShouldTagLatest Determine if images should be tagged latest
name: gcr.io/cloud-builders/gcloud
waitFor:
- *PublishImages
entrypoint: /bin/bash
args:
- -ceux
- echo "$(.cloudbuild/should_tag_latest.sh gcr.io/$PROJECT_ID/k8s/dev $TAG_NAME)" > should_tag_latest
- id: &MaybeTagImagesLatest Maybe tag images latest
name: gcr.io/cloud-builders/docker
waitFor:
- *DetermineShouldTagLatest
entrypoint: /bin/bash
args:
- -ceux
- |
if [[ "$(cat should_tag_latest)" == "true" ]]; then
docker tag gcr.io/$PROJECT_ID/k8s/dev:$TAG_NAME gcr.io/$PROJECT_ID/k8s/dev:latest
docker push gcr.io/$PROJECT_ID/k8s/dev:latest
docker tag gcr.io/$PROJECT_ID/k8s/deployer_helm:$TAG_NAME gcr.io/$PROJECT_ID/k8s/deployer_helm:latest
docker push gcr.io/$PROJECT_ID/k8s/deployer_helm:latest
docker tag gcr.io/$PROJECT_ID/k8s/deployer_helm/onbuild:$TAG_NAME gcr.io/$PROJECT_ID/k8s/deployer_helm/onbuild:latest
docker push gcr.io/$PROJECT_ID/k8s/deployer_helm/onbuild:latest
docker tag gcr.io/$PROJECT_ID/k8s/deployer_envsubst:$TAG_NAME gcr.io/$PROJECT_ID/k8s/deployer_envsubst:latest
docker push gcr.io/$PROJECT_ID/k8s/deployer_envsubst:latest
docker tag gcr.io/$PROJECT_ID/k8s/deployer_envsubst/onbuild:$TAG_NAME gcr.io/$PROJECT_ID/k8s/deployer_envsubst/onbuild:latest
docker push gcr.io/$PROJECT_ID/k8s/deployer_envsubst/onbuild:latest
else
echo "Not tagging latest"
fi
- id: Publish Charts
name: gcr.io/$PROJECT_ID/k8s/dev:$TAG_NAME
waitFor:
- *MaybeTagImagesLatest
entrypoint: bash
args:
- -ceux
- |
mkdir charts-tgz/
helm package marketplace/charts/marketplace-integration/ \
--version $TAG_NAME \
--destination charts-tgz/
gsutil cp gs://$PROJECT_ID/charts/index.yaml index.yaml
helm repo index --merge index.yaml charts-tgz/
images:
- gcr.io/$PROJECT_ID/k8s/dev:$TAG_NAME
- gcr.io/$PROJECT_ID/k8s/deployer_helm:$TAG_NAME
- gcr.io/$PROJECT_ID/k8s/deployer_helm/onbuild:$TAG_NAME
- gcr.io/$PROJECT_ID/k8s/deployer_envsubst:$TAG_NAME
- gcr.io/$PROJECT_ID/k8s/deployer_envsubst/onbuild:$TAG_NAME
artifacts:
objects:
location: gs://$PROJECT_ID/charts/
paths:
- charts-tgz/*