Hello!
After converting my Kubernetes configs into Short format I noticed that my container with a Rails web app started failing liveness/readiness checks. Quick investigation revealed that the problem is default value of host in httpGet.
Here is the probe part of the original Kubernetes config:
livenessProbe:
httpGet:
path: /status/online
port: 3000
When run through Short, it translates into this:
liveness_probe:
net:
url: HTTP://localhost:3000/status/online
Which in turn (when translated back into Kubernetes format) translates into this:
livenessProbe:
httpGet:
host: localhost
path: /status/online
port: 3000
scheme: HTTP
So, Short adds explicit param host which defaults to localhost. However, Kubernetes documentation on probes states that the host param in httpGet defaults to pod's internal IP. So when liveness probe tries to access localhost instead of pod's IP, the probe fails.