--- # ClusterIP — Traefik TCP route targets this apiVersion: v1 kind: Service metadata: name: mudcraft namespace: mudcraft spec: selector: app: mudcraft ports: - name: minecraft port: 25565 targetPort: 25565 protocol: TCP - name: voicechat port: 24454 targetPort: 24454 protocol: UDP type: ClusterIP --- # RCON — internal only, for server management apiVersion: v1 kind: Service metadata: name: mudcraft-rcon namespace: mudcraft spec: selector: app: mudcraft ports: - name: rcon port: 25575 targetPort: 25575 protocol: TCP type: ClusterIP