mirror of https://github.com/sgoudham/k8s
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
581 B
YAML
38 lines
581 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: pastebin-http
|
|
name: pastebin-http
|
|
namespace: pastebin
|
|
spec:
|
|
type: ClusterIP
|
|
ipFamilies:
|
|
- IPv4
|
|
ports:
|
|
- port: 8080
|
|
protocol: TCP
|
|
targetPort: 8080
|
|
selector:
|
|
app: pastebin
|
|
sessionAffinity: None
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: pastebin-ssh
|
|
name: pastebin-ssh
|
|
namespace: pastebin
|
|
spec:
|
|
type: LoadBalancer
|
|
ipFamilies:
|
|
- IPv4
|
|
ports:
|
|
- port: 2222
|
|
protocol: TCP
|
|
targetPort: 2222
|
|
selector:
|
|
app: pastebin
|
|
sessionAffinity: None
|