Skip to content

Commit

Permalink
Add support for Kubernetes v1.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rensyct committed Aug 18, 2023
1 parent 93499b0 commit 69a71a6
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ For any CSM Operator and driver issues, questions or feedback, join the [Dell Te
## Supported Platforms
Dell Container Storage Modules Operator has been tested and qualified with

* Upstream Kubernetes cluster v1.25, v1.26, v1.27
* OpenShift Clusters 4.11, 4.12 with RHEL 8.x & RHCOS worker nodes
* Upstream Kubernetes cluster v1.26, v1.27, v1.28
* OpenShift Clusters 4.12, 4.13 with RHEL 8.x & RHCOS worker nodes

## Installation

Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
# Labels for testing.
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
LABEL com.redhat.openshift.versions=v4.11-v4.12
LABEL com.redhat.openshift.versions=v4.12-v4.13
LABEL com.redhat.delivery.backport=false
LABEL com.redhat.delivery.operator.bundle=true

Expand Down
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ annotations:
operators.operatorframework.io.test.config.v1: tests/scorecard/

# Annotations to specify supported OCP versions.
com.redhat.openshift.versions: v4.11-v4.12
com.redhat.openshift.versions: v4.12-v4.13
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const (
// K8sMinimumSupportedVersion is the minimum supported version for k8s
K8sMinimumSupportedVersion = "1.21"
// K8sMaximumSupportedVersion is the maximum supported version for k8s
K8sMaximumSupportedVersion = "1.27"
K8sMaximumSupportedVersion = "1.28"
)

var (
Expand Down
30 changes: 30 additions & 0 deletions operatorconfig/driverconfig/common/k8s-1.28-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# IT IS RECOMMENDED YOU DO NOT CHANGE THE IMAGES TO BE DOWNLOADED.
images:
# "images.attacher" defines the container images used for the csi attacher
# container.
attacher: registry.k8s.io/sig-storage/csi-attacher:v4.3.0

# "images.provisioner" defines the container images used for the csi provisioner
# container.
provisioner: registry.k8s.io/sig-storage/csi-provisioner:v3.5.0

# "images.snapshotter" defines the container image used for the csi snapshotter
snapshotter: registry.k8s.io/sig-storage/csi-snapshotter:v6.2.2

# "images.registrar" defines the container images used for the csi registrar
# container.
registrar: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.8.0

# "images.resizer" defines the container images used for the csi resizer
# container.
resizer: registry.k8s.io/sig-storage/csi-resizer:v1.8.0

# "images.externalhealthmonitorcontroller" defines the container images used for the csi external health monitor controller
# container.
externalhealthmonitorcontroller: registry.k8s.io/sig-storage/csi-external-health-monitor-controller:v0.9.0

# "images.sdcmonitor" defines the container images used to monitor sdc container
sdcmonitor: dellemc/sdc:3.6.1

#"images.metadataretriever" defines the container images used for csi metadata retriever
metadataretriever: dellemc/csi-metadata-retriever:v1.4.0

0 comments on commit 69a71a6

Please sign in to comment.