This commit is contained in:
Sense T
2022-10-01 09:09:30 +00:00
parent 938db68be9
commit ffef0a5d92
19 changed files with 429 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: ksp-forwarder
spec:
selector:
matchLabels:
app: ksp-forwarder
template:
metadata:
labels:
app: ksp-forwarder
spec:
hostNetwork: true
containers:
- name: ksp-forwarder
image: alpine/socat:1.7.4.3-r0
args:
- '-ls'
- UDP-LISTEN:8800,reuseaddr,fork
- UDP6:ksp.midymidy.tk:8800
resources:
limits:
cpu: 100m
memory: 32Mi
requests:
cpu: 10m
memory: 8Mi

View File

@@ -0,0 +1,6 @@
# yaml-language-server: $schema=https://json.schemastore.org/kustomization.json
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- daemonset.yaml