Closed drewburr closed 3 months ago
Removes the requirement of setting ingress.enabled: false for extraPorts. For example, an item in extraPorts[] needing no ingress currently requires:
ingress.enabled: false
extraPorts[]
extraPorts: - name: map protocol: TCP ingress: enabled: false ...
If ingress is omitted, the following error is thrown:
ingress
Error: template: minecraft-toiletbowl/charts/minecraft/templates/extraports-ing.yaml:3:26: executing "minecraft-toiletbowl/charts/minecraft/templates/extraports-ing.yaml" at <.ingress.enabled>: nil pointer evaluating interface {}.enabled
With this update, we can safely omit the ingress object entirely:
extraPorts: - name: map protocol: TCP ...
Thanks! Can you also bump the chart's minor version? (PR/merge process currently requires it 😞)
Good catch! Thanks for the heads up, I'll keep this in mind in the future
Removes the requirement of setting
ingress.enabled: false
for extraPorts. For example, an item inextraPorts[]
needing no ingress currently requires:If
ingress
is omitted, the following error is thrown:With this update, we can safely omit the
ingress
object entirely: