14 lines
240 B
YAML
14 lines
240 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: privatebin
|
|
namespace: privatebin
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app.kubernetes.io/name: privatebin
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 8081
|
|
name: http |