diff --git a/CHANGELOG.md b/CHANGELOG.md index 110bcc3..80e8d01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,72 @@ -v0.6 / 2020-04-14 +v0.7.0 / 2020-05-15 +======================= + + * feat(grafana): adding basic grafana dashboard ([110](https://github.com/openebs/zfs-localpv/pull/110), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(version): use the travis tag for the version ([114](https://github.com/openebs/zfs-localpv/pull/114), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(README): Fix the link in README file to the raw-block-volume.md file ([109](https://github.com/openebs/zfs-localpv/pull/109), + [@w3aman](https://github.com/w3aman)) + * chore(import-vol): adding steps to import existing volume to ZFS-LocalPV ([108](https://github.com/openebs/zfs-localpv/pull/108), + [@pawanpraka1](https://github.com/pawanpraka1)) + * chore(doc): adding raw block volume details in README ([106](https://github.com/openebs/zfs-localpv/pull/106), + [@pawanpraka1](https://github.com/pawanpraka1)) + * refact(build):trim leading v from image tag ([105](https://github.com/openebs/zfs-localpv/pull/105), + [@pawanpraka1](https://github.com/pawanpraka1)) + * refact(build): make the docker images configurable ([104](https://github.com/openebs/zfs-localpv/pull/104), + [@pawanpraka1](https://github.com/pawanpraka1)) + * feat(block): adding block volume support for ZFSPV ([102](https://github.com/openebs/zfs-localpv/pull/102), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(topokey): changing topology key to unique name ([101](https://github.com/openebs/zfs-localpv/pull/101), + [@pawanpraka1](https://github.com/pawanpraka1)) + * docs(project): adding project specific files ([99](https://github.com/openebs/zfs-localpv/pull/99), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(doc , format): Fixed the formatting of ReadME file for upgrade ([98](https://github.com/openebs/zfs-localpv/pull/98), + [@w3aman](https://github.com/w3aman)) + * feat(topology): adding support for custom topology keys ([94](https://github.com/openebs/zfs-localpv/pull/94), + [@pawanpraka1](https://github.com/pawanpraka1)) + * added developer environment examples ([#92](https://github.com/openebs/zfs-localpv/pull/92), + [@filippobosi](https://github.com/filippobosi)) + +v0.7.0-RC2 / 2020-05-13 +======================= + + +v0.7.0-RC1 / 2020-05-08 +======================= + + * fix(README): Fix the link in README file to the raw-block-volume.md file ([109](https://github.com/openebs/zfs-localpv/pull/109), + [@w3aman](https://github.com/w3aman)) + * chore(import-vol): adding steps to import existing volume to ZFS-LocalPV ([108](https://github.com/openebs/zfs-localpv/pull/108), + [@pawanpraka1](https://github.com/pawanpraka1)) + * chore(doc): adding raw block volume details in README ([106](https://github.com/openebs/zfs-localpv/pull/106), + [@pawanpraka1](https://github.com/pawanpraka1)) + * refact(build):trim leading v from image tag ([105](https://github.com/openebs/zfs-localpv/pull/105), + [@pawanpraka1](https://github.com/pawanpraka1)) + * refact(build): make the docker images configurable ([104](https://github.com/openebs/zfs-localpv/pull/104), + [@pawanpraka1](https://github.com/pawanpraka1)) + * feat(block): adding block volume support for ZFSPV ([102](https://github.com/openebs/zfs-localpv/pull/102), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(topokey): changing topology key to unique name ([101](https://github.com/openebs/zfs-localpv/pull/101), + [@pawanpraka1](https://github.com/pawanpraka1)) + * docs(project): adding project specific files ([99](https://github.com/openebs/zfs-localpv/pull/99), + [@pawanpraka1](https://github.com/pawanpraka1)) + * fix(doc , format): Fixed the formatting of ReadME file for upgrade ([98](https://github.com/openebs/zfs-localpv/pull/98), + [@w3aman](https://github.com/w3aman)) + * feat(topology): adding support for custom topology keys ([94](https://github.com/openebs/zfs-localpv/pull/94), + [@pawanpraka1](https://github.com/pawanpraka1)) + * added developer environment examples ([#92](https://github.com/openebs/zfs-localpv/pull/92), + [@filippobosi](https://github.com/filippobosi)) + +0.6.1 / 2020-04-23 +======================= + + * potential data loss in case of pod deletion ([#89](https://github.com/openebs/zfs-localpv/pull/89), + [@pawanpraka1](https://github.com/pawanpraka1)) + * avoid creation of volumeattachment object to fix slow volume attachment ([#85](https://github.com/openebs/zfs-localpv/pull/85), + [@pawanpraka1](https://github.com/pawanpraka1)) + +0.6.0 / 2020-04-14 ======================= * feat(validation): adding validation for ZFSPV CR parameters ([#66](https://github.com/openebs/zfs-localpv/pull/66), diff --git a/README.md b/README.md index c715343..197ce7a 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,10 @@ $ apt-get install zfsutils-linux Go to each node and create the ZFS Pool, which will be used for provisioning the volumes. You can create the Pool of your choice, it can be striped, mirrored or raidz pool. +Configure the custom topology keys (if needed). This can be used for many purposes like if we want to create the PV on nodes in a particuler zone or building. We can label the nodes accordingly and use that key in the storageclass for taking the scheduling decesion: + +https://github.com/openebs/zfs-localpv/blob/master/docs/faq.md#6-how-to-add-custom-topology-key + ### Installation OpenEBS ZFS driver components can be installed by running the diff --git a/unreleased/101-pawanpraka1 b/changelogs/released/v0.7.0-RC1/101-pawanpraka1 similarity index 100% rename from unreleased/101-pawanpraka1 rename to changelogs/released/v0.7.0-RC1/101-pawanpraka1 diff --git a/unreleased/102-pawanpraka1 b/changelogs/released/v0.7.0-RC1/102-pawanpraka1 similarity index 100% rename from unreleased/102-pawanpraka1 rename to changelogs/released/v0.7.0-RC1/102-pawanpraka1 diff --git a/changelogs/released/v0.7.0-RC1/104-pawanpraka1 b/changelogs/released/v0.7.0-RC1/104-pawanpraka1 new file mode 100644 index 0000000..6947176 --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/104-pawanpraka1 @@ -0,0 +1 @@ +make the docker images configurable diff --git a/changelogs/released/v0.7.0-RC1/105-pawanpraka1 b/changelogs/released/v0.7.0-RC1/105-pawanpraka1 new file mode 100644 index 0000000..cc6f774 --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/105-pawanpraka1 @@ -0,0 +1 @@ +trim leading v from image tag diff --git a/changelogs/released/v0.7.0-RC1/106-pawanpraka1 b/changelogs/released/v0.7.0-RC1/106-pawanpraka1 new file mode 100644 index 0000000..7f5247a --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/106-pawanpraka1 @@ -0,0 +1 @@ +adding raw block volume details in README diff --git a/changelogs/released/v0.7.0-RC1/108-pawanpraka1 b/changelogs/released/v0.7.0-RC1/108-pawanpraka1 new file mode 100644 index 0000000..8af473c --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/108-pawanpraka1 @@ -0,0 +1 @@ +adding steps to import existing volume to ZFS-LocalPV diff --git a/changelogs/released/v0.7.0-RC1/109-w3aman b/changelogs/released/v0.7.0-RC1/109-w3aman new file mode 100644 index 0000000..f63be4e --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/109-w3aman @@ -0,0 +1 @@ +Fix the link in README file to the raw-block-volume.md file diff --git a/changelogs/released/v0.7.0-RC1/92-filippobosi b/changelogs/released/v0.7.0-RC1/92-filippobosi new file mode 100644 index 0000000..57659bf --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/92-filippobosi @@ -0,0 +1 @@ +added developer environment examples diff --git a/unreleased/94-pawanpraka1 b/changelogs/released/v0.7.0-RC1/94-pawanpraka1 similarity index 100% rename from unreleased/94-pawanpraka1 rename to changelogs/released/v0.7.0-RC1/94-pawanpraka1 diff --git a/changelogs/released/v0.7.0-RC1/98-w3aman b/changelogs/released/v0.7.0-RC1/98-w3aman new file mode 100644 index 0000000..440f415 --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/98-w3aman @@ -0,0 +1 @@ +Fixed the formatting of ReadME file for upgrade diff --git a/changelogs/released/v0.7.0-RC1/99-pawanpraka1 b/changelogs/released/v0.7.0-RC1/99-pawanpraka1 new file mode 100644 index 0000000..369814e --- /dev/null +++ b/changelogs/released/v0.7.0-RC1/99-pawanpraka1 @@ -0,0 +1 @@ +adding project specific files diff --git a/changelogs/released/v0.7.0/110-pawanpraka1 b/changelogs/released/v0.7.0/110-pawanpraka1 new file mode 100644 index 0000000..7f9d289 --- /dev/null +++ b/changelogs/released/v0.7.0/110-pawanpraka1 @@ -0,0 +1 @@ +adding basic grafana dashboard diff --git a/changelogs/released/v0.7.0/114-pawanpraka1 b/changelogs/released/v0.7.0/114-pawanpraka1 new file mode 100644 index 0000000..79db841 --- /dev/null +++ b/changelogs/released/v0.7.0/114-pawanpraka1 @@ -0,0 +1 @@ +use the travis tag for the version