Skip to content

Commit cf3bac7

Browse files
committed
Release v0.1.31
1 parent 87e89e8 commit cf3bac7

File tree

7 files changed

+30
-10
lines changed

7 files changed

+30
-10
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic
66
Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.31] - 2022-10-17
9+
### Changes
10+
- Use go-install to fetch kustomize
11+
- make: Build a file-based catalog
12+
- make: Remove unused variable
13+
- Remove the OPM dependency
14+
- Ignore generated setup files for end-to-end tests
15+
- updates readme for default toleration change
16+
- updates default tolerations to include infra nodes
17+
- Generate bundle
18+
- Fix controller metrics port
19+
- e2e: Add PSP labels to test namespace
20+
- bump vendor, include ginkgo/gomega
21+
- Update PrometheusRule on operator startup
22+
- e2e: Allow running from an existing deployment
23+
- trivial: fix grammatical issue in README.md
24+
825
## [Unreleased] - Date TBD
926

1027
### Changes

bundle/manifests/file-integrity-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
]
2020
capabilities: Seamless Upgrades
2121
categories: Monitoring,Security
22-
olm.skipRange: '>=0.1.6 <0.1.30'
22+
olm.skipRange: '>=0.1.6 <0.1.31'
2323
operatorframework.io/cluster-monitoring: "true"
2424
operatorframework.io/suggested-namespace: openshift-file-integrity
2525
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
@@ -32,7 +32,7 @@ metadata:
3232
operatorframework.io/arch.s390x: supported
3333
operatorframework.io/os.linux: supported
3434
operatorframework.io/os.zos: supported
35-
name: file-integrity-operator.v0.1.30
35+
name: file-integrity-operator.v0.1.31
3636
namespace: placeholder
3737
spec:
3838
apiservicedefinitions: {}
@@ -96,7 +96,7 @@ spec:
9696
value: file-integrity-operator
9797
- name: RELATED_IMAGE_OPERATOR
9898
value: quay.io/file-integrity-operator/file-integrity-operator:latest
99-
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.30
99+
image: quay.io/file-integrity-operator/file-integrity-operator:0.1.31
100100
imagePullPolicy: Always
101101
name: file-integrity-operator
102102
resources:
@@ -318,4 +318,4 @@ spec:
318318
provider:
319319
name: Red Hat
320320
url: https://github.com/openshift/file-integrity-operator
321-
version: 0.1.30
321+
version: 0.1.31

bundle/manifests/fileintegrity.openshift.io_fileintegrities.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,11 @@ spec:
7373
- effect: NoSchedule
7474
key: node-role.kubernetes.io/master
7575
operator: Exists
76+
- effect: NoSchedule
77+
key: node-role.kubernetes.io/infra
78+
operator: Exists
7679
description: Specifies tolerations for custom taints. Defaults to
77-
allowing scheduling on master nodes.
80+
allowing scheduling on master and infra nodes.
7881
items:
7982
description: The pod this Toleration is attached to tolerates any
8083
taint that matches the triple <key,value,effect> using the matching

catalog/preamble.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"package": "file-integrity-operator",
1414
"entries": [
1515
{
16-
"name": "file-integrity-operator.v0.1.30",
17-
"skipRange": ">=0.1.6 <0.1.30"
16+
"name": "file-integrity-operator.v0.1.31",
17+
"skipRange": ">=0.1.6 <0.1.31"
1818
}
1919
]
2020
}

config/manifests/bases/file-integrity-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ metadata:
1919
]
2020
capabilities: Seamless Upgrades
2121
categories: Monitoring,Security
22-
olm.skipRange: '>=0.1.6 <0.1.30'
22+
olm.skipRange: '>=0.1.6 <0.1.31'
2323
operatorframework.io/cluster-monitoring: "true"
2424
operatorframework.io/suggested-namespace: openshift-file-integrity
2525
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'

version.Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
33
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
44

5-
VERSION?=0.1.30
5+
VERSION?=0.1.31

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package version
22

33
var (
4-
Version = "0.1.30"
4+
Version = "0.1.31"
55
)

0 commit comments

Comments
 (0)