mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-31 05:49:04 +00:00
866512eef0
* [homebridge] Migrate to common v3 Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev> * [homebridge] Update to latest common Signed-off-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
75 lines
1.9 KiB
YAML
75 lines
1.9 KiB
YAML
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
|
#
|
|
|
|
image:
|
|
# -- image repository
|
|
repository: oznu/homebridge
|
|
# -- image tag
|
|
tag: 4.0.0
|
|
# -- image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
# -- environment variables. See [image docs](https://github.com/oznu/docker-homebridge#parameters) for more details.
|
|
# @default -- See below
|
|
env:
|
|
# -- Set the container timezone
|
|
TZ: UTC
|
|
# -- Specify the user ID the application will run as
|
|
PUID: "1000"
|
|
# -- Specify the group ID the application will run as
|
|
PGID: "1000"
|
|
# -- Enable the Homebridge UI
|
|
HOMEBRIDGE_CONFIG_UI: 1
|
|
|
|
# -- Configures service settings for the chart.
|
|
# @default -- See values.yaml
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 8581
|
|
|
|
# -- Enable hostNetwork - needed for discovery to work
|
|
hostNetwork: false
|
|
|
|
ingress:
|
|
# -- Enable and configure ingress settings for the chart under this key.
|
|
# @default -- See values.yaml
|
|
main:
|
|
enabled: false
|
|
|
|
# -- Configure persistence settings for the chart under this key.
|
|
# @default -- See values.yaml
|
|
persistence:
|
|
config:
|
|
enabled: false
|
|
mountPath: /homebridge
|
|
|
|
# -- Custom startup.sh script to install additional packages in the container
|
|
# @default -- string
|
|
config: |
|
|
#!/bin/sh
|
|
|
|
#
|
|
# Docker Homebridge Custom Startup Script - oznu/homebridge
|
|
#
|
|
# This script can be used to customise the environment and will be executed as
|
|
# the root user each time the container starts.
|
|
#
|
|
# If using this to install plugins DO NOT use the global flag (-g).
|
|
#
|
|
# Example installing homebridge plugin:
|
|
#
|
|
# npm install homebridge-hue
|
|
#
|
|
# Example installing packages using default image (Alpine Linux):
|
|
#
|
|
# apk add --no-cache ffmpeg ffmpeg-libs libpcap-dev
|
|
#
|
|
# If you're running a debian based version of this container please use apt-get to install packages.
|
|
#
|