Specific server providers setups ‐ Kubernetes - MarechJ/hll_rcon_tool GitHub Wiki

🧭 You are here : Wiki home / Additional Setup / Specific server providers setups / Kubernetes


Frontend template, using the default ports (the containers themselves communicate through dockers network, you just need those requests coming in from the internet)

apiVersion: v1
kind: Service
metadata:
  namespace: rcon
  labels:
    app: frontend
  name: frontend
spec:
  type: NodePort
  ports:
    - name: "web-http"
      port: 8010
      targetPort: 80
    - name: "web-https"
      port: 9010
      targetPort: 443
    - name: "stats-http"
      port: 7010
      targetPort: 81
    - name: "stats-https"
      port: 7011
      targetPort: 444
  selector:
    app: frontend
status:
  loadBalancer: