Skip to content

Commit

Permalink
feat(ci): Add image build and publish configs for sample services
Browse files Browse the repository at this point in the history
  • Loading branch information
grayside committed Apr 3, 2024
1 parent 7e45d10 commit fa7fe61
Show file tree
Hide file tree
Showing 3 changed files with 95 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testing/jobs.publish.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,22 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Publishes the hello-job sample image to Artifact Registry.
# Publishes the Hello job sample image to Artifact Registry.
steps:

# Build the image once.
- id: 'Build Container Image'
name: 'gcr.io/k8s-skaffold/pack:latest'
dir: 'job/'
script: |
set -x
pack build --builder "gcr.io/buildpacks/builder:google-22" "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest"
# Support commonly used variants of the image tag.
- id: 'Tag Container Image Aliases'
name: 'gcr.io/cloud-builders/docker:latest'
script: |
set -x
docker tag "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest" "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE_ALIAS}:latest"
docker tag "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest" "gcr.io/${PROJECT_ID}/${_IMAGE_ALIAS}:latest"
Expand Down
47 changes: 47 additions & 0 deletions testing/placeholder.publish.cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright 2024 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
#
# https://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.

# Publishes the Placeholder service sample image to Artifact Registry.
steps:

# Build the image once.
- id: 'Build Container Image'
name: 'gcr.io/cloud-builders/docker:latest'
script: |
set -x
docker build . \
-t "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest" \
-f placeholder.Dockerfile
# Support commonly used variants of the image tag.
- id: 'Tag Container Image Aliases'
name: 'gcr.io/cloud-builders/docker:latest'
script: |
set -x
docker tag "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest" "gcr.io/${PROJECT_ID}/${_IMAGE}:latest"
images:
# Push image with Cloud Build context.
- "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest"
- "gcr.io/${PROJECT_ID}/${_IMAGE}:latest"

substitutions:
_IMAGE: placeholder
_LOCATION: us
_REPO: container

options:
# Automatically make substitutions available as environment variables to scripts.
# https://cloud.google.com/build/docs/configuring-builds/substitute-variable-values#mapping_substitutions_to_environment_variables
automapSubstitutions: true
45 changes: 45 additions & 0 deletions testing/service.publish.cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Copyright 2024 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
#
# https://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.

# Publishes the Hello service sample image to Artifact Registry.
steps:

# Build the image once.
- id: 'Build Container Image'
name: 'gcr.io/cloud-builders/docker:latest'
script: |
set -x
docker build . -t "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest"
# Support commonly used variants of the image tag.
- id: 'Tag Container Image Aliases'
name: 'gcr.io/cloud-builders/docker:latest'
script: |
set -x
docker tag "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest" "gcr.io/${PROJECT_ID}/${_IMAGE}:latest"
images:
# Push image with Cloud Build context.
- "${_LOCATION}-docker.pkg.dev/${PROJECT_ID}/${_REPO}/${_IMAGE}:latest"
- "gcr.io/${PROJECT_ID}/${_IMAGE}:latest"

substitutions:
_IMAGE: hello
_LOCATION: us
_REPO: container

options:
# Automatically make substitutions available as environment variables to scripts.
# https://cloud.google.com/build/docs/configuring-builds/substitute-variable-values#mapping_substitutions_to_environment_variables
automapSubstitutions: true

0 comments on commit fa7fe61

Please sign in to comment.