56 lines
1.5 KiB
YAML
56 lines
1.5 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: mikenye/piaware
|
||
|
# -- image tag
|
||
|
tag: v5.0
|
||
|
# -- image pull policy
|
||
|
pullPolicy: IfNotPresent
|
||
|
|
||
|
# -- environment variables. See [application docs](https://flightaware.com/adsb/piaware/advanced_configuration) for more details.
|
||
|
# @default -- See below
|
||
|
env:
|
||
|
# -- Set the container timezone
|
||
|
TZ: UTC
|
||
|
|
||
|
# -- Configures service settings for the chart.
|
||
|
# @default -- See values.yaml
|
||
|
service:
|
||
|
main:
|
||
|
ports:
|
||
|
main:
|
||
|
port: 8080
|
||
|
|
||
|
|
||
|
securityContext:
|
||
|
# -- (bool) Privileged securityContext may be required if USB device is accessed directly through the host machine
|
||
|
privileged: true
|
||
|
|
||
|
# -- Configure persistence settings for the chart under this key.
|
||
|
# @default -- See values.yaml
|
||
|
persistence:
|
||
|
# -- Configure a hostPathMount to mount a USB device in the container.
|
||
|
# @default -- See values.yaml
|
||
|
usb:
|
||
|
enabled: false
|
||
|
type: hostPath
|
||
|
hostPath: /dev/bus/usb/001/004
|
||
|
|
||
|
# -- Affinity constraint rules to place the Pod on a specific node.
|
||
|
# [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#affinity-and-anti-affinity)
|
||
|
affinity: {}
|
||
|
# nodeAffinity:
|
||
|
# requiredDuringSchedulingIgnoredDuringExecution:
|
||
|
# nodeSelectorTerms:
|
||
|
# - matchExpressions:
|
||
|
# - key: app
|
||
|
# operator: In
|
||
|
# values:
|
||
|
# - piaware
|