Bug 1506713
Summary: | Update parameter types are not properly passed out on the /v2/catalog API | ||
---|---|---|---|
Product: | OpenShift Container Platform | Reporter: | Jason Montleon <jmontleo> |
Component: | Service Broker | Assignee: | Jason Montleon <jmontleo> |
Status: | CLOSED ERRATA | QA Contact: | Weihua Meng <wmeng> |
Severity: | unspecified | Docs Contact: | |
Priority: | unspecified | ||
Version: | 3.7.0 | CC: | aos-bugs, jmontleo, qixuan.wang, wmeng |
Target Milestone: | --- | ||
Target Release: | 3.7.0 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | No Doc Update | |
Doc Text: |
undefined
|
Story Points: | --- |
Clone Of: | Environment: | ||
Last Closed: | 2017-11-28 22:19:38 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
Jason Montleon
2017-10-26 15:42:39 UTC
Not in latest image openshift3/ose-ansible-service-broker/images/v3.7.0-0.185.0.0 will check it later. "update": { "parameters": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "properties": { "postgresql_version": { "default": "9.5", "title": "PostgreSQL Version", "type": "string" } }, "required": [ "postgresql_version" ], "type": "object" } } Can you recheck this with v3.7.0-0.189.0.0? Not in ansible-service-broker-1.0.13-1.el7.x86_64 openshift3/ose-ansible-service-broker:v3.7.0-0.189.0.0 "update": { "parameters": { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "properties": { "postgresql_version": { "default": "9.5", "enum": [ "9.5", "9.4" ], "title": "PostgreSQL Version", "type": "string" } }, "required": [ "postgresql_version" ], "type": "object" } } "enum": [ "9.5", "9.4" ], means it is fixed, right? Correct Fixed in ansible-service-broker-1.0.13-1.el7.x86_64 openshift3/ose-ansible-service-broker:v3.7.0-0.189.0.0 Thanks, Jason 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, 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-2017:3188 |