This release enables installations of Authorino v0.19.0
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
- Avoid conflict with the VERSION build arg by @guicassolato in #217
- Update Authorino manifests - AuthConfig v1beta3 by @guicassolato in #219
- fix: install script without deps by @guicassolato in #220
- Update Authorino manifests by @guicassolato in #221
- Building multiarch catalogs by @didierofrivia in #222
- Preparing info for ArtifactHub.io by @didierofrivia in #223
Full Changelog: v0.13.1...v0.14.0