-
Kubernetes Submit Queue authored
Automatic merge from submit-queue update port validation message Related Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1355703#c2 Port validation that results in a multi-line message: ``` * spec.template.spec.containers[0].livenessProbe.httpGet.port: Invalid value: "": must contain only alpha-numeric characters (a-z, 0-9), and hyphens (-) * spec.template.spec.containers[0].livenessProbe.httpGet.port: Invalid value: "": must contain at least one letter (a-z) ``` suggests that ports can only be at minimum one letter. Per [this bugzilla comment](https://bugzilla.redhat.com/show_bug.cgi?id=1355703#c2), this patch updates the second bullet point on the error message to be clearer: ``` * spec.template.spec.containers[0].livenessProbe.httpGet.port: Invalid value: "": must contain only alpha-numeric characters (a-z, 0-9), and hyphens (-) * spec.template.spec.containers[0].livenessProbe.httpGet.port: Invalid value: "": must contain at least one letter or number (a-z, 0-9) ``` **Release note**: ```release-note release-note-none ```
a96f0282