114 lines
2.3 KiB
YAML
114 lines
2.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kuboard
|
|
namespace: kube-system
|
|
annotations:
|
|
k8s.kuboard.cn/displayName: kuboard
|
|
k8s.kuboard.cn/ingress: "true"
|
|
k8s.kuboard.cn/service: NodePort
|
|
k8s.kuboard.cn/workload: kuboard
|
|
labels:
|
|
k8s.kuboard.cn/layer: monitor
|
|
k8s.kuboard.cn/name: kuboard
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s.kuboard.cn/layer: monitor
|
|
k8s.kuboard.cn/name: kuboard
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s.kuboard.cn/layer: monitor
|
|
k8s.kuboard.cn/name: kuboard
|
|
spec:
|
|
containers:
|
|
- name: kuboard
|
|
image: eipwork/kuboard:latest
|
|
imagePullPolicy: Always
|
|
tolerations:
|
|
- key: node-role.kubernetes.io/master
|
|
effect: NoSchedule
|
|
operator: Exists
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: kuboard
|
|
namespace: kube-system
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- name: http
|
|
port: 80
|
|
targetPort: 80
|
|
nodePort: 32567
|
|
selector:
|
|
k8s.kuboard.cn/layer: monitor
|
|
k8s.kuboard.cn/name: kuboard
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: kuboard-user
|
|
namespace: kube-system
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: kuboard-user
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: cluster-admin
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: kuboard-user
|
|
namespace: kube-system
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: kuboard-viewer
|
|
namespace: kube-system
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: kuboard-viewer
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: ClusterRole
|
|
name: view
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: kuboard-viewer
|
|
namespace: kube-system
|
|
|
|
# ---
|
|
# apiVersion: extensions/v1beta1
|
|
# kind: Ingress
|
|
# metadata:
|
|
# name: kuboard
|
|
# namespace: kube-system
|
|
# annotations:
|
|
# k8s.kuboard.cn/displayName: kuboard
|
|
# k8s.kuboard.cn/workload: kuboard
|
|
# nginx.org/websocket-services: "kuboard"
|
|
# nginx.com/sticky-cookie-services: "serviceName=kuboard srv_id expires=1h path=/"
|
|
# spec:
|
|
# rules:
|
|
# - host: kuboard.yourdomain.com
|
|
# http:
|
|
# paths:
|
|
# - path: /
|
|
# backend:
|
|
# serviceName: kuboard
|
|
# servicePort: http
|