Skip to content

Releases: Kuadrant/authorino-operator

v0.14.0

08 Nov 12:05
Compare
Choose a tag to compare

This release enables installations of Authorino v0.19.0


⚠️ Important!

After upgrading to Authorino v0.19.0, users must migrate all AuthConfig resources stored in the cluster's database to v1beta3 by running the following script. This will guarantee readiness for upgrading in the future to a newer version of Authorino where v1beta2 is no longer served.

cat << 'EOF' > /tmp/migrate.sh
#!/bin/bash
authconfigs=$(kubectl get authconfigs -A -o custom-columns='NAMESPACE:.metadata.namespace,NAME:.metadata.name' --no-headers)
while IFS=" " read -r namespace name; do
  kubectl get authconfig "$name" -n "$namespace" -o yaml > "/tmp/${name}.${namespace}.authconfig.yaml"
  kubectl apply -f "/tmp/${name}.${namespace}.authconfig.yaml"
done <<< "$authconfigs"
EOF
chmod +x /tmp/migrate.sh
/tmp/migrate.sh

What's Changed

Full Changelog: v0.13.1...v0.14.0

v0.13.1

08 Nov 11:11
576b679
Compare
Choose a tag to compare

This release enables installations of Authorino v0.18.1

What's Changed

Full Changelog: v0.13.0...v0.13.1

v0.13.0

02 Oct 16:05
Compare
Choose a tag to compare

This release enables installations of Authorino v0.18.0

What's Changed

Full Changelog: https://github.com/Kuadrant/authorino-operator/commits/v0.13.0

v0.13.0-rc2

02 Oct 16:45
Compare
Choose a tag to compare
v0.13.0-rc2 Pre-release
Pre-release

This release enables installations of Authorino v0.18.0

What's Changed

Full Changelog: https://github.com/Kuadrant/authorino-operator/commits/v0.13.0-rc2

v0.13.0-rc1

02 Oct 15:15
Compare
Choose a tag to compare
v0.13.0-rc1 Pre-release
Pre-release

This release enables installations of Authorino v0.18.0

What's Changed

Full Changelog: v0.12.0...v0.13.0-rc1

v0.12.0

13 Sep 10:37
Compare
Choose a tag to compare

This release enables installations of Authorino v0.18.0


⚠️ Important!

After upgrading to Authorino v0.18.0, users must migrate all AuthConfig resources to v1beta2 stored in the cluster database by running the following script. This can be done at any time before upgrading to newer versions of Authorino post v0.18.0, without downtime or any intrinsic risk of breaking deployments before, during or after the migration.

cat << 'EOF' > /tmp/migrate.sh
#!/bin/bash
authconfigs=$(kubectl get authconfigs -A -o custom-columns='NAMESPACE:.metadata.namespace,NAME:.metadata.name' --no-headers)
while IFS=" " read -r namespace name; do
  kubectl get authconfig "$name" -n "$namespace" -o yaml > "/tmp/${name}.${namespace}.authconfig.yaml"
  kubectl apply -f "/tmp/${name}.${namespace}.authconfig.yaml"
done <<< "$authconfigs"
EOF
chmod +x /tmp/migrate.sh
/tmp/migrate.sh

What's Changed

New Contributors

Full Changelog: https://github.com/Kuadrant/authorino-operator/commits/v0.12.0

v0.12.0-rc1

26 Aug 13:12
Compare
Choose a tag to compare
v0.12.0-rc1 Pre-release
Pre-release

This release enables installations of Authorino v0.17.2

What's Changed

Read more

v0.12.0-alpha1

23 Jul 16:11
Compare
Choose a tag to compare
v0.12.0-alpha1 Pre-release
Pre-release

This release enables installations of Authorino v0.17.2

What's Changed

Read more

v0.11.1

05 Mar 18:00
Compare
Choose a tag to compare

This release enables installations of Authorino v0.17.x

Full Changelog: v0.11.0..v0.11.1

v0.11.0

22 Feb 13:13
Compare
Choose a tag to compare

This release enables installations of Authorino v0.17.0

What's Changed

New Contributors

Full Changelog: v0.10.0...v0.11.0