254 lines
10 KiB
Go Template
254 lines
10 KiB
Go Template
# Longhorn Chart
|
|
|
|
> **Important**: Please install the Longhorn chart in the `longhorn-system` namespace only.
|
|
|
|
> **Warning**: Longhorn doesn't support downgrading from a higher version to a lower version.
|
|
|
|
## Source Code
|
|
|
|
Longhorn is 100% open source software. Project source code is spread across a number of repos:
|
|
|
|
1. Longhorn Engine -- Core controller/replica logic https://github.com/longhorn/longhorn-engine
|
|
2. Longhorn Instance Manager -- Controller/replica instance lifecycle management https://github.com/longhorn/longhorn-instance-manager
|
|
3. Longhorn Share Manager -- NFS provisioner that exposes Longhorn volumes as ReadWriteMany volumes. https://github.com/longhorn/longhorn-share-manager
|
|
4. Backing Image Manager -- Backing image file lifecycle management. https://github.com/longhorn/backing-image-manager
|
|
5. Longhorn Manager -- Longhorn orchestration, includes CSI driver for Kubernetes https://github.com/longhorn/longhorn-manager
|
|
6. Longhorn UI -- Dashboard https://github.com/longhorn/longhorn-ui
|
|
|
|
## Prerequisites
|
|
|
|
1. A container runtime compatible with Kubernetes (Docker v1.13+, containerd v1.3.7+, etc.)
|
|
2. Kubernetes >= v1.21
|
|
3. Make sure `bash`, `curl`, `findmnt`, `grep`, `awk` and `blkid` has been installed in all nodes of the Kubernetes cluster.
|
|
4. Make sure `open-iscsi` has been installed, and the `iscsid` daemon is running on all nodes of the Kubernetes cluster. For GKE, recommended Ubuntu as guest OS image since it contains `open-iscsi` already.
|
|
|
|
## Upgrading to Kubernetes v1.25+
|
|
|
|
Starting in Kubernetes v1.25, [Pod Security Policies](https://kubernetes.io/docs/concepts/security/pod-security-policy/) have been removed from the Kubernetes API.
|
|
|
|
As a result, **before upgrading to Kubernetes v1.25** (or on a fresh install in a Kubernetes v1.25+ cluster), users are expected to perform an in-place upgrade of this chart with `enablePSP` set to `false` if it has been previously set to `true`.
|
|
|
|
> **Note:**
|
|
> If you upgrade your cluster to Kubernetes v1.25+ before removing PSPs via a `helm upgrade` (even if you manually clean up resources), **it will leave the Helm release in a broken state within the cluster such that further Helm operations will not work (`helm uninstall`, `helm upgrade`, etc.).**
|
|
>
|
|
> If your charts get stuck in this state, you may have to clean up your Helm release secrets.
|
|
Upon setting `enablePSP` to false, the chart will remove any PSP resources deployed on its behalf from the cluster. This is the default setting for this chart.
|
|
|
|
As a replacement for PSPs, [Pod Security Admission](https://kubernetes.io/docs/concepts/security/pod-security-admission/) should be used. Please consult the Longhorn docs for more details on how to configure your chart release namespaces to work with the new Pod Security Admission and apply Pod Security Standards.
|
|
|
|
## Installation
|
|
1. Add Longhorn chart repository.
|
|
```
|
|
helm repo add longhorn https://charts.longhorn.io
|
|
```
|
|
|
|
2. Update local Longhorn chart information from chart repository.
|
|
```
|
|
helm repo update
|
|
```
|
|
|
|
3. Install Longhorn chart.
|
|
- With Helm 2, the following command will create the `longhorn-system` namespace and install the Longhorn chart together.
|
|
```
|
|
helm install longhorn/longhorn --name longhorn --namespace longhorn-system
|
|
```
|
|
- With Helm 3, the following commands will create the `longhorn-system` namespace first, then install the Longhorn chart.
|
|
|
|
```
|
|
kubectl create namespace longhorn-system
|
|
helm install longhorn longhorn/longhorn --namespace longhorn-system
|
|
```
|
|
|
|
## Uninstallation
|
|
|
|
With Helm 2 to uninstall Longhorn.
|
|
```
|
|
kubectl -n longhorn-system patch -p '{"value": "true"}' --type=merge lhs deleting-confirmation-flag
|
|
helm delete longhorn --purge
|
|
```
|
|
|
|
With Helm 3 to uninstall Longhorn.
|
|
```
|
|
kubectl -n longhorn-system patch -p '{"value": "true"}' --type=merge lhs deleting-confirmation-flag
|
|
helm uninstall longhorn -n longhorn-system
|
|
kubectl delete namespace longhorn-system
|
|
```
|
|
|
|
## Values
|
|
|
|
The `values.yaml` contains items used to tweak a deployment of this chart.
|
|
|
|
### Cattle Settings
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "global" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Network Policies
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "networkPolicies" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Image Settings
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "image" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Service Settings
|
|
|
|
| Key | Description |
|
|
|-----|-------------|
|
|
{{- range .Values }}
|
|
{{- if (and (hasPrefix "service" .Key) (not (contains "Account" .Key))) }}
|
|
| {{ .Key }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### StorageClass Settings
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "persistence" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### CSI Settings
|
|
|
|
| Key | Description |
|
|
|-----|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "csi" .Key }}
|
|
| {{ .Key }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Longhorn Manager Settings
|
|
|
|
Longhorn system contains user deployed components (e.g, Longhorn manager, Longhorn driver, Longhorn UI) and system managed components (e.g, instance manager, engine image, CSI driver, etc.).
|
|
These settings only apply to Longhorn manager component.
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "longhornManager" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Longhorn Driver Settings
|
|
|
|
Longhorn system contains user deployed components (e.g, Longhorn manager, Longhorn driver, Longhorn UI) and system managed components (e.g, instance manager, engine image, CSI driver, etc.).
|
|
These settings only apply to Longhorn driver component.
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "longhornDriver" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Longhorn UI Settings
|
|
|
|
Longhorn system contains user deployed components (e.g, Longhorn manager, Longhorn driver, Longhorn UI) and system managed components (e.g, instance manager, engine image, CSI driver, etc.).
|
|
These settings only apply to Longhorn UI component.
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "longhornUI" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Ingress Settings
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "ingress" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Private Registry Settings
|
|
|
|
Longhorn can be installed in an air gapped environment with private registry settings. Please refer to **Air Gap Installation** in our official site [link](https://longhorn.io/docs)
|
|
|
|
| Key | Description |
|
|
|-----|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "privateRegistry" .Key }}
|
|
| {{ .Key }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### OS/Kubernetes Distro Settings
|
|
|
|
#### Opensift Settings
|
|
|
|
Please also refer to this document [ocp-readme](https://github.com/longhorn/longhorn/blob/master/chart/ocp-readme.md) for more details
|
|
|
|
| Key | Type | Default | Description |
|
|
|-----|------|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "openshift" .Key }}
|
|
| {{ .Key }} | {{ .Type }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### Other Settings
|
|
|
|
| Key | Default | Description |
|
|
|-----|---------|-------------|
|
|
{{- range .Values }}
|
|
{{- if not (or (hasPrefix "defaultSettings" .Key)
|
|
(hasPrefix "networkPolicies" .Key)
|
|
(hasPrefix "image" .Key)
|
|
(hasPrefix "service" .Key)
|
|
(hasPrefix "persistence" .Key)
|
|
(hasPrefix "csi" .Key)
|
|
(hasPrefix "longhornManager" .Key)
|
|
(hasPrefix "longhornDriver" .Key)
|
|
(hasPrefix "longhornUI" .Key)
|
|
(hasPrefix "privateRegistry" .Key)
|
|
(hasPrefix "ingress" .Key)
|
|
(hasPrefix "openshift" .Key)
|
|
(hasPrefix "global" .Key)) }}
|
|
| {{ .Key }} | {{ if .Default }}{{ .Default }}{{ else }}{{ .AutoDefault }}{{ end }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
### System Default Settings
|
|
|
|
For system default settings, you can first leave blank to use default values which will be applied when installing Longhorn.
|
|
You can then change them through UI after installation.
|
|
For more details like types or options, you can refer to **Settings Reference** in our official site [link](https://longhorn.io/docs)
|
|
|
|
| Key | Description |
|
|
|-----|-------------|
|
|
{{- range .Values }}
|
|
{{- if hasPrefix "defaultSettings" .Key }}
|
|
| {{ .Key }} | {{ if .Description }}{{ .Description }}{{ else }}{{ .AutoDescription }}{{ end }} |
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
---
|
|
Please see [link](https://github.com/longhorn/longhorn) for more information.
|