https://github.com/sftpgo/helm-chart/blob/main/sftpgo/values.yaml#L152 I had to patch service to make admin ui to work: ``` kubectl patch service sftpgo -n sftpgo --type='merge' -p '{ "spec": { "ports": [ { "port": 8080, "protocol": "TCP", "targetPort": 8080, "name": "admin" } ] } }' ``` Also noticed that adding port to values.yaml and doing `helm upgrade` is not patching service
https://github.com/sftpgo/helm-chart/blob/main/sftpgo/values.yaml#L152
I had to patch service to make admin ui to work:
Also noticed that adding port to values.yaml and doing
helm upgradeis not patching service