[TVheadend] - New chart contribution (#464)

This commit is contained in:
Mike K 2021-01-02 21:27:58 +00:00 committed by GitHub
parent b4e3d966aa
commit 5e9124b1db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 116 additions and 0 deletions

View 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/

View 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

View 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
```

View File

@ -0,0 +1 @@
{{- include "common.notes.defaultNotes" . -}}

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View 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