12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: kibana-logging
- namespace: logging
- labels:
- k8s-app: kibana-logging
- addonmanager.kubernetes.io/mode: Reconcile
- spec:
- replicas: 1
- selector:
- matchLabels:
- k8s-app: kibana-logging
- template:
- metadata:
- labels:
- k8s-app: kibana-logging
- spec:
- securityContext:
- seccompProfile:
- type: RuntimeDefault
- containers:
- - name: kibana-logging
- image: registry.cn-beijing.aliyuncs.com/dotbalo/kibana-oss:7.10.2
- resources:
- # need more cpu upon initialization, therefore burstable class
- limits:
- cpu: 1000m
- requests:
- cpu: 100m
- env:
- - name: ELASTICSEARCH_HOSTS
- value: http://elasticsearch-logging:9200
- - name: SERVER_NAME
- value: kibana-logging
- - name: SERVER_BASEPATH
- value: "/kibana"
- - name: SERVER_REWRITEBASEPATH
- value: "true"
- ports:
- - containerPort: 5601
- name: ui
- protocol: TCP
- livenessProbe:
- httpGet:
- path: /kibana/api/status
- port: ui
- initialDelaySeconds: 5
- timeoutSeconds: 10
- readinessProbe:
- httpGet:
- path: /kibana/api/status
- port: ui
- initialDelaySeconds: 5
- timeoutSeconds: 10
|