We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba5519 commit 1476e13Copy full SHA for 1476e13
helm/metadig-solr/install-metadig-solr.sh
@@ -5,6 +5,6 @@
5
#helm repo add bitnami https://charts.bitnami.com/bitnami
6
7
helm upgrade metadig-solr bitnami/solr \
8
- --version=9.6.8 \
+ --version=9.5.5 \
9
--namespace metadig \
10
-f solr-values.yaml
helm/metadig-solr/solr-values.yaml
@@ -27,6 +27,19 @@ service:
27
type: ClusterIP
28
externalTrafficPolicy: Cluster
29
30
+customReadinessProbe:
31
+ exec:
32
+ command:
33
+ - bash
34
+ - -ec
35
+ - >
36
+ curl --silent --connect-timeout 15 http://localhost:${SOLR_PORT_NUMBER}/solr/admin/info/system | grep --quiet '"status":0'
37
+ initialDelaySeconds: 60
38
+ periodSeconds: 10
39
+ timeoutSeconds: 15
40
+ successThreshold: 1
41
+ failureThreshold: 6
42
+
43
ingress:
44
enabled: false
45
tls: false
0 commit comments