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: / - 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