...
Get a local copy of the helm chart
Code Block language bash git clone https://github.com/hivemq/helm-charts.git cd helm-charts
Identify files that contain networking.k8s.io/v1beta1
Code Block language bash grep -R networking.k8s.io/v1beta1 .
Edit the
./charts/hivemq-swarm/templates/ingress.yaml
. Update API version v1beta1 to v1:Code Block language diff < apiVersion: networking.k8s.io/v1beta1 --- > apiVersion: networking.k8s.io/v1
Update backend to defaultBackend and its keys from this:
Code Block language yamldiff < backend: < serviceName: {{ $fullName }}-api < servicePort: api
to this:
Code Block language yamldiff > defaultBackend: > service: > name: {{ $fullName }}-api > port: > name: api
Add pathType to the path:
Code Block language yamldiff - path: / > pathType: ImplementationSpecific
...