-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/github_actions/helm/kind-action-1…
….10.0
- Loading branch information
Showing
12 changed files
with
247 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,80 @@ | ||
# tekton-caches [![build-test-publish](https://github.com/openshift-pipelines/tekton-caches/actions/workflows/latest.yaml/badge.svg)](https://github.com/openshift-pipelines/tekton-caches/actions/workflows/latest.yaml) | ||
|
||
Tools (and Task/StepAction) to managing within Tekton | ||
|
||
```bash | ||
# With OCI | ||
$ cache fetch --hasfiles '**/go.sum' --target oci://quay.io/vdemeest/cache/go-cache:{{hash}} --folder /workspaces/go-cache | ||
$ cache upload --hashfiles '**/go.sum' --target oci://quay.io/vdemeest/cache/go-cache:{{hash}} --folder /workspaces/go-cache | ||
# With s3 | ||
$ cache fetch --hashfiles '**/go.sum' --target s3://my-bucket/path/to/my/cache --folder /workspaces/go-cache | ||
$ cache fetch --hashfiles '**/go.sum' --target s3://my-bucket/path/to/my/cache --folder /workspaces/go-cache | ||
# With gcs | ||
$ cache fetch --hashfiles '**/go.sum' --target gcs://my-bucket/path/to/my/cache --folder /workspaces/go-cache | ||
$ cache fetch --hashfiles '**/go.sum' --target gcs://my-bucket/path/to/my/cache --folder /workspaces/go-cache | ||
This is a tool to cache resources like go cache/maven or others on TektonCD | ||
pipelines. | ||
|
||
This tool supports uploading the cache to an OCI registry and plans to support | ||
S3, GCS and other storage backends. | ||
|
||
It uses the new [StepActions](https://tekton.dev/docs/pipelines/stepactions/) | ||
feature of TektonCD Pipelines but can be as well used without it. | ||
|
||
See the StepActions in the [tekton/](./tekton) directory. | ||
|
||
## Example | ||
|
||
This is an example of a build pipeline for a go application caching and reusing | ||
the go cache. If the `go.mod` and `go.sum` are changed the cache is invalidated and | ||
rebuilt. | ||
|
||
### Pre-requisites | ||
|
||
- You need a recent TektonCD pipelines installed with the StepActions feature-flags enabled. | ||
|
||
```shell | ||
kubectl patch configmap -n tekton-pipelines --type merge -p '{"data":{"enable-step-actions": "true"}}' feature-flags | ||
``` | ||
|
||
- A registry to push the images to. Example: docker.io/loginname. Make sure you | ||
have setup tekton to be able to push/fetch from that registry, see the | ||
[TektonCD pipelines documentation](https://tekton.dev/docs/pipelines/auth/#configuring-authentication-for-docker) | ||
|
||
### Usage | ||
|
||
Create the go pipeline example from the examples directory: | ||
|
||
```shell | ||
kubectl create -f pipeline-go.yaml | ||
``` | ||
|
||
Start it with the tkn cli (change the value as needed): | ||
|
||
```shell | ||
tkn pipeline start pipeline-go --param repo_url=https://github.com/vdemeester/go-helloworld-app --param revision=main --param registry=docker.io/username -w name=source,emptyDir= | ||
``` | ||
|
||
or with a PipelineRun yaml object: | ||
|
||
```shell | ||
```yaml | ||
kind: PipelineRun | ||
metadata: | ||
name: build-go-application-with-caching-run | ||
spec: | ||
pipelineRef: | ||
name: pipeline-go | ||
params: | ||
- name: repo_url | ||
value: https://github.com/vdemeester/go-helloworld-app | ||
- name: revision | ||
value: main | ||
- name: registry | ||
value: docker.io/username | ||
workspaces: | ||
- name: source | ||
emptyDir: {} | ||
``` | ||
|
||
- you can as well redefine the `buildCommand` which by default do a `go build | ||
-v ./` with the `buildCommand` parameter, for example if you want instead to | ||
run the tests on a repo with caching: | ||
|
||
```shell | ||
tkn pipeline start pipeline-go --param repo_url=https://github.com/chmouel/gosmee \ | ||
--param revision=main --param registry=docker.io/username \ | ||
--param=buildCommand="make test" -w name=source,emptyDir= | ||
``` | ||
|
||
## License | ||
|
||
[Apache License 2.0](./LICENSE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
--- | ||
apiVersion: tekton.dev/v1 | ||
kind: Pipeline | ||
metadata: | ||
name: pipeline-go | ||
spec: | ||
params: | ||
- name: repo_url | ||
type: string | ||
- name: revision | ||
type: string | ||
- name: registry | ||
type: string | ||
- name: buildCommand | ||
type: string | ||
default: go build -v . | ||
workspaces: | ||
- name: source | ||
tasks: | ||
- displayName: Build go application | ||
name: build-task | ||
workspaces: | ||
- name: source | ||
workspace: source | ||
taskSpec: | ||
workspaces: | ||
- name: source | ||
params: | ||
- name: buildCommand | ||
default: $(params.buildCommand) | ||
steps: | ||
- name: create-repo | ||
image: cgr.dev/chainguard/go | ||
script: | | ||
mkdir -p $(workspaces.source.path)/repo | ||
chmod 777 $(workspaces.source.path)/repo | ||
- name: fetch-repo | ||
ref: | ||
resolver: http | ||
params: | ||
- name: url | ||
value: https://raw.githubusercontent.com/tektoncd/catalog/main/stepaction/git-clone/0.1/git-clone.yaml | ||
params: | ||
- name: output-path | ||
value: $(workspaces.source.path)/repo | ||
- name: url | ||
value: $(params.repo_url) | ||
- name: revision | ||
value: $(params.revision) | ||
- name: fetch-cache | ||
ref: | ||
resolver: http | ||
params: | ||
- name: url | ||
value: https://raw.githubusercontent.com/openshift-pipelines/tekton-caches/main/tekton/cache-fetch.yaml | ||
params: | ||
- name: patterns | ||
value: | ||
- "**.go" | ||
- "**go.sum" | ||
- name: source | ||
value: oci://$(params.registry)/cache-go:{{hash}} | ||
- name: cachePath | ||
value: $(workspaces.source.path)/cache | ||
- name: workingdir | ||
value: $(workspaces.source.path)/repo | ||
- image: cgr.dev/chainguard/go | ||
workingDir: $(workspaces.source.path)/repo | ||
name: noop-task | ||
env: | ||
- name: GOCACHE | ||
value: $(workspaces.source.path)/cache/gocache | ||
- name: GOMODCACHE | ||
value: $(workspaces.source.path)/cache/gomodcache | ||
script: | | ||
set -x | ||
git config --global --add safe.directory $(workspaces.source.path)/repo | ||
$(params.buildCommand) | ||
du -shk $GOPATH | ||
du -shk $GOMODCACHE | ||
- name: cache-upload | ||
ref: | ||
resolver: http | ||
params: | ||
- name: url | ||
value: https://raw.githubusercontent.com/openshift-pipelines/tekton-caches/main/tekton/cache-upload.yaml | ||
params: | ||
- name: patterns | ||
value: | ||
- "**.go" | ||
- "**go.sum" | ||
- name: target | ||
value: oci://$(params.registry)/cache-go:{{hash}} | ||
- name: cachePath | ||
value: $(workspaces.source.path)/cache | ||
- name: workingdir | ||
value: $(workspaces.source.path)/repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
apiVersion: tekton.dev/v1 | ||
kind: PipelineRun | ||
metadata: | ||
name: build-go-application-with-caching-run | ||
spec: | ||
pipelineRef: | ||
name: build-go-application-with-caching | ||
params: | ||
- name: repo_url | ||
value: https://github.com/vdemeester/go-helloworld-app | ||
- name: revision | ||
value: main | ||
- name: registry | ||
value: registry.civuole.local/cache | ||
workspaces: | ||
- name: source | ||
emptyDir: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.