2024-04-26 14:47:33 +00:00
|
|
|
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
|
|
|
kind: HelmRelease
|
|
|
|
metadata:
|
2024-04-26 15:38:12 +00:00
|
|
|
name: podinfo
|
2024-04-26 21:50:31 +00:00
|
|
|
namespace: futureporn
|
2024-04-26 14:47:33 +00:00
|
|
|
spec:
|
2024-04-26 15:38:12 +00:00
|
|
|
releaseName: podinfo
|
2024-04-26 14:47:33 +00:00
|
|
|
chart:
|
|
|
|
spec:
|
2024-04-26 15:38:12 +00:00
|
|
|
chart: podinfo
|
2024-04-26 14:47:33 +00:00
|
|
|
sourceRef:
|
2024-04-26 15:38:12 +00:00
|
|
|
kind: HelmRepository
|
|
|
|
name: podinfo
|
|
|
|
interval: 50m
|
2024-04-26 14:47:33 +00:00
|
|
|
install:
|
|
|
|
remediation:
|
|
|
|
retries: 3
|
2024-04-26 15:38:12 +00:00
|
|
|
# Default values
|
|
|
|
# https://github.com/stefanprodan/podinfo/blob/master/charts/podinfo/values.yaml
|
2024-04-26 14:47:33 +00:00
|
|
|
values:
|
2024-04-26 15:38:12 +00:00
|
|
|
redis:
|
|
|
|
enabled: true
|
|
|
|
repository: public.ecr.aws/docker/library/redis
|
|
|
|
tag: 7.0.6
|
|
|
|
ingress:
|
2024-04-26 20:37:08 +00:00
|
|
|
enabled: true
|
2024-04-26 19:40:47 +00:00
|
|
|
className: "nginx"
|
|
|
|
annotations:
|
2024-04-26 20:53:49 +00:00
|
|
|
kubernetes.io/ingress.class: "nginx"
|
2024-04-26 22:19:45 +00:00
|
|
|
cert-manager.io/cluster-issuer: "letsencrypt"
|
2024-04-26 20:53:49 +00:00
|
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
2024-04-26 19:40:47 +00:00
|
|
|
hosts:
|
|
|
|
- host: podinfo.sbtp.xyz
|
|
|
|
paths:
|
|
|
|
- path: /
|
|
|
|
pathType: Prefix
|
|
|
|
tls:
|
|
|
|
- secretName: podinfo-tls
|
|
|
|
hosts:
|
2024-04-26 20:53:49 +00:00
|
|
|
- podinfo.sbtp.xyz
|