-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorca-local2.yml
220 lines (220 loc) · 8.69 KB
/
orca-local2.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
job:
preconfigured:
kubernetes:
- label: TSPlanJob
cloudProvider: kubernetes
credentials: default
application: opsmx
description: Stage for terraspin plan operation
account: default
type: customTSPlanJobStage
waitForCompletion: true
parameters:
- defaultValue: ""
description: Please enter the artifact account name from artifactsaccounts.json.
label: Artifact account
mapping: 'manifest.spec.template.spec.containers[0].env[0].value'
name: Artifact account
- defaultValue: ""
description: Please enter terraform module repo where the code is present.
label: Terraform plan
mapping: 'manifest.spec.template.spec.containers[0].env[1].value'
name: Terraform plan
- defaultValue: ""
description: Please enter overrideVariableFile path if you want to override variables.
label: Override file
mapping: 'manifest.spec.template.spec.containers[0].env[2].value'
name: Override file
- defaultValue: ""
description: Please enter the repo name where you want to save terraform intermediate state.
label: State repo
mapping: 'manifest.spec.template.spec.containers[0].env[3].value'
name: State repo
- defaultValue: ""
description: Please enter a unique id to identify the terraform state.
label: UUId
mapping: 'manifest.spec.template.spec.containers[0].env[4].value'
name: UUId
- defaultValue: ""
description: Please enter AWS IAM role name.
label: "iam.amazonaws.com/role"
mapping: "manifest.spec.template.metadata.annotations.'iam.amazonaws.com/role'"
name: "k8annotation"
manifest:
apiVersion: batch/v1
kind: Job
metadata:
name: terraspinplanjob
namespace: robin
spec:
backoffLimit: 0
template:
metadata:
annotations:
"[iam.amazonaws.com/role]":
spec:
containers:
- command:
- PlanRun.sh
env:
- name: artifactAccount
value:
- name: plan
value:
- name: variableOverrideFileRepo
value:
- name: stateRepo
value:
- name: uuId
value:
- name: component
value: plan
image: 'docker.io/opsmx11/terraspinjob:4.0'
imagePullPolicy: Always
name: terraspinplan
volumeMounts:
- mountPath: /home/terraspin/opsmx/app/config/
name: opsmx-terraspin-backend-config
restartPolicy: Never
volumes:
- configMap:
name: terraspinbackendconfig
name: opsmx-terraspin-backend-config
- label: TSApplyJob
application: opsmx
cloudProvider: kubernetes
credentials: default
description: Stage for terraspin apply operation
account: default
propertyFile: terraspinapply
type: customTSApplyJobStage
waitForCompletion: true
parameters:
- defaultValue: ""
description: Please enter the artifact account name from artifactsaccounts.json.
label: Artifact account
mapping: 'manifest.spec.template.spec.containers[0].env[0].value'
name: Artifact account
- defaultValue: ""
description: Please enter overrideVariableFile path if you want to override variables.
label: Override file
mapping: 'manifest.spec.template.spec.containers[0].env[1].value'
name: Override file
- defaultValue: ""
description: Please enter the repo name where you want to save terraform intermediate state.
label: State repo
mapping: 'manifest.spec.template.spec.containers[0].env[2].value'
name: State repo
- defaultValue: ""
description: Please enter a unique id to identify the terraform state.
label: UUId
mapping: 'manifest.spec.template.spec.containers[0].env[3].value'
name: UUId
- defaultValue: ""
description: Please enter AWS IAM role name.
label: "iam.amazonaws.com/role"
mapping: "manifest.spec.template.metadata.annotations.'iam.amazonaws.com/role'"
name: "k8annotation"
manifest:
apiVersion: batch/v1
kind: Job
metadata:
name: terraspinapplyjob
namespace: robin
spec:
backoffLimit: 0
template:
metadata:
annotations:
"[iam.amazonaws.com/role]":
spec:
containers:
- command:
- ApplyRun.sh
env:
- name: artifactAccount
value:
- name: variableOverrideFileRepo
value:
- name: stateRepo
value:
- name: uuId
value:
- name: component
value: apply
image: 'docker.io/opsmx11/terraspinjob:4.0'
imagePullPolicy: Always
name: terraspinapply
volumeMounts:
- mountPath: /home/terraspin/opsmx/app/config/
name: opsmx-terraspin-backend-config
restartPolicy: Never
volumes:
- configMap:
name: terraspinbackendconfig
name: opsmx-terraspin-backend-config
- label: TSDestroyJob
application: opsmx
cloudProvider: kubernetes
credentials: default
description: Stage for terraspin destroy operation
account: default
type: customTSDestroyJobStage
waitForCompletion: true
parameters:
- defaultValue: ""
description: Please enter the artifact account name from artifactsaccounts.json.
label: Artifact account
mapping: 'manifest.spec.template.spec.containers[0].env[0].value'
name: Artifact account
- defaultValue: ""
description: Please enter the repo name where you want to save terraform intermediate state.
label: State repo
mapping: 'manifest.spec.template.spec.containers[0].env[1].value'
name: State repo
- defaultValue: ""
description: Please enter a unique id to identify the terraform state.
label: UUID
mapping: 'manifest.spec.template.spec.containers[0].env[2].value'
name: UUID
- defaultValue: ""
description: Please enter AWS IAM role name.
label: "iam.amazonaws.com/role"
mapping: "manifest.spec.template.metadata.annotations.'iam.amazonaws.com/role'"
name: "k8annotation"
manifest:
apiVersion: batch/v1
kind: Job
metadata:
name: terraspindestroyjob
namespace: robin
spec:
backoffLimit: 0
template:
metadata:
annotations:
"[iam.amazonaws.com/role]":
spec:
containers:
- command:
- DestroyRun.sh
env:
- name: artifactAccount
value:
- name: stateRepo
value:
- name: uuId
value:
- name: component
value: destroy
image: 'docker.io/opsmx11/terraspinjob:4.0'
imagePullPolicy: Always
name: terraspindestroy
volumeMounts:
- mountPath: /home/terraspin/opsmx/app/config/
name: opsmx-terraspin-backend-config
restartPolicy: Never
volumes:
- configMap:
name: terraspinbackendconfig
name: opsmx-terraspin-backend-config