45 lines
1.0 KiB
YAML
45 lines
1.0 KiB
YAML
# Tekton Pipelines Release manifest
|
|||
|
|
# Source: https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml
|
||
|
|
# This is managed by ArgoCD - do NOT manually apply
|
||
|
|
# ArgoCD syncs this from git
|
||
|
|
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Namespace
|
||
|
|
metadata:
|
||
|
|
name: tekton-pipelines
|
||
|
|
labels:
|
||
|
|
managed-by: argocd
|
||
|
|
|
||
|
|
---
|
||
|
|
# CRDs and RBAC are part of the full release manifest
|
||
|
|
# Using a reference approach for cleaner GitOps
|
||
|
|
apiVersion: argoproj.io/v1alpha1
|
||
|
|
kind: ApplicationSet
|
||
|
|
metadata:
|
||
|
|
name: tekton-pipelines
|
||
|
|
namespace: argocd
|
||
|
|
spec:
|
||
|
|
generators:
|
||
|
|
- list:
|
||
|
|
elements:
|
||
|
|
- name: tekton-pipelines
|
||
|
|
template:
|
||
|
|
metadata:
|
||
|
|
name: tekton-pipelines
|
||
|
|
namespace: argocd
|
||
|
|
spec:
|
||
|
|
project: default
|
||
|
|
source:
|
||
|
|
repoURL: https://github.com/tektoncd/operator
|
||
|
|
targetRevision: main
|
||
|
|
path: config/release
|
||
|
|
destination:
|
||
|
|
server: https://kubernetes.default.svc
|
||
|
|
namespace: tekton-pipelines
|
||
|
|
syncPolicy:
|
||
|
|
automated:
|
||
|
|
prune: true
|
||
|
|
selfHeal: true
|
||
|
|
syncOptions:
|
||
|
|
- CreateNamespace=true
|