Created
February 10, 2023 05:30
-
-
Save gmorse81/e64eb8b4b9e93754b6aa1d8d925c01aa to your computer and use it in GitHub Desktop.
values.yaml example file for microk8s home assistant -
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
home-assistant: | |
env: | |
# -- Set the container timezone | |
TZ: "America/New York" | |
hostNetwork: true | |
ingress: | |
main: | |
enabled: true | |
annotations: | |
nginx.org/websocket-services: home-assistant | |
kubernetes.io/ingress.class: nginx | |
hosts: | |
- host: yourdomainhere.com | |
paths: | |
- path: / | |
persistence: | |
config: | |
enabled: true | |
storageClass: "microk8s-hostpath" | |
size: 8Gi | |
influxdb: | |
enabled: true | |
architecture: standalone | |
database: home_assistant | |
authEnabled: false | |
# populate this after install. get values from the secret created. | |
#auth: | |
# admin: | |
# password: "" | |
# token: "" | |
persistence: | |
enabled: true | |
storageClass: "microk8s-hostpath" | |
size: 8Gi | |
addons: | |
# -- Enable and configure codeserver for the chart. | |
# This allows for easy access to configuration.yaml | |
# @default -- See values.yaml | |
codeserver: | |
enabled: true | |
args: | |
- --auth | |
- none | |
- --user-data-dir | |
- /data/config/.vscode | |
volumeMounts: | |
- name: config | |
mountPath: /data/config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment