Skip to content

Instantly share code, notes, and snippets.

@samos123
Last active January 24, 2020 00:36
Show Gist options
  • Save samos123/28900f4bfd34fdaa88aa470b77af8f17 to your computer and use it in GitHub Desktop.
Save samos123/28900f4bfd34fdaa88aa470b77af8f17 to your computer and use it in GitHub Desktop.
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: iperf3-server
spec:
replicas: 1
revisionHistoryLimit: 10
selector:
matchLabels:
app: iperf3-server
template:
metadata:
labels:
app: iperf3-server
spec:
containers:
- name: iperf3-server
image: networkstatic/iperf3
args:
- -s
ports:
- containerPort: 5201
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: iperf3-server
spec:
selector:
app: iperf3-server
type: LoadBalancer
ports:
- protocol: TCP
port: 5201
targetPort: 5201
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment