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
21 changes: 21 additions & 0 deletions packs/dell-csm-operator-1.11.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Description
Dell Technologies Container Storage Modules (CSM) Operator is an open-source Kubernetes operator which can be used to install and manage various CSI Drivers and CSM Modules.

CSI capabilities per driver can be found [here](https://dell.github.io/csm-docs/docs/csidriver/)
Supported components can be found [here](https://dell.github.io/csm-docs/docs/deployment/csmoperator/#supported-csm-components)


# Kubernetes versions supported:
Above 1.26

# Constraints:
Support for PowerFlex, PowerMax, PowerStore and PowerScale is available.
Support for UnityXT is not available at this time.

Please see [here](https://dell.github.io/csm-docs/docs/deployment/csmoperator/drivers/) for installation prereqs. For PowerFlex, PowerMax and PowerStore you typically need to install either the ScaleIO driver (PowerFlex) and/or Multipath, as well as iSCSI packages if iSCSI is used. The Dell page linked above contains information on these prereqs, which will need to be added to the OS layer in the cluster profile.

# Cloud types supported:
This pack was designed to be used with clusters on Canonical MAAS

# References:
- https://github.com/dell/csm-operator
Binary file not shown.
23 changes: 23 additions & 0 deletions packs/dell-csm-operator-1.11.0/charts/csm-operator/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
23 changes: 23 additions & 0 deletions packs/dell-csm-operator-1.11.0/charts/csm-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
apiVersion: v2
name: csm-operator
description: Installs Dell CSM Operator
# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.11.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.11.0"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{{- if eq .Values.csm.type "powermax" }}
apiVersion: cert-manager.io/v1
kind: Issuer
metadata:
name: selfsigned-issuer
namespace: {{ .Values.csm.namespace }}
spec:
selfSigned: {}
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: csirevproxy-tls-cert
namespace: {{ .Values.csm.namespace }}
spec:
secretName: csirevproxy-tls-secret
commonName: csipowermax-reverseproxy
duration: 2160h # 90d
renewBefore: 360h # 15d
subject:
organizations:
- dellemc
isCA: false
privateKey:
algorithm: RSA
encoding: PKCS1
size: 2048
usages:
- server auth
- client auth
dnsNames:
- csipowermax-reverseproxy
- csipowermax-reverseproxy.powermax.svc.cluster.local
- reverseproxy
ipAddresses:
- 0.0.0.0
issuerRef:
name: selfsigned-issuer
kind: Issuer
group: cert-manager.io
{{- end }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
apiVersion: storage.dell.com/v1
kind: ContainerStorageModule
metadata:
{{- if eq .Values.csm.type "powerflex" }}
name: vxflexos
{{- else if eq .Values.csm.type "powermax" }}
name: powermax
{{- else if eq .Values.csm.type "powerstore" }}
name: powerstore
{{- else if eq .Values.csm.type "isilon" }}
name: isilon
{{- end }}
namespace: {{ .Values.csm.namespace }}
spec:
version: v1.16.0
driver: {{ .Values.csm.config.driver | toYaml | nindent 4 }}
modules: {{ .Values.csm.config.modules | toYaml | nindent 4 }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apiVersion: v1
kind: Namespace
metadata:
labels:
kubernetes.io/metadata.name: {{ .Values.namespace }}
pod-security.kubernetes.io/audit: privileged
pod-security.kubernetes.io/enforce: privileged
pod-security.kubernetes.io/enforce-version: latest
pod-security.kubernetes.io/warn: privileged
name: {{ .Values.namespace }}
---
apiVersion: v1
kind: Namespace
metadata:
labels:
kubernetes.io/metadata.name: {{ .Values.csm.namespace }}
pod-security.kubernetes.io/audit: privileged
pod-security.kubernetes.io/enforce: privileged
pod-security.kubernetes.io/enforce-version: latest
pod-security.kubernetes.io/warn: privileged
name: {{ .Values.csm.namespace }}
Loading
Loading