Skip to content

Tags: idnt-devops/dynamic-localpv-provisioner

Tags

v2.6.0

Toggle v2.6.0's commit message
chore(go.mod): Updating Go vendoring files

Signed-off-by: Niladri Halder <[email protected]>

v2.6.0-RC2

Toggle v2.6.0-RC2's commit message
chore(go.mod): Updating Go vendoring files

Signed-off-by: Niladri Halder <[email protected]>

v2.6.0-RC1

Toggle v2.6.0-RC1's commit message
chore(go.mod): Updating Go vendoring files

Signed-off-by: Niladri Halder <[email protected]>

localpv-provisioner-2.5.1

Toggle localpv-provisioner-2.5.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
[stable/dynamic-localpv]: update dependent NDM chart to 1.1.1

- update Chart version, description and dependency version
- update README

Signed-off-by: Akhil Mohan <[email protected]>

localpv-provisioner-2.5.0

Toggle localpv-provisioner-2.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[stable/dynamic-localpv]: update charts to 2.5.0 (openebs#25)

- update Chart version, description and dependency version
- update values.yaml
- update README
- update provisioner deployment

Signed-off-by: Akhil Mohan <[email protected]>

v2.5.0

Toggle v2.5.0's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix(cleanup, provisioner): add image pull secrets to cleanup pod

- add image pull secrets to hostpath provisioner cleanup pod

Signed-off-by: Akhil Mohan <[email protected]>

v2.5.0-RC2

Toggle v2.5.0-RC2's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix(cleanup, provisioner): add image pull secrets to cleanup pod

- add image pull secrets to hostpath provisioner cleanup pod

Signed-off-by: Akhil Mohan <[email protected]>

v2.5.0-RC1

Toggle v2.5.0-RC1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(dynamic-localpv-provisioner):support pass image pull secrets whe…

…n creating init-pvc-pod by localpv-provisioner (openebs#22)

Add image pull secret to init PVC pod with the environment variable

Signed-off-by: mahao <[email protected]>

localpv-provisioner-2.4.0

Toggle localpv-provisioner-2.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(helm): add openebs localpv helm charts (openebs#14)

an initial version of the openebs local pv charts.

Signed-off-by: prateekpandey14 <[email protected]>

v2.4.1

Toggle v2.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat(hostpath): allow custom node affinity label (openebs#15)

Ref: openebs/openebs#2875

provide a feature for administrators to configure a
custom node affinity label in place of hostnames.

This will help in scenarios, where hostnames can change
when node are removed and added back to the cluster with
the underlying disks intact.

cluster admin can setup custom labels to the nodes and
provide this information to Local PV hostpath provisioner
to use via StorageClass config key called `NodeAffinityLabel`

```
+ //Example: Local PV device StorageClass for using a custom
+ //node label as: openebs.io/node-affinity-value
+ //will be as follows
+ //
+ // kind: StorageClass
+ // metadata:
+ //   name: openebs-hostpath
+ //   annotations:
+ //     openebs.io/cas-type: local
+ //     cas.openebs.io/config: |
+ //       - name: StorageType
+ //         value: "device"
+ //       - name: NodeAffinityLabel
+ //         value: "openebs.io/node-affinity-value"
+ // provisioner: openebs.io/local
+ // volumeBindingMode: WaitForFirstConsumer
+ // reclaimPolicy: Delete
+ //
```


Signed-off-by: kmova <[email protected]>