enough-carpet-20915
12/04/2022, 6:44 PMapiVersion: <http://helm.cattle.io/v1|helm.cattle.io/v1>
kind: HelmChartConfig
metadata:
name: traefik
namespace: kube-system
spec:
valuesContent: |-
additionalArguments:
- "--entrypoints.minecraft.address=:25565/tcp"
ports:
- containerPort: 25565
name: minecraft
protocol: TCP
I get this error from the helm-install-traefik-$foo pod:
Error: UPGRADE FAILED: template: traefik/templates/service.yaml:10:27: executing "traefik/templates/service.yaml" at <$name>: wrong type for value; expected string; got int
What am I doing wrong here?creamy-pencil-82913
12/04/2022, 6:47 PMports:
minecraft:
port: 25565
exposedPort: 25565
expose: true
protocol: TCP
enough-carpet-20915
12/04/2022, 7:02 PM