- apps/ci/tekton.yaml: installs Tekton v0.65.1 via kustomize remote ref - apps/ci/pipeline.yaml: deploys pipeline resources via ArgoCD - manifests/ci/tekton/kustomization.yaml: points to upstream release - manifests/ci/pipeline/serviceaccount.yaml: pipeline-runner SA - manifests/ci/pipeline/pipeline.yaml: 4-task Pipeline (clone, validate, bump, push) - manifests/ci/pipeline/pipelinerun.yaml: bumps podinfo 6.6.2 → 6.7.0 - scripts/set-git-credentials.sh: creates git-credentials Secret (not in git) - docs/04-tekton-pipeline.md: Exercise 04 participant guide
6 lines
346 B
YAML
6 lines
346 B
YAML
# Installs Tekton Pipelines v0.65.1 via kustomize remote reference.
|
|
# ArgoCD applies this with its built-in kustomize support.
|
|
# Images are pre-pulled by the Vagrantfile, so this only needs network to
|
|
# fetch the manifest once (not the images).
|
|
resources:
|
|
- https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.65.1/release.yaml
|