Skip to content

Commit

Permalink
Update to v1.1.2
Browse files Browse the repository at this point in the history
Signed-off-by: David Ko <dko@suse.com>
  • Loading branch information
innobead committed Jul 6, 2021
1 parent 93f250e commit ba7ba77
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 23 deletions.
5 changes: 3 additions & 2 deletions charts/longhorn/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
Expand Down
7 changes: 4 additions & 3 deletions charts/longhorn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions charts/longhorn/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions charts/longhorn/templates/tls-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 8 additions & 8 deletions charts/longhorn/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit ba7ba77

Please sign in to comment.