Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

ARG BASEIMAGE
ARG GOIMAGE
ARG VERSION="1.11.0"
ARG VERSION="1.11.1"

FROM $GOIMAGE as builder
ARG VERSION
Expand All @@ -35,7 +35,7 @@ LABEL vendor="Dell Technologies" \
name="dell-csm-operator" \
summary="Operator for installing Dell CSI Drivers and Dell CSM Modules" \
description="Common Operator for installing various Dell CSI Drivers and Dell CSM Modules" \
release="1.16.0" \
release="1.16.1" \
version=$VERSION \
license="Dell CSM Operator Apache License"

Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Copyright © 2026 Dell Inc. or its subsidiaries. All Rights Reserved.
#
# Dell Technologies, Dell and other trademarks are trademarks of Dell Inc.
# or its subsidiaries. Other trademarks may be trademarks of their respective
# or its subsidiaries. Other trademarks may be trademarks of their respective
# owners.

include images.mk

# Defaults for channels used in the bundle
CHANNELS ?= stable
DEFAULT_CHANNEL ?= stable

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
# To re-generate a bundle for other specific channels without changing the standard setup, you can:
Expand Down
20 changes: 10 additions & 10 deletions PROJECT
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
domain: dell.com
layout:
- go.kubebuilder.io/v3
- go.kubebuilder.io/v4
plugins:
manifests.sdk.operatorframework.io/v2: {}
scorecard.sdk.operatorframework.io/v2: {}
projectName: dell-csm-operator
repo: github.com/dell/csm-operator
resources:
- api:
crdVersion: v1
namespaced: true
controller: true
domain: dell.com
group: storage
kind: ContainerStorageModule
path: github.com/dell/csm-operator/api/v1
version: v1
- api:
crdVersion: v1
namespaced: true
controller: true
domain: dell.com
group: storage
kind: ContainerStorageModule
path: github.com/dell/csm-operator/api/v1
version: v1
version: "3"
5 changes: 3 additions & 2 deletions bundle.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
ARG BASEIMAGE

FROM $BASEIMAGE as final

# Core bundle labels.
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=dell-csm-operator
LABEL operators.operatorframework.io.bundle.channels.v1=stable
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.42.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4

# Labels for testing.
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
Expand Down
Loading
Loading