Comment 7 for bug 1939278

Revision history for this message
Yang Kelvin Liu (kelvin.liu) wrote (last edit ):

hi Tom,
Juju does support both v1beta1 and v1.
The issue here is that the charm submits a v1beta1 ingress spec to Juju via set-pod-spec.
But the k8s cluster does not support v1beta1 anymore.
So the fix could be to upgrade the ingress spec to v1 in the charm and set the `.deployment.min-version==1.19` in metadata.yaml.
(ingress v1 was introduced in k8s version 1.19)

thanks