Files
truecharts/charts/stable/octoprint/values.yaml
T
Stavros KoisandGitHub b1e5faa4c4 fix(apps): move conflicting ports to 10xxx range (#1415)
* fix(apps): move conflicting ports to 10xxx range

* remove `protocol: TCP` as its the default anyway

* Change `"HTTP"` -> `HTTP` to much common

* lms udp port should be udp protocol

* resolve some conflicts

* clear port 80 conficts

* clean 3000 and 5000 port conflicts

* more conflict cleaning

* more conflict cleaning

* more cleanup

* more

* cleanup

* Avoid confclicts with official apps
2021-11-28 10:26:31 +01:00

55 lines
1.3 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: ghcr.io/truecharts/octoprint
# -- image tag
tag: v1.7.2@sha256:80d677488365ad240b0cef90fa381ba849dcd82dfc62b11689d88da9867956c6
# -- image pull policy
pullPolicy: IfNotPresent
securityContext:
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
# -- environment variables.
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Enable MJPG Streamer
# Enable this to ensure camera streaming is enabled you add a video device.
ENABLE_MJPG_STREAMER: "true"
# -- MJPG Streamer input parameters
MJPG_STREAMER_INPUT: # "-y -n -r 640x480"
# -- MJPG Streamer camera device
CAMERA_DEV: # /dev/video0
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
main:
port: 10021
targetPort: 80
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
data:
enabled: true
mountPath: "/octoprint"
# -- Configure a hostPathMount to mount a USB device in the container.
# @default -- See values.yaml
varrun:
enabled: true