diff --git a/chart/templates/tests/test-connection.yaml b/chart/templates/tests/test-connection.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..5ca4058fc45d388c350608ee0f6bee66e7be830b
--- /dev/null
+++ b/chart/templates/tests/test-connection.yaml
@@ -0,0 +1,15 @@
+apiVersion: v1
+kind: Pod
+metadata:
+  name: "{{ include "vs.fullname" . }}-test-connection"
+  labels:
+    {{- include "vs.labels" . | nindent 4 }}
+  annotations:
+    "helm.sh/hook": test-success
+spec:
+  containers:
+    - name: wget
+      image: busybox
+      command: ['wget']
+      args: ['{{ include "vs.fullname" . }}-renderer:{{ .Values.service.port }}']
+  restartPolicy: Never