mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-12-11 09:43:08 +01:00
15 lines
227 B
YAML
15 lines
227 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: nginx-http-svc
|
||
|
labels:
|
||
|
app: nginx-http
|
||
|
spec:
|
||
|
type: LoadBalancer
|
||
|
ports:
|
||
|
- port: 30080
|
||
|
targetPort: 80
|
||
|
protocol: TCP
|
||
|
name: http
|
||
|
selector:
|
||
|
app: nginx-http
|