Official Helm chart #5874
franco-ruggeri
started this conversation in
General
Replies: 2 comments
-
|
There is not. Theres little interest in it and its not something myself or Ben use, so no one to maintain something like that |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
From a complete outsider, I think Homepage is too trivial to deploy to justify a helm chart for it. If you'd like, you can can use BjWs' common chart to deploy it with values similar to this: Valuescontrollers:
main:
serviceAccount:
name: homepage
containers:
main:
image:
repository: ghcr.io/gethomepage/homepage
tag: v1.4.6@sha256:a1a578fdcfc72754985c3b3b26e4f398a6a782e354d10cf2b156ecbf06d252e9
env:
HOMEPAGE_ALLOWED_HOSTS: homepage.domain.tld
probes:
startup:
enabled: true
custom: true
type: TCP
spec:
initialDelaySeconds: 45 # Time to wait before starting the probe
periodSeconds: 10 # How often to perform the probe
timeoutSeconds: 5 # Number of seconds after which the probe times out
failureThreshold: 10 # Number of times to try the probe before giving up
httpGet: &probesPath
path: /
port: 3000
readiness: &probes
enabled: true
custom: true
spec:
initialDelaySeconds: 5 # Time to wait before starting the probe after startup probe succeeds
periodSeconds: 20 # How often to perform the probe
timeoutSeconds: 10 # Number of seconds after which the probe times out
failureThreshold: 3 # Number of times to try the probe before considering the container not ready
httpGet: *probesPath
liveness: *probes
service:
main:
controller: main
enabled: true
ports:
http:
port: 3000
persistence:
config:
enabled: true
type: secret
name: homepage-configs
advancedMounts:
main:
main:
- path: /app/config
icons:
enabled: true
type: persistentVolumeClaim
existingClaim: homepage-icons-pvc
advancedMounts:
main:
main:
- path: /app/public/icons
images:
enabled: true
type: persistentVolumeClaim
existingClaim: homepage-images-pvc
advancedMounts:
main:
main:
- path: /app/public/imagesThere's a site called Kubesearch that aggregates what the home ops community running Flux use to deploy various apps if that's any help 🙂 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I was wondering if there is any plan to add an official Helm chart. I checked the documentation and saw some mentions to an "unofficial" Helm chart (without link). I also noticed that before February 2023, there was a Helm chart in this repo, but it was removed with 7740f7e.
Beta Was this translation helpful? Give feedback.
All reactions