move ports back to 8200
This commit is contained in:
parent
a8de7ab7b0
commit
357f836592
1 changed files with 4 additions and 4 deletions
|
@ -38,14 +38,14 @@ spec:
|
||||||
- path: /
|
- path: /
|
||||||
service:
|
service:
|
||||||
identifier: vault
|
identifier: vault
|
||||||
port: http
|
port: &port 8200
|
||||||
tls:
|
tls:
|
||||||
- hosts:
|
- hosts:
|
||||||
- *host
|
- *host
|
||||||
service:
|
service:
|
||||||
type: "ClusterIP"
|
type: "ClusterIP"
|
||||||
port: &internalPort 8200
|
port: *port
|
||||||
targetPort: &port 80
|
targetPort: *port
|
||||||
# off until it's online for the first time
|
# off until it's online for the first time
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
@ -115,5 +115,5 @@ spec:
|
||||||
# The service should only contain selectors for active Vault pod
|
# The service should only contain selectors for active Vault pod
|
||||||
activeVaultPodOnly: true
|
activeVaultPodOnly: true
|
||||||
serviceType: "LoadBalancer"
|
serviceType: "LoadBalancer"
|
||||||
externalPort: *internalPort
|
externalPort: *port
|
||||||
targetPort: *port
|
targetPort: *port
|
||||||
|
|
Loading…
Reference in a new issue