I am running a kubernetes based drone setup and am working on integrating with the drone-vault plugin. I have created a very simple helm chart that deploys drone-vault with the following probes
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
Warning Unhealthy 25m (x7 over 26m) kubelet Readiness probe failed: HTTP probe failed with statuscode: 400
Warning Unhealthy 25m (x7 over 26m) kubelet Liveness probe failed: HTTP probe failed with statuscode: 400
I have read in other posts that the drone-vault api is protected and can only be accessed via the drone cli. Are there any recommendations on how to handle a liveness probe such as this?
Thanks!