mirror of
https://github.com/alexohneander/alexohneander-astro.git
synced 2025-06-29 06:51:55 +00:00
28 lines
714 B
YAML
28 lines
714 B
YAML
image:
|
|
repository: alexohneander/alexohneander-astro
|
|
pullPolicy: IfNotPresent
|
|
# Overrides the image tag whose default is the chart appVersion.
|
|
tag: "v2.3.5"
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
annotations:
|
|
kubernetes.io/ingress.class: nginx
|
|
kubernetes.io/tls-acme: "true"
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
nginx.ingress.kubernetes.io/configuration-snippet : |
|
|
if ($request_uri ~* \.(gif|jpe?g|png|woff2)) {
|
|
expires 1M;
|
|
add_header Cache-Control "public";
|
|
}
|
|
hosts:
|
|
- host: alexohneander.de
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: alexohneander-tls
|
|
hosts:
|
|
- alexohneander.de
|