Bug 2074243
Summary: | DefaultPlacement API allow empty enum value and remove default | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Omer Tuchfeld <otuchfel> |
Component: | Networking | Assignee: | aos-network-edge-staff <aos-network-edge-staff> |
Networking sub component: | router | QA Contact: | Hongan Li <hongli> |
Status: | CLOSED ERRATA | Docs Contact: | |
Severity: | medium | ||
Priority: | medium | CC: | aos-bugs, mmasters, wking |
Version: | 4.11 | ||
Target Milestone: | --- | ||
Target Release: | 4.11.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | No Doc Update | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2022-08-10 11:05:57 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
Omer Tuchfeld
2022-04-11 21:03:18 UTC
No docs update because the issue was introduced and will be fixed in the same release. verified with 4.11.0-0.nightly-2022-04-21-192140 and `DefaultPlacement` field can be updated to empty by api access. # fresh installed cluster $ oc get ingress.config cluster -ojson | jq '.status' { ---<snip>--- "defaultPlacement": "Workers" } # update the status by api access curl -k -X PUT "$APISERVER/apis/config.openshift.io/v1/ingresses/cluster/status/" \ -d $WITH_STATUS \ --header "Authorization: Bearer $TOKEN" \ --header "Content-Type: application/json" $ oc get ingress.config cluster -ojson | jq '.status' { ---<snip>--- "defaultPlacement": "" } Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: OpenShift Container Platform 4.11.0 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:5069 |