-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifests.yaml
94 lines (94 loc) · 1.9 KB
/
manifests.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
apiVersion: v1
kind: Namespace
metadata:
name: workspaces
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: workspace-bot
namespace: workspaces
---
apiVersion: v1
kind: Secret
metadata:
name: workspace-bot-secret
namespace: workspaces
annotations:
kubernetes.io/service-account.name: workspace-bot
type: kubernetes.io/service-account-token
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: workspace-bot-role
namespace: workspaces
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: workspace-bot-rolebinding
namespace: workspaces
subjects:
- kind: ServiceAccount
name: workspace-bot
namespace: workspaces
roleRef:
kind: Role
name: workspace-bot-role
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: Pod
metadata:
name: workspace-bot
labels:
app: workspace-bot
spec:
serviceAccountName: workspace-bot
containers:
- name: workspace-bot
imagePullPolicy: Always
image: ghcr.io/cscosu/workspace-bot:latest
env:
- name: NODE_TLS_REJECT_UNAUTHORIZED
value: "0"
- name: DISCORD_BOT_TOKEN
valueFrom:
secretKeyRef:
name: bot-token
key: DISCORD_BOT_TOKEN
resources:
limits:
cpu: 500m
memory: 512Mi
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: workspace-network-policy
spec:
podSelector:
matchLabels:
workspace: "true"
policyTypes:
- Ingress
- Egress
ingress:
- from:
- namespaceSelector:
matchLabels:
kubernetes.io/metadata.name: ingress-nginx
egress:
- to:
- ipBlock:
cidr: 0.0.0.0/0
except:
- 192.168.88.0/24
- 192.168.0.0/16
- 172.16.0.0/12
- 10.0.0.0/8