Skip to content

Commit

Permalink
Release v0.1.39
Browse files Browse the repository at this point in the history
  • Loading branch information
JAORMX committed Aug 23, 2021
1 parent d3a3f05 commit 256a325
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.39] - 2021-08-23
### Changes
- Allow profileparser to parse PCI-DSS references
- Add permission for operator to remediate prometheusrule objects
- Print Compliance Operator version on startup
- Update wording in TailoredProfile CRD

## [0.1.38] - 2021-08-11
### Changes
- e2e: aggregating/NA metric value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,13 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.17 <0.1.38'
olm.skipRange: '>=0.1.17 <0.1.39'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-compliance
operators.openshift.io/infrastructure-features: '["disconnected", "fips", "proxy-aware"]'
repository: https://github.com/openshift/compliance-operator
support: Red Hat Inc.
name: compliance-operator.v0.1.38
name: compliance-operator.v0.1.39
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -270,6 +270,17 @@ spec:
- watch
- update
- patch
- apiGroups:
- monitoring.coreos.com
resources:
- prometheusrules
verbs:
- get
- list
- watch
- update
- create
- patch
- apiGroups:
- templates.gatekeeper.sh
resources:
Expand Down Expand Up @@ -1130,10 +1141,10 @@ spec:
- name: RELATED_IMAGE_OPENSCAP
value: quay.io/compliance-operator/openscap-ocp:1.3.4
- name: RELATED_IMAGE_OPERATOR
value: quay.io/compliance-operator/compliance-operator:0.1.38
value: quay.io/compliance-operator/compliance-operator:0.1.39
- name: RELATED_IMAGE_PROFILE
value: quay.io/complianceascode/ocp4:latest
image: quay.io/compliance-operator/compliance-operator:0.1.38
image: quay.io/compliance-operator/compliance-operator:0.1.39
imagePullPolicy: Always
name: compliance-operator
resources:
Expand Down Expand Up @@ -1470,4 +1481,4 @@ spec:
provider:
name: Red Hat Inc.
url: www.redhat.com
version: 0.1.38
version: 0.1.39
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ spec:
description: Rationale of why this value is being tailored
type: string
value:
description: Rationale of why this value is being tailored
description: Value of the variable being set
type: string
required:
- name
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.1.38"
Version = "0.1.39"
)

0 comments on commit 256a325

Please sign in to comment.