From 23270fecc376501fbd9ac304e099f5110f2d2c27 Mon Sep 17 00:00:00 2001 From: Ben Sooraj Date: Thu, 10 Oct 2019 21:53:37 +0530 Subject: [PATCH] k8s example: updated elasticsearch's image tag from the default 'latest' to '7.4.0' To fix the ImagePullBackOff error Fixes #3401 --- extras/example/k8s/elasticsearch-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/example/k8s/elasticsearch-deployment.yaml b/extras/example/k8s/elasticsearch-deployment.yaml index bb0474d85..0f6c2b27a 100644 --- a/extras/example/k8s/elasticsearch-deployment.yaml +++ b/extras/example/k8s/elasticsearch-deployment.yaml @@ -14,7 +14,7 @@ spec: spec: containers: - name: elasticsearch - image: elasticsearch + image: elasticsearch:7.4.0 imagePullPolicy: IfNotPresent ports: - containerPort: 9200