70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
apiVersion: helm.toolkit.fluxcd.io/v2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: hastebin
|
|
namespace: tools
|
|
labels:
|
|
needsDatabase: "yes"
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.3.x
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjws-charts
|
|
namespace: flux-system
|
|
|
|
values:
|
|
image:
|
|
repository: flippinturt/hastebin
|
|
tag: latest
|
|
|
|
podLabels:
|
|
needsDatabase: "yes"
|
|
|
|
env:
|
|
STORAGE_TYPE: redis
|
|
STORAGE_HOST: redis-master.database
|
|
STORAGE_PORT: "6379"
|
|
|
|
STORAGE_PASSWORD:
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: redis-secrets
|
|
key: password
|
|
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 7777
|
|
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
hosts:
|
|
- host: &host "paste.${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 1m
|
|
memory: 14Mi
|
|
|
|
# limits:
|
|
# memory: 50Mi |