Skip to content

Commit

Permalink
Merge pull request #597 from tchughesiv/RHPAM-3471
Browse files Browse the repository at this point in the history
[RHPAM-3471] remove offending label & increment csv version
  • Loading branch information
openshift-merge-robot authored Feb 18, 2021
2 parents 4fba75e + 5c8aecd commit 1e51dac
Show file tree
Hide file tree
Showing 11 changed files with 1,407 additions and 3 deletions.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deploy/olm-catalog/dev/7.10.0-2/manifests/kieapp.crd.yaml
10 changes: 10 additions & 0 deletions deploy/olm-catalog/dev/7.10.0-2/metadata/annotations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
annotations:
operators.operatorframework.io.bundle.channel.default.v1: stable
operators.operatorframework.io.bundle.channels.v1: stable
operators.operatorframework.io.bundle.manifests.v1: manifests/
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: businessautomation-operator
operators.operatorframework.io.metrics.builder: operator-sdk-v0.19.2
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deploy/olm-catalog/prod/7.10.0-2/manifests/kieapp.crd.yaml
10 changes: 10 additions & 0 deletions deploy/olm-catalog/prod/7.10.0-2/metadata/annotations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
annotations:
operators.operatorframework.io.bundle.channel.default.v1: stable
operators.operatorframework.io.bundle.channels.v1: stable
operators.operatorframework.io.bundle.manifests.v1: manifests/
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: businessautomation-operator
operators.operatorframework.io.metrics.builder: operator-sdk-v0.19.2
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions deploy/olm-catalog/test/7.10.0-2/manifests/kieapp.crd.yaml
10 changes: 10 additions & 0 deletions deploy/olm-catalog/test/7.10.0-2/metadata/annotations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
annotations:
operators.operatorframework.io.bundle.channel.default.v1: stable
operators.operatorframework.io.bundle.channels.v1: stable
operators.operatorframework.io.bundle.manifests.v1: manifests/
operators.operatorframework.io.bundle.mediatype.v1: registry+v1
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: businessautomation-operator
operators.operatorframework.io.metrics.builder: operator-sdk-v0.19.2
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go
2 changes: 1 addition & 1 deletion pkg/controller/kieapp/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ func setLabels(cr *api.KieApp, labels map[string]string, subcomponent string, su
labels[constants.LabelRHproductName] = constants.ProductName
labels[constants.LabelRHproductVersion] = cr.Status.Applied.Version
labels[constants.LabelRHcomponentName] = "PAM"
labels[constants.LabelRHsubcomponentName] = subcomponent
// labels[constants.LabelRHsubcomponentName] = subcomponent
labels[constants.LabelRHcomponentVersion] = cr.Status.Applied.Version
labels[constants.LabelRHsubcomponentType] = subcomponentType
labels[constants.LabelRHcompany] = "Red_Hat"
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ var (
// Version - current version
Version = constants.CurrentVersion
// CsvVersion - csv release
CsvVersion = Version + "-1"
CsvVersion = Version + "-2"
// PriorVersion - prior version
PriorVersion = constants.PriorVersion1
// CsvPriorVersion - prior csv release
CsvPriorVersion = PriorVersion + "-1"
CsvPriorVersion = Version + "-1"
)

0 comments on commit 1e51dac

Please sign in to comment.