summaryrefslogtreecommitdiff
path: root/contrib/k8s-emc/kibana-deploy.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-07-31 03:52:05 +0200
committerChristian Pointner <equinox@spreadspace.org>2021-07-31 03:52:05 +0200
commitcb7259fa199482ea681833acf4d2848b85a48eea (patch)
tree567671a732958621a971f43f1418f3ed237f35a8 /contrib/k8s-emc/kibana-deploy.yml
parentadd new node to lw cluster (diff)
move some old stuff into graveyard
Diffstat (limited to 'contrib/k8s-emc/kibana-deploy.yml')
-rw-r--r--contrib/k8s-emc/kibana-deploy.yml48
1 files changed, 0 insertions, 48 deletions
diff --git a/contrib/k8s-emc/kibana-deploy.yml b/contrib/k8s-emc/kibana-deploy.yml
deleted file mode 100644
index eabb003..0000000
--- a/contrib/k8s-emc/kibana-deploy.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- namespace: emc
- name: stats-kibana
- labels:
- app: kibana
- tier: stats
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: kibana
- tier: stats
- strategy:
- type: Recreate
- revisionHistoryLimit: 5
- template:
- metadata:
- labels:
- app: kibana
- tier: stats
- spec:
- nodeName: emc-stats
- securityContext:
- runAsUser: 998
- fsGroup: 998
- containers:
- - name: kibana
- image: docker.elastic.co/kibana/kibana-oss:6.2.1
- imagePullPolicy: Always
- resources:
- limits:
- memory: 3072Mi
- requests:
- memory: 2048Mi
- env:
- - name: ELASTICSEARCH_URL
- value: http://stats-es:9200/
- - name: SERVER_BASEPATH
- value: "/kibana"
- volumeMounts:
- - name: optimize
- mountPath: /usr/share/kibana/optimize
- volumes:
- - name: optimize
- emptyDir:
- medium: Memory