The new nginx-based container is listening on port 80, not 8080

This commit is contained in:
R. Tyler Croy 2017-12-12 17:10:46 -08:00
parent a63885105b
commit 85404e7f1c
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ items:
ports: ports:
- name: 'http' - name: 'http'
port: 80 port: 80
targetPort: 8080 targetPort: 80
protocol: TCP protocol: TCP
- name: 'jnlp' - name: 'jnlp'
port: 50000 port: 50000
@ -88,7 +88,7 @@ items:
image: "rtyler/codevalet-master:latest" image: "rtyler/codevalet-master:latest"
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8080 - containerPort: 80
name: http name: http
- containerPort: 50000 - containerPort: 50000
name: jnlp name: jnlp