Skip to content

Commit 2f6ffe9

Browse files
authored
Bump FIO version 1.4.0 (#927)
1 parent 3d46b57 commit 2f6ffe9

13 files changed

Lines changed: 27 additions & 24 deletions

build/Dockerfile.openshift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LABEL \
3434
com.redhat.component="openshift-file-integrity-operator-container" \
3535
io.openshift.maintainer.product="OpenShift Container Platform" \
3636
io.openshift.maintainer.component="File Integrity Operator" \
37-
version=1.3.6
37+
version=1.4.0
3838
# io.openshift.build.commit.id=98271bc2812881010146f47e4587dcd449b846bd \
3939
# io.openshift.build.source-location=https://github.com/openshift/file-integrity-operator.git \
4040
# io.openshift.build.commit.url=https://github.com/openshift/file-integrity-operator.git/commit/98271bc2812881010146f47e4587dcd449b846bd \

bundle.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=file-integrity-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
99
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10-
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.27.0
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.42.2
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
12-
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
12+
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
1313

1414
# Labels for testing.
1515
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1

bundle.openshift.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG FIO_OLD_VERSION="1.3.5"
2-
ARG FIO_NEW_VERSION="1.3.6"
1+
ARG FIO_OLD_VERSION="1.3.8"
2+
ARG FIO_NEW_VERSION="1.4.0"
33
ARG OPERATOR_IMAGE=""
44

55
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.25 as builder

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

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@ metadata:
1919
]
2020
capabilities: Seamless Upgrades
2121
categories: Monitoring,Security
22-
createdAt: "2026-01-12T12:08:39Z"
23-
olm.skipRange: '>=1.0.0 <1.3.6'
22+
createdAt: "2026-05-04T11:14:39Z"
23+
olm.skipRange: '>=1.0.0 <1.4.0'
2424
operatorframework.io/cluster-monitoring: "true"
2525
operatorframework.io/suggested-namespace: openshift-file-integrity
2626
operators.openshift.io/infrastructure-features: '["disconnected", "fips"]'
2727
operators.openshift.io/valid-subscription: '["OpenShift Kubernetes Engine", "OpenShift
2828
Container Platform", "OpenShift Platform Plus"]'
29-
operators.operatorframework.io/builder: operator-sdk-v1.27.0
30-
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
29+
operators.operatorframework.io/builder: operator-sdk-v1.42.2
30+
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
3131
repository: https://github.com/openshift/file-integrity-operator
3232
labels:
3333
operatorframework.io/arch.amd64: supported
3434
operatorframework.io/arch.ppc64le: supported
3535
operatorframework.io/arch.s390x: supported
3636
operatorframework.io/os.linux: supported
3737
operatorframework.io/os.zos: supported
38-
name: file-integrity-operator.v1.3.6
38+
name: file-integrity-operator.v1.4.0
3939
namespace: placeholder
4040
spec:
4141
apiservicedefinitions: {}
@@ -327,4 +327,5 @@ spec:
327327
relatedImages:
328328
- image: quay.io/file-integrity-operator/file-integrity-operator:latest
329329
name: operator
330-
version: 1.3.6
330+
version: 1.4.0
331+
replaces: file-integrity-operator.v1.3.8

bundle/manifests/fileintegrity.openshift.io_fileintegrities.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.15.0
5+
controller-gen.kubebuilder.io/version: v0.20.1
66
creationTimestamp: null
77
name: fileintegrities.fileintegrity.openshift.io
88
spec:
@@ -112,9 +112,10 @@ spec:
112112
operator:
113113
description: |-
114114
Operator represents a key's relationship to the value.
115-
Valid operators are Exists and Equal. Defaults to Equal.
115+
Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal.
116116
Exists is equivalent to wildcard for value, so that a pod can
117117
tolerate all taints of a particular category.
118+
Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators).
118119
type: string
119120
tolerationSeconds:
120121
description: |-

bundle/manifests/fileintegrity.openshift.io_fileintegritynodestatuses.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.15.0
5+
controller-gen.kubebuilder.io/version: v0.20.1
66
creationTimestamp: null
77
name: fileintegritynodestatuses.fileintegrity.openshift.io
88
spec:

bundle/metadata/annotations.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ annotations:
66
operators.operatorframework.io.bundle.package.v1: file-integrity-operator
77
operators.operatorframework.io.bundle.channels.v1: alpha
88
operators.operatorframework.io.bundle.channel.default.v1: alpha
9-
operators.operatorframework.io.metrics.builder: operator-sdk-v1.27.0
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.42.2
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
11-
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
11+
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v4
1212

1313
# Annotations for testing.
1414
operators.operatorframework.io.test.mediatype.v1: scorecard+v1

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.v1.3.6",
17-
"skipRange": ">=1.0.0 <1.3.6"
16+
"name": "file-integrity-operator.v1.4.0",
17+
"skipRange": ">=1.0.0 <1.4.0"
1818
}
1919
]
2020
}

config/crd/bases/fileintegrity.openshift.io_fileintegrities.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.15.0
6+
controller-gen.kubebuilder.io/version: v0.20.1
77
name: fileintegrities.fileintegrity.openshift.io
88
spec:
99
group: fileintegrity.openshift.io
@@ -112,9 +112,10 @@ spec:
112112
operator:
113113
description: |-
114114
Operator represents a key's relationship to the value.
115-
Valid operators are Exists and Equal. Defaults to Equal.
115+
Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal.
116116
Exists is equivalent to wildcard for value, so that a pod can
117117
tolerate all taints of a particular category.
118+
Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators).
118119
type: string
119120
tolerationSeconds:
120121
description: |-

config/crd/bases/fileintegrity.openshift.io_fileintegritynodestatuses.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.15.0
6+
controller-gen.kubebuilder.io/version: v0.20.1
77
name: fileintegritynodestatuses.fileintegrity.openshift.io
88
spec:
99
group: fileintegrity.openshift.io

0 commit comments

Comments
 (0)