17 lines
342 B
YAML
17 lines
342 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: awx-web-nodeport
|
|
namespace: awx
|
|
spec:
|
|
selector:
|
|
app.kubernetes.io/component: web
|
|
app.kubernetes.io/name: awx
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 8052
|
|
nodePort: 30080 # You can change this to any valid NodePort (between 30000-32767)
|
|
type: NodePort
|
|
|