Skip to content

v0.14.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 08 Nov 12:05

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