-
Notifications
You must be signed in to change notification settings - Fork 3
/
clm-server.yaml
64 lines (64 loc) · 1.25 KB
/
clm-server.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
apiVersion: v1
kind: Namespace
metadata:
name: clm-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: clm-role
rules:
- apiGroups: ["*"]
resources: ["*"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: clm-role-binding
subjects:
- kind: ServiceAccount
name: clm-service-account
namespace: clm-system
roleRef:
kind: ClusterRole
name: clm-role
apiGroup: rbac.authorization.k8s.io
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: clm-service-account
namespace: clm-system
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: clm-server
namespace: clm-system
labels:
app: clm-server
src: cloudnativeapp
spec:
replicas: 1
selector:
matchLabels:
app: clm-server
src: cloudnativeapp
template:
metadata:
labels:
app: clm-server
src: cloudnativeapp
spec:
serviceAccountName: clm-service-account
containers:
- name: clm-server
image: clmgroup/clm:release-2.0.0
imagePullPolicy: Always
args:
- --enable-log-file=true
- --log-level=debug
securityContext:
privileged: true
restartPolicy: Always