move ports back to 8200

This commit is contained in:
Joseph Hanson 2024-09-10 20:52:52 -05:00
parent a8de7ab7b0
commit 357f836592
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -38,14 +38,14 @@ spec:
- path: /
service:
identifier: vault
port: http
port: &port 8200
tls:
- hosts:
- *host
service:
type: "ClusterIP"
port: &internalPort 8200
targetPort: &port 80
port: *port
targetPort: *port
# off until it's online for the first time
readinessProbe:
enabled: false
@ -115,5 +115,5 @@ spec:
# The service should only contain selectors for active Vault pod
activeVaultPodOnly: true
serviceType: "LoadBalancer"
externalPort: *internalPort
externalPort: *port
targetPort: *port