mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[TVheadend] - New chart contribution (#464)
This commit is contained in:
parent
b4e3d966aa
commit
5e9124b1db
23
charts/tvheadend/.helmignore
Normal file
23
charts/tvheadend/.helmignore
Normal file
@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*.orig
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
.vscode/
|
18
charts/tvheadend/Chart.yaml
Normal file
18
charts/tvheadend/Chart.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
apiVersion: v2
|
||||
appVersion: latest
|
||||
description: TVheadend - a TV streaming server and digital video recorder
|
||||
name: tvheadend
|
||||
version: 1.0.0
|
||||
keywords:
|
||||
- tv
|
||||
- streaming
|
||||
- dvb
|
||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/tvheadend
|
||||
sources:
|
||||
- https://github.com/tvheadend/tvheadend
|
||||
maintainers:
|
||||
- name: mr-onion-2
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://k8s-at-home.com/charts/
|
||||
version: 2.1.1
|
43
charts/tvheadend/README.md
Normal file
43
charts/tvheadend/README.md
Normal file
@ -0,0 +1,43 @@
|
||||
# tvheadend
|
||||
|
||||
This is a helm chart for [tvheadend](https://github.com/tvheadend/tvheadend).
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/k8s-at-home/charts/issues/new/choose).**
|
||||
|
||||
## TL;DR;
|
||||
|
||||
```shell
|
||||
$ helm repo add k8s-at-home https://k8s-at-home.com/charts/
|
||||
$ helm install k8s-at-home/tvheadend
|
||||
```
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
helm install my-release k8s-at-home/tvheadend
|
||||
```
|
||||
|
||||
## Uninstalling the Chart
|
||||
|
||||
To uninstall/delete the `my-release` deployment:
|
||||
|
||||
```console
|
||||
helm delete my-release --purge
|
||||
```
|
||||
The command removes all the Kubernetes components associated with the chart and deletes the release.
|
||||
|
||||
## Configuration
|
||||
The chart's [values.yaml](https://github.com/k8s-at-home/charts/blob/master/charts/tvheadend/values.yaml) file contains a set of suggested values for a minimal deployment. Further configuration options are found in the [common library](https://github.com/k8s-at-home/charts/blob/master/charts/common/values.yaml).
|
||||
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
```console
|
||||
helm install tvheadend \
|
||||
--set env.TZ="America/New_York" \
|
||||
k8s-at-home/tvheadend
|
||||
```
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
```console
|
||||
helm install tvheadend k8s-at-home/tvheadend --values values.yaml
|
||||
```
|
1
charts/tvheadend/templates/NOTES.txt
Normal file
1
charts/tvheadend/templates/NOTES.txt
Normal file
@ -0,0 +1 @@
|
||||
{{- include "common.notes.defaultNotes" . -}}
|
1
charts/tvheadend/templates/common.yaml
Normal file
1
charts/tvheadend/templates/common.yaml
Normal file
@ -0,0 +1 @@
|
||||
{{ include "common.all" . }}
|
30
charts/tvheadend/values.yaml
Normal file
30
charts/tvheadend/values.yaml
Normal file
@ -0,0 +1,30 @@
|
||||
# Default values for tvheadend.
|
||||
|
||||
image:
|
||||
repository: linuxserver/tvheadend
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest
|
||||
|
||||
strategy:
|
||||
type: Recreate
|
||||
|
||||
# See https://github.com/linuxserver/docker-tvheadend#parameters
|
||||
env: {}
|
||||
# PUID: 1000
|
||||
# PGID: 1000
|
||||
# TZ: Europe/London
|
||||
# RUN_OPTS: <run options here>
|
||||
|
||||
service:
|
||||
port:
|
||||
port: 9981
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: false
|
||||
emptyDir: false
|
||||
mountPath: /config
|
||||
recordings:
|
||||
enabled: false
|
||||
emptyDir: false
|
||||
mountPath: /recordings
|
Loading…
Reference in New Issue
Block a user