Skip to content
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

[KIECLOUD-422] move admin user/pwd to statusDescriptors #508

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
categories: Integration & Delivery
certified: "false"
containerImage: quay.io/kiegroup/kie-cloud-operator:7.9.0
createdAt: "2020-09-22 11:50:50"
createdAt: "2020-09-25 15:05:21"
description: Deploys and manages Red Hat Process Automation Manager and Red Hat Decision Manager environments.
operators.openshift.io/infrastructure-features: '["Disconnected"]'
repository: https://github.com/kiegroup/kie-cloud-operator
Expand All @@ -17,7 +17,7 @@ metadata:
operator-businessautomation: "true"
operatorframework.io/arch.amd64: supported
operatorframework.io/os.linux: supported
name: businessautomation-operator.7.9.0-dev-x7zlgfdt6r
name: businessautomation-operator.7.9.0-dev-p9f5jmzdd2
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -83,6 +83,16 @@ spec:
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The admin user for BC console.
displayName: Business/Decision Central Admin User
path: applied.commonConfig.adminUser
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:password
- description: The admin password for BC console.
displayName: Business/Decision Central Admin Password
path: applied.commonConfig.adminPassword
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:password
- description: Product version installed.
displayName: Version
path: version
Expand Down Expand Up @@ -444,7 +454,7 @@ spec:
- operator
labels:
alm-owner-businessautomation: businessautomation-operator
operated-by: businessautomation-operator.7.9.0-dev-x7zlgfdt6r
operated-by: businessautomation-operator.7.9.0-dev-p9f5jmzdd2
links:
- name: Product Page
url: https://access.redhat.com/products/red-hat-process-automation-manager
Expand Down Expand Up @@ -547,5 +557,5 @@ spec:
selector:
matchLabels:
alm-owner-businessautomation: businessautomation-operator
operated-by: businessautomation-operator.7.9.0-dev-x7zlgfdt6r
version: 7.9.0+x7zlgfdt6r
operated-by: businessautomation-operator.7.9.0-dev-p9f5jmzdd2
version: 7.9.0+p9f5jmzdd2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
categories: Integration & Delivery
certified: "true"
containerImage: registry.redhat.io/rhpam-7/rhpam-rhel8-operator:7.9.0
createdAt: "2020-09-22 11:50:50"
createdAt: "2020-09-25 15:05:21"
description: Deploys and manages Red Hat Process Automation Manager and Red Hat Decision Manager environments.
operators.openshift.io/infrastructure-features: '["Disconnected"]'
repository: https://github.com/kiegroup/kie-cloud-operator
Expand Down Expand Up @@ -83,6 +83,16 @@ spec:
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:label
statusDescriptors:
- description: The admin user for BC console.
displayName: Business/Decision Central Admin User
path: applied.commonConfig.adminUser
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:password
- description: The admin password for BC console.
displayName: Business/Decision Central Admin Password
path: applied.commonConfig.adminPassword
x-descriptors:
- urn:alm:descriptor:com.tectonic.ui:password
- description: Product version installed.
displayName: Version
path: version
Expand Down
3 changes: 1 addition & 2 deletions image-bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ labels:
- name: com.redhat.delivery.operator.bundle
value: "true"
- name: com.redhat.openshift.versions
# change to this label for 7.9.1+ releases ?? # value: v4.6
value: v4.5,v4.6
value: v4.7
modules:
repositories:
- path: deploy/olm-catalog/prod
Expand Down
12 changes: 12 additions & 0 deletions tools/csv-gen/csv-gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,18 @@ func main() {
},
},
StatusDescriptors: []csvv1.StatusDescriptor{
{
Description: "The admin user for BC console.",
DisplayName: "Business/Decision Central Admin User",
Path: "applied.commonConfig.adminUser",
XDescriptors: []string{"urn:alm:descriptor:com.tectonic.ui:password"},
},
{
Description: "The admin password for BC console.",
DisplayName: "Business/Decision Central Admin Password",
Path: "applied.commonConfig.adminPassword",
XDescriptors: []string{"urn:alm:descriptor:com.tectonic.ui:password"},
},
{
Description: "Product version installed.",
DisplayName: "Version",
Expand Down