-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-container.yaml
165 lines (165 loc) · 3.6 KB
/
main-container.yaml
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
apiVersion: v1
kind: Namespace
metadata:
name: multibot
labels:
name: multibot
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: main-container-account
namespace: multibot
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: multibot
name: main-container
labels:
app: main-container
logging: my_group
spec:
replicas: 2
selector:
matchLabels:
app: main-container
template:
metadata:
labels:
app: main-container
logging: my_group
spec:
serviceAccountName: main-container-account
containers:
- name: main-container
image: {{IMAGE}}
imagePullPolicy: {{IMAGE_PULL_POLICY}}
resources:
requests:
cpu: 100m
memory: 64Mi
limits:
cpu: 400m
memory: 256Mi
env:
- name: BASE_URL
valueFrom:
secretKeyRef:
name: app-secrets
key: BASE_URL
- name: TWITCH_SUPER_ADMIN_USERNAME
valueFrom:
secretKeyRef:
name: app-secrets
key: TWITCH_SUPER_ADMIN_USERNAME
- name: TWITCH_CLIENT_ID
valueFrom:
secretKeyRef:
name: app-secrets
key: TWITCH_CLIENT_ID
- name: TWITCH_SECRET
valueFrom:
secretKeyRef:
name: app-secrets
key: TWITCH_SECRET
- name: SESSION_SECRET
valueFrom:
secretKeyRef:
name: app-secrets
key: SESSION_SECRET
- name: DOCKER_USERNAME
valueFrom:
secretKeyRef:
name: app-secrets
key: DOCKER_USERNAME
- name: IMAGE_PULL_POLICY
valueFrom:
secretKeyRef:
name: app-secrets
key: IMAGE_PULL_POLICY
- name: STATE_DB_URL
valueFrom:
secretKeyRef:
name: app-secrets
key: STATE_DB_URL
- name: STATE_DB_PASSWORD
valueFrom:
secretKeyRef:
name: app-secrets
key: STATE_DB_PASSWORD
ports:
- containerPort: 80
restartPolicy: Always
---
apiVersion: v1
kind: Service
metadata:
namespace: multibot
name: main-container-svc
spec:
selector:
app: main-container
ports:
- protocol: TCP
port: 8000
targetPort: 80
type: {{SERVICE_TYPE}}
---
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
namespace: multibot
name: main-container-hpa
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: main-container
minReplicas: 2
maxReplicas: 20
metrics:
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 80
---
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
namespace: multibot
name: main-container-pdb
spec:
minAvailable: 1
selector:
matchLabels:
app: main-container
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
namespace: multibot
name: tenant-manager
rules:
- apiGroups: [""]
resources: ["pods", "services"]
verbs: ["get", "list", "watch", "create", "update", "delete"]
- apiGroups: ["apps"]
resources: ["deployments"]
verbs: ["get", "list", "watch", "patch", "update", "create", "delete"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: tenant-manager-binding
namespace: multibot
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: tenant-manager
subjects:
- kind: ServiceAccount
name: main-container-account
namespace: multibot