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 89c0fa6 commit ccf9453Copy full SHA for ccf9453
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
@@ -1084,6 +1084,10 @@ searcher:
1084
# -- Size of the PVC for searcher pods to store cache data
1085
storageSize: 26Gi
1086
1087
+sgTestConnection:
1088
+ # Run a connection test after instance startup, for CI/CD testing
1089
+ enabled: false
1090
+
1091
storageClass:
1092
# -- Enable creation of storageClass.
1093
# Disable if you have your own existing storage class
0 commit comments