forked from alseambusher/crontab-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathk8s.yml
127 lines (122 loc) · 2.62 KB
/
k8s.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
---
apiVersion: v1
kind: Secret
metadata:
name: crontabui
namespace: $OKTETO_NS
labels:
app.kubernetes.io/name: crontabui
app.kubernetes.io/instance: crontabui
type: Opaque
stringData:
crontabui-user: $BASIC_AUTH_USER
crontabui-password: $BASIC_AUTH_PWD
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: crontabui-data
name: crontabui-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
volumeMode: Filesystem
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
creationTimestamp: null
labels:
io.kompose.service: crontabui
name: crontabui
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: crontabui
strategy:
type: RollingUpdate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.network/hcf-default: "true"
io.kompose.service: crontabui
spec:
containers:
- env:
- name: BASIC_AUTH_USER
valueFrom:
secretKeyRef:
name: crontabui
key: crontabui-user
- name: BASIC_AUTH_PWD
valueFrom:
secretKeyRef:
name: crontabui
key: crontabui-password
- name: UPDATED
value: "$TIMESTAMP"
- name: CLUSTERS_FILE
value: /opt/cron/k8s/clusters.json
image: highcanfly/crontab-ui
name: crontabui
ports:
- containerPort: 8000
resources:
limits:
cpu: 250m
memory: "1Gi"
volumeMounts:
- mountPath: /opt/cron
name: crontabui-data
securityContext:
runAsUser: 0
runAsGroup: 0
restartPolicy: Always
volumes:
- name: crontabui-data
persistentVolumeClaim:
claimName: crontabui-data
status: {}
---
apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: crontabui
name: crontabui
spec:
ports:
- name: "8000"
port: 8000
targetPort: 8000
selector:
io.kompose.service: crontabui
status:
loadBalancer: {}
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: crontabui
namespace: $OKTETO_NS
spec:
rules:
- host: crontabui-$OKTETO_NS.cloud.okteto.net
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: crontabui
port:
number: 8000