-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextcast.yaml
More file actions
95 lines (95 loc) · 1.95 KB
/
Copy pathnextcast.yaml
File metadata and controls
95 lines (95 loc) · 1.95 KB
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
apiVersion: v1
kind: ServiceAccount
metadata:
name: nextcast
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: nextcast
namespace: default
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list"]
- apiGroups: ["apps"]
resources: ["deployments"]
verbs: ["get", "list"]
- apiGroups: ["apps"]
resources: ["deployments/scale"]
verbs: ["get", "update", "patch"]
- apiGroups: ["metrics.k8s.io"]
resources: ["pods"]
verbs: ["get", "list"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: nextcast
namespace: default
subjects:
- kind: ServiceAccount
name: nextcast
namespace: default
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: nextcast
---
apiVersion: v1
kind: Service
metadata:
name: nextcast
namespace: default
spec:
selector:
app: nextcast
ports:
- name: http
port: 8081
targetPort: 8081
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nextcast
namespace: default
spec:
replicas: 1
selector:
matchLabels:
app: nextcast
template:
metadata:
labels:
app: nextcast
spec:
serviceAccountName: nextcast
containers:
- name: nextcast
image: glitchedking/netcast:latest
imagePullPolicy: Always
ports:
- name: http
containerPort: 8081
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 500m
memory: 512Mi
env:
- name: BACKEND
value: kubernetes
- name: LISTEN_ADDR
value: ":8081"
- name: K8S_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: CHECK_INTERVAL
value: 20s
- name: COOLDOWN
value: 60s