Skip to content

Releases: darkowlzz/ignite

v0.10.0-alpha.1

26 May 14:09
8b31ad7
Compare
Choose a tag to compare
v0.10.0-alpha.1 Pre-release
Pre-release

Support for k8s v1.21.0 dependencies.
Before adding v1alpha4 ignite API.

v0.99.0

24 Oct 19:25
Compare
Choose a tag to compare
Add workflow for releasing assets

v0.98.0

24 Oct 19:34
Compare
Choose a tag to compare
Add workflow for releasing assets

v0.8.0-rc.1

11 Oct 15:09
65c55dd
Compare
Choose a tag to compare
v0.8.0-rc.1 Pre-release
Pre-release
Merge pull request #696 from darkowlzz/build-binaries

config-support

13 Jul 11:29
2db00c6
Compare
Choose a tag to compare
config-support Pre-release
Pre-release

Contains support for ignite v1alpha3 with ignite config support.

ignite-kind-essentials

27 Jan 09:44
Compare
Choose a tag to compare
Fix resource name verify for prefix match

verifyUIDOrName()'s uses a client Find() functions which uses filter
to find a given name or id. Because it's a filter, it performs a
prefix match. This results in false positive results.

For example, if there's an existing resource "worker2", and a new
resource "worker" is requested, due to the filter's prefix match,
it results in ambiguous error - already exists.

This change adds an extra check of the filtered object by matching
it with the given name/id.