71 lines
1.7 KiB
YAML
71 lines
1.7 KiB
YAML
|
---
|
||
|
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2.schema.json
|
||
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||
|
kind: HelmRelease
|
||
|
metadata:
|
||
|
name: &app it-tools
|
||
|
spec:
|
||
|
interval: 30m
|
||
|
chart:
|
||
|
spec:
|
||
|
chart: app-template
|
||
|
version: 3.3.2
|
||
|
sourceRef:
|
||
|
kind: HelmRepository
|
||
|
name: bjw-s
|
||
|
namespace: flux-system
|
||
|
install:
|
||
|
remediation:
|
||
|
retries: 3
|
||
|
upgrade:
|
||
|
cleanupOnFail: true
|
||
|
remediation:
|
||
|
retries: 3
|
||
|
strategy: rollback
|
||
|
values:
|
||
|
controllers:
|
||
|
it-tools:
|
||
|
annotations:
|
||
|
reloader.stakater.com/auto: "true"
|
||
|
containers:
|
||
|
app:
|
||
|
image:
|
||
|
repository: ghcr.io/corentinth/it-tools
|
||
|
tag: 2024.5.13-a0bc346
|
||
|
env:
|
||
|
TZ: America/Chicago
|
||
|
probes:
|
||
|
liveness:
|
||
|
enabled: true
|
||
|
readiness:
|
||
|
enabled: true
|
||
|
resources:
|
||
|
requests:
|
||
|
cpu: 100m
|
||
|
limits:
|
||
|
memory: 500Mi
|
||
|
service:
|
||
|
app:
|
||
|
controller: *app
|
||
|
ports:
|
||
|
http:
|
||
|
port: 80
|
||
|
ingress:
|
||
|
app:
|
||
|
enabled: true
|
||
|
className: external-nginx
|
||
|
annotations:
|
||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||
|
external-dns.alpha.kubernetes.io/target: external.hsn.dev
|
||
|
|
||
|
hosts:
|
||
|
- host: &host tools.hsn.dev
|
||
|
paths:
|
||
|
- path: /
|
||
|
service:
|
||
|
identifier: app
|
||
|
port: http
|
||
|
tls:
|
||
|
- hosts:
|
||
|
- *host
|