diff --git a/charts/longhorn/Chart.yaml b/charts/longhorn/Chart.yaml index 50d23cc8..5cefed98 100644 --- a/charts/longhorn/Chart.yaml +++ b/charts/longhorn/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: longhorn -version: 1.1.1 -appVersion: v1.1.1 +version: 1.1.2 +appVersion: v1.1.2 kubeVersion: ">=v1.16.0-r0" description: Longhorn is a distributed block storage system for Kubernetes. keywords: @@ -18,6 +18,7 @@ sources: - https://github.com/longhorn/longhorn-engine - https://github.com/longhorn/longhorn-instance-manager - https://github.com/longhorn/longhorn-share-manager +- https://github.com/longhorn/backing-image-manager - https://github.com/longhorn/longhorn-manager - https://github.com/longhorn/longhorn-ui - https://github.com/longhorn/longhorn-tests diff --git a/charts/longhorn/README.md b/charts/longhorn/README.md index 5d693de8..32a22505 100644 --- a/charts/longhorn/README.md +++ b/charts/longhorn/README.md @@ -11,14 +11,15 @@ Longhorn is 100% open source software. Project source code is spread across a nu 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. Longhorn Manager -- Longhorn orchestration, includes CSI driver for Kubernetes https://github.com/longhorn/longhorn-manager -4. Longhorn UI -- Dashboard https://github.com/longhorn/longhorn-ui +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.16+ -3. Make sure `curl`, `findmnt`, `grep`, `awk` and `blkid` has been installed in all nodes of the Kubernetes cluster. +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. ## Installation diff --git a/charts/longhorn/questions.yml b/charts/longhorn/questions.yml index 7f292d03..a925510d 100644 --- a/charts/longhorn/questions.yml +++ b/charts/longhorn/questions.yml @@ -17,7 +17,7 @@ questions: label: Longhorn Manager Image Repository group: "Longhorn Images Settings" - variable: image.longhorn.manager.tag - default: v1.1.1 + default: v1.1.2 description: "Specify Longhorn Manager Image Tag" type: string label: Longhorn Manager Image Tag @@ -29,7 +29,7 @@ questions: label: Longhorn Engine Image Repository group: "Longhorn Images Settings" - variable: image.longhorn.engine.tag - default: v1.1.1 + default: v1.1.2 description: "Specify Longhorn Engine Image Tag" type: string label: Longhorn Engine Image Tag @@ -41,7 +41,7 @@ questions: label: Longhorn UI Image Repository group: "Longhorn Images Settings" - variable: image.longhorn.ui.tag - default: v1.1.1 + default: v1.1.2 description: "Specify Longhorn UI Image Tag" type: string label: Longhorn UI Image Tag @@ -89,7 +89,7 @@ questions: label: Longhorn CSI Attacher Image Repository group: "Longhorn CSI Driver Images" - variable: image.csi.attacher.tag - default: v2.2.1-lh1 + default: v2.2.1-lh2 description: "Specify CSI attacher image tag. Leave blank to autodetect." type: string label: Longhorn CSI Attacher Image Tag @@ -101,7 +101,7 @@ questions: label: Longhorn CSI Provisioner Image Repository group: "Longhorn CSI Driver Images" - variable: image.csi.provisioner.tag - default: v1.6.0-lh1 + default: v1.6.0-lh2 description: "Specify CSI provisioner image tag. Leave blank to autodetect." type: string label: Longhorn CSI Provisioner Image Tag @@ -125,7 +125,7 @@ questions: label: Longhorn CSI Driver Resizer Image Repository group: "Longhorn CSI Driver Images" - variable: image.csi.resizer.tag - default: v0.5.1-lh1 + default: v0.5.1-lh2 description: "Specify CSI Driver Resizer image tag. Leave blank to autodetect." type: string label: Longhorn CSI Driver Resizer Image Tag @@ -137,7 +137,7 @@ questions: label: Longhorn CSI Driver Snapshotter Image Repository group: "Longhorn CSI Driver Images" - variable: image.csi.snapshotter.tag - default: v2.1.1-lh1 + default: v2.1.1-lh2 description: "Specify CSI Driver Snapshotter image tag. Leave blank to autodetect." type: string label: Longhorn CSI Driver Snapshotter Image Tag diff --git a/charts/longhorn/templates/tls-secrets.yaml b/charts/longhorn/templates/tls-secrets.yaml index a7ebf13e..74c43426 100644 --- a/charts/longhorn/templates/tls-secrets.yaml +++ b/charts/longhorn/templates/tls-secrets.yaml @@ -3,9 +3,9 @@ apiVersion: v1 kind: Secret metadata: - name: longhorn - namespace: {{ include "release_namespace" . }} - labels: {{- include "longhorn.labels" . | nindent 4 }} + name: {{ .name }} + namespace: {{ include "release_namespace" $ }} + labels: {{- include "longhorn.labels" $ | nindent 4 }} app: longhorn type: kubernetes.io/tls data: diff --git a/charts/longhorn/values.yaml b/charts/longhorn/values.yaml index 323d2724..20380a49 100644 --- a/charts/longhorn/values.yaml +++ b/charts/longhorn/values.yaml @@ -9,16 +9,16 @@ image: longhorn: engine: repository: longhornio/longhorn-engine - tag: v1.1.1 + tag: v1.1.2 manager: repository: longhornio/longhorn-manager - tag: v1.1.1 + tag: v1.1.2 ui: repository: longhornio/longhorn-ui - tag: v1.1.1 + tag: v1.1.2 instanceManager: repository: longhornio/longhorn-instance-manager - tag: v1_20201216 + tag: v1_20210621 shareManager: repository: longhornio/longhorn-share-manager tag: v1_20210416 @@ -28,19 +28,19 @@ image: csi: attacher: repository: longhornio/csi-attacher - tag: v2.2.1-lh1 + tag: v2.2.1-lh2 provisioner: repository: longhornio/csi-provisioner - tag: v1.6.0-lh1 + tag: v1.6.0-lh2 nodeDriverRegistrar: repository: longhornio/csi-node-driver-registrar tag: v1.2.0-lh1 resizer: repository: longhornio/csi-resizer - tag: v0.5.1-lh1 + tag: v0.5.1-lh2 snapshotter: repository: longhornio/csi-snapshotter - tag: v2.1.1-lh1 + tag: v2.1.1-lh2 pullPolicy: IfNotPresent service: