Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure ci/save_cache and ci/restore_cache images don't get deleted by cleanup policy #3522

Merged
merged 7 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions build/build-image/cache/Dockerfile-base
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Copyright 2023 Google LLC All Rights Reserved.
#
# 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.

FROM gcr.io/cloud-builders/gcloud-slim

RUN apt-get update \
&& apt-get install -y gcc python3-dev python3-setuptools python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& pip3 install --no-cache-dir -U crcmod

COPY checksum /bin
COPY save_cache /bin
COPY restore_cache /bin

RUN chmod +x /bin/checksum /bin/save_cache /bin/restore_cache
18 changes: 18 additions & 0 deletions build/build-image/cache/Dockerfile-restore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2023 Google LLC All Rights Reserved.
#
# 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.

ARG project_id
FROM us-docker.pkg.dev/${project_id}/ci/cache

ENTRYPOINT ["restore_cache"]
18 changes: 18 additions & 0 deletions build/build-image/cache/Dockerfile-save
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2023 Google LLC All Rights Reserved.
#
# 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.

ARG project_id
FROM us-docker.pkg.dev/${project_id}/ci/cache

ENTRYPOINT ["save_cache"]
142 changes: 142 additions & 0 deletions build/build-image/cache/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,142 @@
# Origin

This `README.md` was originally based on [cloud-builders-community](https://github.com/GoogleCloudPlatform/cloud-builders-community), which contains source code for community-contributed Docker images. You can use these images as build steps for [Google Cloud Build](https://cloud.google.com/build/docs).

The key change made upon importing the [cache builder's](https://github.com/GoogleCloudPlatform/cloud-builders-community/tree/master/cache) code into Agones was the update of image tags to use Google Artifact Registry instead of Google Container Registry.

# Cache builders

This includes a pair of builders, `save_cache` and `restore_cache`, that work together to cache files between builds to a GCS bucket (or local file).

## Using the `save_cache` builder

All options that require a value use the form `--option=value` or `-o=value` so that they look nice in Yaml files.

| Option | Description |
| ---------------- | ----------------------------------------------------------- |
| -b, --bucket | The cloud storage bucket to upload the cache to. [optional] |
| -o, --out | The output directory to write the cache to. [optional] |
| -k, --key | The cache key used for this cache file. [optional] |
| -p, --path | The files to store in the cache. Can be repeated. |
| -t, --threshold | The parallel composite upload threshold [default: 50M] |
| -n, --no-clobber | Skips the save if the cache file already exists in GCS. |

One of `--bucket` or `--out` parameters are required. If `--bucket` then the cache file will be uploaded to the provided GCS bucket path. If `--out` then the cache file will be stored in the directory specified on disk.

The key provided by `--key` is used to identify the cache file. Any other cache files for the same key will be overwritten by this one.

The `--path` parameters can be repeated for as many folders as you'd like to cache. When restored, they will retain folder structure on disk.

The `--no-clobber` flag is used to skip creating and uploading the cache to GCS if the cache file already exists. This will shorten the time for builds when a cache was restored and is not changed by your build process. For example, this flag can be used if you are caching your dependencies and all of your dependencies are pinned to a specific version. This flag is valid only when `--bucket` is used.

## Using the `restore_cache` builder

All options use the form `--option=value` or `-o=value` so that they look nice in Yaml files.

| Option | Description |
| ---------------------- | -------------------------------------------------------------------------------------- |
| -b, --bucket | The cloud storage bucket to download the cache from. [optional] |
| -s, --src | The local directory in which the cache is stored. [optional] |
| -k, --key | The cache key used for this cache file. [optional] |
| -kf, --key_fallback | The cache key fallback pattern to be used if exact cache key is not found. [optional] |

One of `--bucket` or `--src` parameters are required. If `--bucket` then the cache file will be downloaded from the provided GCS bucket path. If `--src` then the cache file will be read from the directory specified on disk.

The key provided by `--key` is used to identify the cache file.

The fallback key pattern provide by `--key_fallback`, will be used to fetch the most recent cache file matching that pattern in case there is a cache miss from the specified `--key`.

### `checksum` Helper

As apps develop, cache needs change. For instance when dependencies are removed from a project, or versions are updated, there is no need to cache the older versions of dependencies. Therefore it's recommended that you update the cache key when these changes occur.

This builder includes a `checksum` helper script, which you can use to create a simple checksum of files in your project to use as a cache key.

To use it in the `--key` arguemnt, simply surround the command with `$()`:

```bash
--key=build-cache-$(checksum build.gradle)-$(checksum dependencies.gradle)
```

To ensure you aren't paying for storage of obsolete cache files you can add an Object Lifecycle Rule to the cache bucket to delete object older than 30 days.

## Examples

The following examples demonstrate build requests that use this builder.

### Saving a cache with checksum to GCS bucket

This `cloudbuild.yaml` saves the files and folders in the `path` arguments to a cache file in the GCS bucket `gs://$CACHE_BUCKET/`. In this example the key will be updated, resulting in a new cache, every time the `cloudbuild.yaml` build file is changed.

```yaml
- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache'
args:
- '--bucket=gs://$CACHE_BUCKET/'
- '--key=resources-$( checksum cloudbuild.yaml )'
- '--path=.cache/folder1'
- '--path=.cache/folder2/subfolder3'
```

If your build process only changes the cache contents whenever `cloudbuild.yaml` changes, then you can skip saving the cache again if it already exists in GCS:
```yaml
- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache'
args:
- '--bucket=gs://$CACHE_BUCKET/'
- '--key=resources-$( checksum cloudbuild.yaml )'
- '--path=.cache/folder1'
- '--path=.cache/folder2/subfolder3'
- '--no-clobber'
```

### Saving a cache with checksum to a local file

This `cloudbuild.yaml` saves the files and folders in the `path` arguments to a cache file in the directory passed to the `out` parameter. In this example the key will be updated, resulting in a new cache, every time the `cloudbuild.yaml` build file is changed.

```yaml
- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache'
args:
- '--out=/cache/'
- '--key=resources-$( checksum cloudbuild.yaml )'
- '--path=.cache/folder1'
- '--path=.cache/folder2/subfolder3'
volumes:
- name: 'cache'
path: '/cache'
```

### Restore a cache from a GCS bucket

This `cloudbuild.yaml` restores the files from the compressed cache file identified by `key` on the cache bucket provided, if it exists.

```yaml
- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache'
args:
- '--bucket=gs://$CACHE_BUCKET/'
- '--key=resources-$( checksum cloudbuild.yaml )'
```

### Restore a cache from a local file

This `cloudbuild.yaml` restores the files from the compressed cache file identified by `key` on the local filesystem, if it exists.

```yaml
- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache'
args:
- '--src=/cache/'
- '--key=resources-$( checksum cloudbuild.yaml )'
volumes:
- name: 'cache'
path: '/cache'
```

### Restore a cache with a fallback key

```yaml
- name: us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache
id: restore_cache
args: [
'--bucket=gs://${_CACHE_BUCKET}',
'--key=gradle-$( checksum checksum.txt )',
'--key_fallback=gradle-',
]
```
17 changes: 17 additions & 0 deletions build/build-image/cache/checksum
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/env bash

# Copyright 2023 Google LLC All Rights Reserved.
#
# 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.

echo $(cksum $@ | cut -d' ' -f1) | tr ' ' -
146 changes: 146 additions & 0 deletions build/build-image/cache/cloudbuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
---
# 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'
id: build_base_image
args:
- 'build'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/cache:${_VERSION}'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/cache:latest'
- '--file=Dockerfile-base'
- '.'

- name: 'gcr.io/cloud-builders/docker'
id: build_save_cache
args:
- 'build'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/save_cache:${_VERSION}'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/save_cache:latest'
- '--file=Dockerfile-save'
- '--build-arg=project_id=$PROJECT_ID'
- '--cache-from=us-docker.pkg.dev/$PROJECT_ID/ci/cache:latest'
- '.'

- name: 'gcr.io/cloud-builders/docker'
id: build_restore_cache
args:
- 'build'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache:${_VERSION}'
- '--tag=us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache:latest'
- '--file=Dockerfile-restore'
- '--build-arg=project_id=$PROJECT_ID'
- '--cache-from=us-docker.pkg.dev/$PROJECT_ID/ci/cache:latest'
- '.'

# Test the script
- name: 'gcr.io/cloud-builders/gsutil'
id: setup_test
entrypoint: 'bash'
args:
- '-c'
- |
echo "Creating test cache file structure."
mkdir -p /original/folder1 /original/folder2/subfolder3 rel_folder
touch /original/folder1/file1.txt
touch /original/folder1/file2.txt
touch /original/folder2/ignore.txt
touch /original/folder2/subfolder3/file1.txt
touch rel_folder/file3.txt
volumes:
- name: original
path: /original

- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache'
id: save_cache
args:
- '--out=/cached'
- '--key=simple-key-$( checksum cloudbuild.yaml )'
- '--path=/original/folder1'
- '--path=/original/folder2/subfolder3'
- '--path=rel_folder'
volumes:
- name: original
path: /original
- name: cached
path: /cached

- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache'
id: verify_cache
entrypoint: 'bash'
args:
- '-c'
- |
echo "Verifying cache file exists."
cache_file="/cached/simple-key-$( checksum cloudbuild.yaml ).tgz"
if [[ ! -f "${cache_file}" ]];then
echo "Missing cache file at ${cache_file}"
echo "Contents:"
echo "$(ls -al /cached)"
exit 1
fi
echo "Cache tests passed."
volumes:
- name: cached
path: /cached

- name: 'gcr.io/cloud-builders/gsutil'
id: clean_cache
entrypoint: bash
args:
- -c
- |
echo "Clearing original files..."
rm -rf /original/*
rm -rf rel_folder/
volumes:
- name: original
path: /original

- name: 'us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache'
id: restore_cache
args:
- '--src=/cached'
- '--key=simple-key-$( checksum cloudbuild.yaml )'
volumes:
- name: original
path: /original
- name: cached
path: /cached

- name: 'gcr.io/cloud-builders/gsutil'
id: verify_restore
entrypoint: bash
args:
- '-c'
- |
test -f /original/folder1/file1.txt
test -f /original/folder1/file2.txt
test -f /original/folder2/ignore.txt
test -f /original/folder2/subfolder3/file1.txt
test -f rel_folder/file3.txt
test -f /workspace/rel_folder/file3.txt
volumes:
- name: original
path: /original

images:
- 'us-docker.pkg.dev/$PROJECT_ID/ci/cache:${_VERSION}'
- 'us-docker.pkg.dev/$PROJECT_ID/ci/cache:latest'
- 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache:${_VERSION}'
- 'us-docker.pkg.dev/$PROJECT_ID/ci/save_cache:latest'
- 'us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache:${_VERSION}'
- 'us-docker.pkg.dev/$PROJECT_ID/ci/restore_cache:latest'
Loading