tests.yaml 551 B

123456789101112131415161718192021222324
  1. kind: Job
  2. apiVersion: batch/v1
  3. metadata:
  4. name: ci-tests
  5. spec:
  6. backoffLimit: 0
  7. template:
  8. spec:
  9. restartPolicy: Never
  10. containers:
  11. - name: ci-tests
  12. image: tests-image
  13. command:
  14. - /bin/sh
  15. - -c
  16. - "sh /app/testing/allTests.sh && touch /app/testing/success"
  17. readinessProbe:
  18. exec:
  19. command:
  20. - test
  21. - -e
  22. - "/app/testing/success"
  23. initialDelaySeconds: 5
  24. periodSeconds: 5