Skip to content

v0.12.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 13 Sep 10:37

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