-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins-x.yml
230 lines (230 loc) · 5.81 KB
/
jenkins-x.yml
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
buildPack: none
pipelineConfig:
pipelines:
pullRequest:
pipeline:
agent:
image: gcr.io/jenkinsxio/builder-go
stages:
- name: pr-checks
steps:
- name: verify-parameters
command: jx
args:
- step
- verify
- values
- --values-file=parameters.yaml
- --schema-file=parameters.tmpl.schema.json
dir: /workspace/source/env
- name: lint-env-helm
command: make
args:
- build
dir: /workspace/source/env
release:
pipeline:
agent:
image: gcr.io/jenkinsxio/builder-go
environment:
- name: DEPLOY_NAMESPACE
value: jx
stages:
- name: release
steps:
- name: validate-git
command: jx
args:
- step
- git
- validate
dir: /workspace/source/env
- name: verify-preinstall
command: jx
args:
- step
- verify
- preinstall
dir: /workspace/source/env
- name: install-jx-crds
command: jx
args:
- upgrade
- crd
- name: install-velero
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- velero
dir: /workspace/source/systems/velero
env:
- name: DEPLOY_NAMESPACE
value: velero
- name: install-velero-backups
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- velero-backups
dir: /workspace/source/systems/velero-backups
env:
- name: DEPLOY_NAMESPACE
value: velero
- name: install-nginx-controller
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- jxing
dir: /workspace/source/systems/jxing
env:
- name: DEPLOY_NAMESPACE
value: kube-system
- name: create-install-values
command: jx
args:
- step
- create
- install
- values
- -b
dir: /workspace/source/env
- name: install-external-dns
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- exdns
dir: /workspace/source/systems/external-dns
- name: install-cert-manager-crds
command: kubectl
args:
- apply
- --wait
- --validate=true
- -f
- https://raw.githubusercontent.com/jetstack/cert-manager/release-0.8/deploy/manifests/00-crds.yaml
dir: /workspace/source
env:
- name: DEPLOY_NAMESPACE
value: cert-manager
- name: install-cert-manager
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- cm
dir: /workspace/source/systems/cm
env:
- name: DEPLOY_NAMESPACE
value: cert-manager
- name: install-acme-issuer-and-certificate
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --no-vault
- --name
- acme
dir: /workspace/source/systems/acme
- name: install-vault
command: jx
args:
- step
- boot
- vault
dir: /workspace/source/systems/vault
- name: create-helm-values
command: jx
args:
- step
- create
- values
- --name
- parameters
dir: /workspace/source/env
- name: install-jenkins-x
command: jx
args:
- step
- helm
- apply
- --boot
- --remote
- --name
- jenkins-x
- --provider-values-dir
- ../kubeProviders
dir: /workspace/source/env
- name: verify-jenkins-x-environment
command: jx
args:
- step
- verify
- env
dir: /workspace/source
- name: install-repositories
command: jx
args:
- step
- helm
- apply
- --boot
- --name
- repos
dir: /workspace/source/repositories
- name: install-pipelines
command: jx
args:
- step
- scheduler
- config
- apply
- --direct=true
dir: /workspace/source/prowConfig
- name: update-webhooks
command: jx
args:
- update
- webhooks
- --verbose
- --warn-on-fail
dir: /workspace/source/repositories
- name: verify-installation
command: jx
args:
- step
- verify
- install
- --pod-wait-time
- 30m
dir: /workspace/source/env