mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-09-01 17:58:24 +00:00
28 lines
631 B
YAML
28 lines
631 B
YAML
# Expose both the S3 API and website endpoints through Ingress, with TLS.
|
|
ingress:
|
|
s3:
|
|
api:
|
|
enabled: true
|
|
className: "nginx"
|
|
hosts:
|
|
- host: "s3.example.com"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: garage-s3-api-tls
|
|
hosts:
|
|
- s3.example.com
|
|
web:
|
|
enabled: true
|
|
className: "nginx"
|
|
hosts:
|
|
- host: "*.web.example.com"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: garage-s3-web-tls
|
|
hosts:
|
|
- "*.web.example.com"
|