mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
![feisar-bot[bot]](/assets/img/avatar_default.png)
| datasource | package | from | to | | ---------- | ---------------------------- | ------- | ------- | | docker | ghcr.io/gethomepage/homepage | v0.10.6 | v0.10.7 |
98 lines
2.5 KiB
YAML
98 lines
2.5 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 homepage
|
|
namespace: default
|
|
spec:
|
|
interval: 30m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 3.6.0
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjw-s
|
|
namespace: flux-system
|
|
maxHistory: 2
|
|
install:
|
|
createNamespace: true
|
|
remediation:
|
|
retries: 3
|
|
upgrade:
|
|
cleanupOnFail: true
|
|
remediation:
|
|
strategy: rollback
|
|
retries: 3
|
|
uninstall:
|
|
keepHistory: false
|
|
values:
|
|
controllers:
|
|
homepage:
|
|
replicas: 2
|
|
strategy: RollingUpdate
|
|
annotations:
|
|
reloader.stakater.com/auto: "true"
|
|
containers:
|
|
app:
|
|
image:
|
|
repository: ghcr.io/gethomepage/homepage
|
|
tag: v0.10.7@sha256:b261c981a866a0e287205394bf365bd8cdb9152469a85ec569d7bfcd7812cf14
|
|
env:
|
|
TZ: ${TIMEZONE}
|
|
envFrom:
|
|
- secretRef:
|
|
name: homepage-secret
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
readiness:
|
|
enabled: true
|
|
resources:
|
|
requests:
|
|
cpu: 15m
|
|
memory: 200M
|
|
limits:
|
|
memory: 2G
|
|
service:
|
|
app:
|
|
controller: *app
|
|
ports:
|
|
http:
|
|
port: 3000
|
|
serviceAccount:
|
|
create: true
|
|
name: *app
|
|
ingress:
|
|
app:
|
|
enabled: true
|
|
className: nginx
|
|
hosts:
|
|
- host: &host "{{ .Release.Name }}.${SECRET_EXTERNAL_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
service:
|
|
identifier: app
|
|
port: http
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
persistence:
|
|
config:
|
|
type: configMap
|
|
name: homepage-config
|
|
globalMounts:
|
|
- subPath: bookmarks.yaml
|
|
path: /app/config/bookmarks.yaml
|
|
- subPath: docker.yaml
|
|
path: /app/config/docker.yaml
|
|
- subPath: kubernetes.yaml
|
|
path: /app/config/kubernetes.yaml
|
|
- subPath: services.yaml
|
|
path: /app/config/services.yaml
|
|
- subPath: settings.yaml
|
|
path: /app/config/settings.yaml
|
|
- subPath: widgets.yaml
|
|
path: /app/config/widgets.yaml
|