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 84ea4b2 commit 158c2baCopy full SHA for 158c2ba
charts/sourcegraph/templates/tests/test-connection.yaml
@@ -1,3 +1,4 @@
1
+{{- if .Values.sgTestConnection.enabled -}}
2
apiVersion: v1
3
kind: Pod
4
metadata:
@@ -12,4 +13,5 @@ spec:
12
13
image: busybox
14
command: ['wget']
15
args: ['sourcegraph-frontend:30080/']
- restartPolicy: Never
16
+ restartPolicy: Never
17
+{{- end }}
charts/sourcegraph/values.yaml
@@ -1076,6 +1076,10 @@ searcher:
1076
# -- Size of the PVC for searcher pods to store cache data
1077
storageSize: 26Gi
1078
1079
+sgTestConnection:
1080
+ # Run a connection test after instance startup, for CI/CD testing
1081
+ enabled: false
1082
+
1083
storageClass:
1084
# -- Enable creation of storageClass.
1085
# Disable if you have your own existing storage class
0 commit comments