forked from khuedoan/homelab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.yaml
113 lines (109 loc) · 2.63 KB
/
pipeline.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
name: homelab
spec:
workspaces:
- name: shared-data
tasks:
- name: git-clone
taskRef:
name: git-clone
workspaces:
- name: output
workspace: shared-data
params:
- name: url
value: http://gitea-http.gitea:3000/ops/homelab
- name: revision
value: master
- name: tools
runAfter:
- git-clone
workspaces:
- name: source
workspace: shared-data
# TODO secure registry
# - name: dockerconfig
# workspace: dockerconfig
taskRef:
name: kaniko
params:
- name: CONTEXT
value: ./tools
- name: IMAGE
value: registry.jupiter.mein.nl/tools:latest
- name: EXTRA_ARGS
value:
- --cache=true
- name: pre-commit
runAfter:
- tools
workspaces:
- name: source
workspace: shared-data
taskSpec:
workspaces:
- name: source
stepTemplate:
image: registry.jupiter.mein.nl/tools:latest
workingDir: /workspace/source
steps:
- name: run
command:
- pre-commit
args:
- run
# - --all-files
- --color=always
- name: external
runAfter:
- pre-commit
workspaces:
- name: source
workspace: shared-data
taskSpec:
workspaces:
- name: source
volumes:
- name: terraform-secrets
secret:
secretName: terraform-secrets
stepTemplate:
image: registry.jupiter.mein.nl/tools:latest
workingDir: /workspace/source/external
volumeMounts:
- name: terraform-secrets
mountPath: /root/.terraform.d/credentials.tfrc.json
subPath: credentials.tfrc.json
- name: terraform-secrets
mountPath: /workspace/source/external/terraform.tfvars
subPath: terraform.tfvars
command:
- make
steps:
- name: plan
args:
- plan
- name: apply
args:
- apply
---
apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
name: homelab
spec:
serviceAccountName: tekton-admin
pipelineRef:
name: homelab
workspaces:
- name: shared-data
volumeClaimTemplate:
spec:
storageClassName: longhorn
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi