-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwikipathwaysloader.yaml
More file actions
46 lines (36 loc) · 863 Bytes
/
wikipathwaysloader.yaml
File metadata and controls
46 lines (36 loc) · 863 Bytes
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
---
kind: Template
apiVersion: v1
metadata:
name: wikipathwaysloader
labels:
template: wikipathwaysloader
parameters:
- name: LOADER_REGISTRY
value: bigcatum
- name: LOADER_IMAGE
value: wploader:latest
- name: LOADER_TARGET_CLAIM_NAME
value: aopwiki-target-claim
objects:
- kind: Job
apiVersion: batch/v1
metadata:
name: wikipathwaysloader
spec:
template:
metadata:
name: wikipathwaysloader
spec:
containers:
- image: ${LOADER_REGISTRY}/${LOADER_IMAGE}
name: wikipathwaysloader
imagePullPolicy: Always
volumeMounts:
- name: wikipathways-target
mountPath: /wikipathwaysdata
volumes:
- name: wikipathways-target
persistentVolumeClaim:
claimName: ${LOADER_TARGET_CLAIM_NAME}
restartPolicy: Never