synapsecns/sanguine

View on GitHub
charts/agents/templates/tests/test-connection.yaml

Summary

Maintainability
Test Coverage
apiVersion: v1
kind: Pod
metadata:
  name: "{{ include "agents.fullname" . }}-test-connection"
  labels:
    {{- include "agents.labels" . | nindent 4 }}
  annotations:
    "helm.sh/hook": test
spec:
  containers:
    - name: wget
      image: busybox
      command: ['wget']
      args: ['{{ include "agents.fullname" . }}:{{ .Values.service.port }}/health-check']
  restartPolicy: Never