Compare commits

..

4 Commits

Author SHA1 Message Date
Gitea Actions Bot
5b1ceb1740 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:41:36

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2025-11-18 19:41:36 +00:00
Ultradesu
b433373725 Fixed iperf3
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 13s
Check with kubeconform / lint (push) Successful in 13s
Auto-update README / Generate README and Create MR (push) Successful in 12s
2025-11-18 21:40:53 +02:00
Ultradesu
3026e53746 Added iperf3-server
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 12s
Check with kubeconform / lint (push) Successful in 27s
Auto-update README / Generate README and Create MR (push) Successful in 11s
2025-11-18 21:37:09 +02:00
Ultradesu
63669c69ff Added iperf3-server
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 12s
Check with kubeconform / lint (push) Successful in 41s
Auto-update README / Generate README and Create MR (push) Successful in 15s
2025-11-18 21:33:34 +02:00
2 changed files with 19 additions and 2 deletions

View File

@@ -11,8 +11,23 @@ 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
@@ -25,6 +40,8 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- name: HOSTNAME
value: $(NODE_NAME)
resources:
requests:
memory: "64Mi"

View File

@@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: iperf3-exporter
image: edgardlt/iperf3_exporter:latest
image: ghcr.io/edgard/iperf3_exporter:1.2.2
ports:
- containerPort: 9579
name: metrics