mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-11 00:40:23 +00:00
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: kibana-logging
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: kibana-logging
|
|
kubernetes.io/cluster-service: "true"
|
|
addonmanager.kubernetes.io/mode: Reconcile
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: kibana-logging
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: kibana-logging
|
|
annotations:
|
|
seccomp.security.alpha.kubernetes.io/pod: 'docker/default'
|
|
spec:
|
|
containers:
|
|
- name: kibana-logging
|
|
image: docker.elastic.co/kibana/kibana-oss:6.3.2
|
|
resources:
|
|
# need more cpu upon initialization, therefore burstable class
|
|
limits:
|
|
cpu: 1000m
|
|
requests:
|
|
cpu: 100m
|
|
env:
|
|
- name: ELASTICSEARCH_URL
|
|
value: http://elasticsearch-logging:9200
|
|
- name: SERVER_BASEPATH
|
|
value: /api/v1/namespaces/kube-system/services/kibana-logging/proxy
|
|
ports:
|
|
- containerPort: 5601
|
|
name: ui
|
|
protocol: TCP
|