v0.6.0
openshift-routes provides OpenShift Route support for cert-manager
We changed the release process. The project now relies on Makefile modules like the other projects under the cert-manager org. The changes are:
-
The file
static/cert-manager-openshift-routes.yaml
is no longer present in the repository. You now have to template your own manifests, for example:oc apply -f <(helm template openshift-routes -n cert-manager oci://ghcr.io/cert-manager/charts/openshift-routes --set omitHelmLabels=true --version 0.6.0)
-
Image tags now use the
v
prefix:-ghcr.io/cert-manager/cert-manager-openshift-routes:0.5.0 +ghcr.io/cert-manager/cert-manager-openshift-routes:v0.6.0
Install instructions
helm install openshift-routes -n cert-manager oci://ghcr.io/cert-manager/charts/openshift-routes --version 0.6.0
What changed between v0.5.0 and v0.6.0?
- Helm: it is now possible to use the
namespace
field invalues.yaml
for configuring the destination namespace. This is useful in the context of Helm subcharts. By @Jaydee94 in #59 - Migrate the project to Makefile modules by @inteon in #60
- Add E2E smoke tests by @inteon in #63
- Helm: add omitHelmLabels so that people can generate static manifests without the Helm-specific labels by @maelvls in #74
New Contributors
- @Jaydee94 made their first contribution in #59
- @inteon made their first contribution in #60
- @github-actions made their first contribution in #66
Full Changelog: v0.5.0...v0.6.0-alpha.0