Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot
adcf026384 Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 41s
Generated by CI/CD workflow on 2025-11-18 19:38:09

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2025-11-18 19:38:09 +00:00

View File

@@ -11,23 +11,8 @@ spec:
labels:
app: iperf3-server
spec:
hostname: iperf3-$(NODE_NAME)
subdomain: iperf3
initContainers:
- name: set-hostname
image: busybox:1.35
command: ['sh', '-c']
args:
- |
NODE_NAME=$(echo $NODE_NAME | cut -d'.' -f1 | tr '[:upper:]' '[:lower:]')
echo "iperf3-${NODE_NAME}" > /etc/hostname
hostname "iperf3-${NODE_NAME}"
securityContext:
privileged: true
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
containers:
- name: iperf3-server
image: networkstatic/iperf3:latest
@@ -40,8 +25,6 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: HOSTNAME
value: $(NODE_NAME)
resources:
requests:
memory: "64Mi"