Skip to content

Commit f1dc87e

Browse files
authored
Merge branch 'main' into crossplane-2.0.2
2 parents 09d1ebb + d739bc1 commit f1dc87e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+19415
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Description
2+
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.
3+
4+
CSI capabilities per driver can be found [here](https://dell.github.io/csm-docs/docs/csidriver/)
5+
Supported components can be found [here](https://dell.github.io/csm-docs/docs/deployment/csmoperator/#supported-csm-components)
6+
7+
8+
# Kubernetes versions supported:
9+
Above 1.26
10+
11+
# Constraints:
12+
Support for PowerFlex, PowerMax, PowerStore and PowerScale is available.
13+
Support for UnityXT is not available at this time.
14+
15+
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.
16+
17+
# Cloud types supported:
18+
This pack was designed to be used with clusters on Canonical MAAS
19+
20+
# References:
21+
- https://github.com/dell/csm-operator
32.6 KB
Binary file not shown.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apiVersion: v2
2+
name: csm-operator
3+
description: Installs Dell CSM Operator
4+
# A chart can be either an 'application' or a 'library' chart.
5+
#
6+
# Application charts are a collection of templates that can be packaged into versioned archives
7+
# to be deployed.
8+
#
9+
# Library charts provide useful utilities or functions for the chart developer. They're included as
10+
# a dependency of application charts to inject those utilities and functions into the rendering
11+
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
12+
type: application
13+
14+
# This is the chart version. This version number should be incremented each time you make changes
15+
# to the chart and its templates, including the app version.
16+
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17+
version: 1.9.1
18+
19+
# This is the version number of the application being deployed. This version number should be
20+
# incremented each time you make changes to the application. Versions are not expected to
21+
# follow Semantic Versioning. They should reflect the version the application is using.
22+
# It is recommended to use it with quotes.
23+
appVersion: "1.9.1"

packs/dell-csm-operator-1.9.1/charts/csm-operator/crds/storage.dell.com.crds.all.yaml

Lines changed: 3886 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{{- if eq .Values.csm.type "powermax" }}
2+
apiVersion: cert-manager.io/v1
3+
kind: Issuer
4+
metadata:
5+
name: selfsigned-issuer
6+
namespace: {{ .Values.csm.namespace }}
7+
spec:
8+
selfSigned: {}
9+
---
10+
apiVersion: cert-manager.io/v1
11+
kind: Certificate
12+
metadata:
13+
name: csirevproxy-tls-cert
14+
namespace: {{ .Values.csm.namespace }}
15+
spec:
16+
secretName: csirevproxy-tls-secret
17+
commonName: csipowermax-reverseproxy
18+
duration: 2160h # 90d
19+
renewBefore: 360h # 15d
20+
subject:
21+
organizations:
22+
- dellemc
23+
isCA: false
24+
privateKey:
25+
algorithm: RSA
26+
encoding: PKCS1
27+
size: 2048
28+
usages:
29+
- server auth
30+
- client auth
31+
dnsNames:
32+
- csipowermax-reverseproxy
33+
- csipowermax-reverseproxy.powermax.svc.cluster.local
34+
- reverseproxy
35+
ipAddresses:
36+
- 0.0.0.0
37+
issuerRef:
38+
name: selfsigned-issuer
39+
kind: Issuer
40+
group: cert-manager.io
41+
{{- end }}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: storage.dell.com/v1
2+
kind: ContainerStorageModule
3+
metadata:
4+
{{- if eq .Values.csm.type "powerflex" }}
5+
name: vxflexos
6+
{{- else if eq .Values.csm.type "powermax" }}
7+
name: powermax
8+
{{- else if eq .Values.csm.type "powerstore" }}
9+
name: powerstore
10+
{{- else if eq .Values.csm.type "isilon" }}
11+
name: isilon
12+
{{- end }}
13+
namespace: {{ .Values.csm.namespace }}
14+
spec:
15+
driver: {{ .Values.csm.config.driver | toYaml | nindent 4 }}
16+
modules: {{ .Values.csm.config.modules | toYaml | nindent 4 }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
labels:
5+
kubernetes.io/metadata.name: {{ .Values.namespace }}
6+
pod-security.kubernetes.io/audit: privileged
7+
pod-security.kubernetes.io/enforce: privileged
8+
pod-security.kubernetes.io/enforce-version: latest
9+
pod-security.kubernetes.io/warn: privileged
10+
name: {{ .Values.namespace }}
11+
---
12+
apiVersion: v1
13+
kind: Namespace
14+
metadata:
15+
labels:
16+
kubernetes.io/metadata.name: {{ .Values.csm.namespace }}
17+
pod-security.kubernetes.io/audit: privileged
18+
pod-security.kubernetes.io/enforce: privileged
19+
pod-security.kubernetes.io/enforce-version: latest
20+
pod-security.kubernetes.io/warn: privileged
21+
name: {{ .Values.csm.namespace }}

0 commit comments

Comments
 (0)