-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Startup probe errored: strconv.Atoi: parsing "http": invalid syntax #63
Comments
Just from reading the template it looks like the named port |
For which value do you want me to specify startupProbe:
enabled: true
httpGet:
path: /status.php
port: 80
httpHeaders:
- name: Host
value: ... doesn't override the values from the template |
It is because the startup probe is not checking for .Values.nginx.enabled like the readiness probe. Thereby the kubelet can't find a port named "http" and then kubelet tries to parse the string as an integer which fails. The if-statement around the startupProbe should look something like this:
|
1afd7dd fixed this issue but it would be nice to have Startup Probes even if using nginx. Closing this issue anyway |
Startup probe doesn't work for me.
Could be because of this line, which looks similar to this issue.
The text was updated successfully, but these errors were encountered: