17 lines
276 B
YAML
17 lines
276 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-mycelium
|
|
namespace: default
|
|
labels:
|
|
app: nginx-mycelium
|
|
spec:
|
|
type: NodePort
|
|
selector:
|
|
app: nginx-direct-access
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|
|
nodePort: 30090
|
|
protocol: TCP
|
|
name: http |