Skip to content

Commit

Permalink
Release v0.1.31
Browse files Browse the repository at this point in the history
  • Loading branch information
rhmdnd committed Oct 17, 2022
1 parent 87e89e8 commit cf3bac7
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 10 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.31] - 2022-10-17
### Changes
- Use go-install to fetch kustomize
- make: Build a file-based catalog
- make: Remove unused variable
- Remove the OPM dependency
- Ignore generated setup files for end-to-end tests
- updates readme for default toleration change
- updates default tolerations to include infra nodes
- Generate bundle
- Fix controller metrics port
- e2e: Add PSP labels to test namespace
- bump vendor, include ginkgo/gomega
- Update PrometheusRule on operator startup
- e2e: Allow running from an existing deployment
- trivial: fix grammatical issue in README.md

## [Unreleased] - Date TBD

### Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.30'
olm.skipRange: '>=0.1.6 <0.1.31'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand All @@ -32,7 +32,7 @@ metadata:
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
operatorframework.io/os.zos: supported
name: file-integrity-operator.v0.1.30
name: file-integrity-operator.v0.1.31
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -96,7 +96,7 @@ spec:
value: file-integrity-operator
- name: RELATED_IMAGE_OPERATOR
value: quay.io/file-integrity-operator/file-integrity-operator:latest
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.30
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.31
imagePullPolicy: Always
name: file-integrity-operator
resources:
Expand Down Expand Up @@ -318,4 +318,4 @@ spec:
provider:
name: Red Hat
url: https://github.com/openshift/file-integrity-operator
version: 0.1.30
version: 0.1.31
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,11 @@ spec:
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/infra
operator: Exists
description: Specifies tolerations for custom taints. Defaults to
allowing scheduling on master nodes.
allowing scheduling on master and infra nodes.
items:
description: The pod this Toleration is attached to tolerates any
taint that matches the triple <key,value,effect> using the matching
Expand Down
4 changes: 2 additions & 2 deletions catalog/preamble.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"package": "file-integrity-operator",
"entries": [
{
"name": "file-integrity-operator.v0.1.30",
"skipRange": ">=0.1.6 <0.1.30"
"name": "file-integrity-operator.v0.1.31",
"skipRange": ">=0.1.6 <0.1.31"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
]
capabilities: Seamless Upgrades
categories: Monitoring,Security
olm.skipRange: '>=0.1.6 <0.1.30'
olm.skipRange: '>=0.1.6 <0.1.31'
operatorframework.io/cluster-monitoring: "true"
operatorframework.io/suggested-namespace: openshift-file-integrity
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
Expand Down
2 changes: 1 addition & 1 deletion version.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)

VERSION?=0.1.30
VERSION?=0.1.31
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.30"
Version = "0.1.31"
)

0 comments on commit cf3bac7

Please sign in to comment.