Hide Forgot
Description of problem: When dc/pod/rc specifies probe like: readinessProbe: httpGet: path: /healthz port: 8080 In pod template page, the path is only shown as "/". Version-Release number of selected component (if applicable): fork_ami_openshift3_userinterface_console_1.3_210 How reproducible: Always Steps to Reproduce: 1. oc login, create project 2. Create dc: $ oc new-app openshift/hello-openshift --name app-dc 3. On web console deployment page, click "Actions" --> "Edit Health Checks" --> "Add Readiness Probe", choose "HTTP" type, input "/healthz" in "Path", then "Save" 4. Turn to deployment page, check "Readiness Probe" in "Template" part. Actual results: 4. It displays: Readiness Probe: GET / on port 8080 1s timeout. (Check dc yaml, the path is already updated to "/healthz") Expected results: 4. Should display the path: ... GET /healthz ... Additional info:
https://github.com/jwforres/origin/pull/46
(In reply to Samuel Padgett from comment #1) > https://github.com/jwforres/origin/pull/46 This has since merged to origin/master.
Verified in openshift v1.3.0-alpha.0-418-g38b0157. The path is shown in dc page and pod page now.