Skip to content

Commit

Permalink
Update to v1.2.0-rc2
Browse files Browse the repository at this point in the history
Signed-off-by: David Ko <dko@suse.com>
  • Loading branch information
innobead committed Aug 25, 2021
1 parent 0c2dbcd commit 9c5bd07
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 25 deletions.
4 changes: 2 additions & 2 deletions chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: longhorn
version: 1.2.0-rc1
appVersion: v1.2.0-rc1
version: 1.2.0-rc2
appVersion: v1.2.0-rc2
kubeVersion: ">=v1.18.0"
description: Longhorn is a distributed block storage system for Kubernetes.
keywords:
Expand Down
6 changes: 3 additions & 3 deletions chart/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.2.0-rc1
default: v1.2.0-rc2
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.2.0-rc1
default: v1.2.0-rc2
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.2.0-rc1
default: v1.2.0-rc2
description: "Specify Longhorn UI Image Tag"
type: string
label: Longhorn UI Image Tag
Expand Down
6 changes: 3 additions & 3 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ image:
longhorn:
engine:
repository: longhornio/longhorn-engine
tag: v1.2.0-rc1
tag: v1.2.0-rc2
manager:
repository: longhornio/longhorn-manager
tag: v1.2.0-rc1
tag: v1.2.0-rc2
ui:
repository: longhornio/longhorn-ui
tag: v1.2.0-rc1
tag: v1.2.0-rc2
instanceManager:
repository: longhornio/longhorn-instance-manager
tag: v1_20210731
Expand Down
6 changes: 3 additions & 3 deletions deploy/longhorn-images.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ k8s.gcr.io/sig-storage/csi-resizer:v1.2.0
k8s.gcr.io/sig-storage/csi-snapshotter:v3.0.3
k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.3.0
longhornio/backing-image-manager:v2_20210820
longhornio/longhorn-engine:v1.2.0-rc1
longhornio/longhorn-engine:v1.2.0-rc2
longhornio/longhorn-instance-manager:v1_20210731
longhornio/longhorn-manager:v1.2.0-rc1
longhornio/longhorn-manager:v1.2.0-rc2
longhornio/longhorn-share-manager:v1_20210820
longhornio/longhorn-ui:v1.2.0-rc1
longhornio/longhorn-ui:v1.2.0-rc2
30 changes: 17 additions & 13 deletions deploy/longhorn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rules:
resources: ["priorityclasses"]
verbs: ["watch", "list"]
- apiGroups: ["storage.k8s.io"]
resources: ["storageclasses", "volumeattachments", "csinodes", "csidrivers"]
resources: ["storageclasses", "volumeattachments","volumeattachments/status", "csinodes", "csidrivers"]
verbs: ["*"]
- apiGroups: ["snapshot.storage.k8s.io"]
resources: ["volumesnapshotclasses", "volumesnapshots", "volumesnapshotcontents", "volumesnapshotcontents/status"]
Expand Down Expand Up @@ -741,6 +741,10 @@ spec:
type: string
description: The snapshot creation time
jsonPath: .status.snapshotCreatedAt
- name: State
type: string
description: The backup state
jsonPath: .status.state
- name: LastSyncedAt
type: string
description: The backup last synced time
Expand Down Expand Up @@ -980,7 +984,7 @@ spec:
spec:
containers:
- name: longhorn-manager
image: longhornio/longhorn-manager:v1.2.0-rc1
image: longhornio/longhorn-manager:v1.2.0-rc2
imagePullPolicy: IfNotPresent
securityContext:
privileged: true
Expand All @@ -989,15 +993,15 @@ spec:
- -d
- daemon
- --engine-image
- longhornio/longhorn-engine:v1.2.0-rc1
- longhornio/longhorn-engine:v1.2.0-rc2
- --instance-manager-image
- longhornio/longhorn-instance-manager:v1_20210731
- --share-manager-image
- longhornio/longhorn-share-manager:v1_20210820
- --backing-image-manager-image
- longhornio/backing-image-manager:v2_20210820
- --manager-image
- longhornio/longhorn-manager:v1.2.0-rc1
- longhornio/longhorn-manager:v1.2.0-rc2
- --service-account
- longhorn-service-account
ports:
Expand Down Expand Up @@ -1097,7 +1101,7 @@ spec:
spec:
containers:
- name: longhorn-ui
image: longhornio/longhorn-ui:v1.2.0-rc1
image: longhornio/longhorn-ui:v1.2.0-rc2
imagePullPolicy: IfNotPresent
securityContext:
runAsUser: 0
Expand Down Expand Up @@ -1153,18 +1157,18 @@ spec:
spec:
initContainers:
- name: wait-longhorn-manager
image: longhornio/longhorn-manager:v1.2.0-rc1
image: longhornio/longhorn-manager:v1.2.0-rc2
command: ['sh', '-c', 'while [ $(curl -m 1 -s -o /dev/null -w "%{http_code}" http://longhorn-backend:9500/v1) != "200" ]; do echo waiting; sleep 2; done']
containers:
- name: longhorn-driver-deployer
image: longhornio/longhorn-manager:v1.2.0-rc1
image: longhornio/longhorn-manager:v1.2.0-rc2
imagePullPolicy: IfNotPresent
command:
- longhorn-manager
- -d
- deploy-driver
- --manager-image
- longhornio/longhorn-manager:v1.2.0-rc1
- longhornio/longhorn-manager:v1.2.0-rc2
- --manager-url
- http://longhorn-backend:9500/v1
env:
Expand All @@ -1186,15 +1190,15 @@ spec:
# For AirGap Installation
# Replace PREFIX with your private registry
#- name: CSI_ATTACHER_IMAGE
# value: PREFIX/csi-attacher:v2.2.1-lh1
# value: PREFIX/csi-attacher:v3.2.1
#- name: CSI_PROVISIONER_IMAGE
# value: PREFIX/csi-provisioner:v1.6.0-lh1
# value: PREFIX/csi-provisioner:v2.1.2
#- name: CSI_NODE_DRIVER_REGISTRAR_IMAGE
# value: PREFIX/csi-node-driver-registrar:v1.2.0-lh1
# value: PREFIX/csi-node-driver-registrar:v2.3.0
#- name: CSI_RESIZER_IMAGE
# value: PREFIX/csi-resizer:v0.5.1-lh1
# value: PREFIX/csi-resizer:v1.2.0
#- name: CSI_SNAPSHOTTER_IMAGE
# value: PREFIX/csi-snapshotter:v2.1.1-lh1
# value: PREFIX/csi-snapshotter:v3.0.3
# Manually specify number of CSI attacher replicas
#- name: CSI_ATTACHER_REPLICA_COUNT
# value: "3"
Expand Down
2 changes: 1 addition & 1 deletion uninstall/uninstall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ spec:
spec:
containers:
- name: longhorn-uninstall
image: longhornio/longhorn-manager:v1.2.0-rc1
image: longhornio/longhorn-manager:v1.2.0-rc2
imagePullPolicy: Always
securityContext:
privileged: true
Expand Down

0 comments on commit 9c5bd07

Please sign in to comment.