forked from astefanutti/kubebox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kubernetes.yaml
98 lines (98 loc) · 1.63 KB
/
kubernetes.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
apiVersion: v1
kind: Namespace
metadata:
name: kubebox
---
apiVersion: v1
kind: Service
metadata:
name: kubebox
labels:
template: kubebox
namespace: kubebox
spec:
ports:
- name: kubebox
protocol: TCP
port: 8080
targetPort: 8080
selector:
name: kubebox
---
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: kubebox
annotations:
kubernetes.io/ingress.allow-http: "true"
ingress.kubernetes.io/ssl-redirect: "false"
namespace: kubebox
spec:
rules:
- http:
paths:
- path: /
backend:
serviceName: kubebox
servicePort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kubebox
namespace: kubebox
spec:
strategy:
type: Recreate
selector:
matchLabels:
name: kubebox
template:
metadata:
name: kubebox
labels:
name: kubebox
spec:
serviceAccountName: kubebox
containers:
- image: astefanutti/kubebox:server
imagePullPolicy: Always
name: kubebox
ports:
- containerPort: 8080
protocol: TCP
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kubebox
namespace: kubebox
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: kubebox
namespace: kubebox
subjects:
- kind: ServiceAccount
name: kubebox
namespace: kubebox
roleRef:
kind: ClusterRole
name: kubebox
apiGroup: rbac.authorization.k8s.io
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: kubebox
namespace: kubebox
rules:
- apiGroups:
- '*'
resources:
- '*'
verbs:
- get
- watch
- list