17 lines
340 B
YAML
17 lines
340 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}
|
|
annotations:
|
|
metallb.universe.tf/address-pool: "production"
|
|
metallb.universe.tf/allow-shared-ip: "production"
|
|
spec:
|
|
type: LoadBalancer
|
|
selector:
|
|
app.kubernetes.io/name: iperf
|
|
ports:
|
|
- name: iperf
|
|
protocol: TCP
|
|
port: 5201
|
|
targetPort: iperf
|