mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-03 08:37:03 +02:00
feat(common): Release v2.3.0 (#228)
Signed-off-by: Christopher Larivière <lariviere.c@gmail.com> Co-authored-by: Christopher Larivière <lariviere.c@gmail.com>
This commit is contained in:
parent
8bfc33eb8a
commit
0eac5ba7d7
23 changed files with 638 additions and 17 deletions
109
examples/helm/home-assistant/values.yaml
Normal file
109
examples/helm/home-assistant/values.yaml
Normal file
|
@ -0,0 +1,109 @@
|
|||
# Configure options applied to all pods
|
||||
defaultPodOptions:
|
||||
automountServiceAccountToken: false
|
||||
securityContext:
|
||||
runAsUser: 568
|
||||
runAsGroup: 568
|
||||
fsGroup: 568
|
||||
fsGroupChangePolicy: "OnRootMismatch"
|
||||
|
||||
controllers:
|
||||
# Configure the main controller
|
||||
main:
|
||||
type: statefulset
|
||||
annotations:
|
||||
reloader.stakater.com/auto: "true"
|
||||
|
||||
containers:
|
||||
# Configure the main application container
|
||||
main:
|
||||
image:
|
||||
# -- image repository
|
||||
repository: ghcr.io/onedr0p/home-assistant
|
||||
# -- image tag
|
||||
# this example is not automatically updated, so be sure to use the latest image
|
||||
tag: 2023.11.2
|
||||
|
||||
# Configure the code-server sidecar
|
||||
code:
|
||||
dependsOn: main
|
||||
image:
|
||||
# -- image repository
|
||||
repository: ghcr.io/coder/code-server
|
||||
# -- image tag
|
||||
# this example is not automatically updated, so be sure to use the latest image
|
||||
tag: 4.19.0
|
||||
args:
|
||||
- --auth
|
||||
- "none"
|
||||
- --user-data-dir
|
||||
- "/config/.vscode"
|
||||
- --extensions-dir
|
||||
- "/config/.vscode"
|
||||
- --port
|
||||
- "8081"
|
||||
- "/config"
|
||||
|
||||
service:
|
||||
# Configure a service for the main application
|
||||
main:
|
||||
type: ClusterIP
|
||||
ports:
|
||||
http:
|
||||
port: 8123
|
||||
# Configure a service for the code-server sidecar
|
||||
code:
|
||||
type: ClusterIP
|
||||
controller: main
|
||||
ports:
|
||||
http:
|
||||
port: 8081
|
||||
|
||||
ingress:
|
||||
# Configure an Ingress for the main application
|
||||
main:
|
||||
enabled: true
|
||||
ingressClassName: "external-nginx"
|
||||
hosts:
|
||||
- host: &host "hass.example.local"
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
service:
|
||||
name: main
|
||||
port: http
|
||||
tls:
|
||||
- hosts:
|
||||
- *host
|
||||
# Configure an Ingress for the code-server sidecar
|
||||
code:
|
||||
enabled: true
|
||||
ingressClassName: "internal-nginx"
|
||||
hosts:
|
||||
- host: &host-code "hass-code.example.local"
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
service:
|
||||
name: code
|
||||
port: http
|
||||
tls:
|
||||
- hosts:
|
||||
- *host-code
|
||||
|
||||
persistence:
|
||||
# Configure the main configuration storage location
|
||||
config:
|
||||
enabled: true
|
||||
existingClaim: home-assistant-config
|
||||
globalMounts:
|
||||
- path: /config
|
||||
|
||||
# Configure an NFS mount to store backups on
|
||||
backup:
|
||||
enabled: true
|
||||
type: nfs
|
||||
server: nas.example.lan
|
||||
path: /volume/Backups/k8s/hass
|
||||
globalMounts:
|
||||
- path: /config/backups
|
Loading…
Add table
Add a link
Reference in a new issue