cloudbuild-tag.yaml (76 lines of code) (raw):

# 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/*