add oscam to incubator (#918)

feat: add oscam to incubator

* fix format and set default nodeport

* Update charts/incubator/oscam/SCALE/questions.yaml

* Update charts/incubator/oscam/values.yaml

* Update charts/incubator/oscam/SCALE/questions.yaml

* Sogo wos first!

* Update charts/incubator/oscam/Chart.yaml

* Update charts/incubator/oscam/SCALE/item.yaml

* use correct default port

* Update charts/incubator/oscam/SCALE/questions.yaml

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>

* update PUID in helm-values

* use specific tag (currently latest)

* Update charts/incubator/oscam/SCALE/questions.yaml

Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
This commit is contained in:
gismo2004
2021-09-08 00:24:15 +02:00
committed by GitHub
parent 6c4a7ddfcc
commit cfea68a301
11 changed files with 1243 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# Configuration Options
##### Connecting to other apps
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
##### Available config options
In the future this page is going to contain an automated list of options available in the installation/edit UI.

View File

@@ -0,0 +1,22 @@
apiVersion: v2
appVersion: auto
dependencies:
- name: common
repository: https://truecharts.org
version: 6.13.7
deprecated: false
description: "Open Source Conditional Access Module software"
home: https://github.com/truecharts/apps/tree/master/charts/stable/oscam
icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/oscam-logo.png
keywords:
- oscam
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: oscam
sources:
- https://trac.streamboard.tv/oscam/browser/trunk
type: application
version: 1.0.0

View File

@@ -0,0 +1,37 @@
# Introduction
OSCam is an Open Source Conditional Access Module software, based on the very good MpCS version 0.9d created by ?dukat.
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
## Source Code
* <https://trac.streamboard.tv/oscam/browser/trunk>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 6.13.7 |
## Installing the Chart
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
## Uninstalling the Chart
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
## Support
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
- See the [Wiki](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
---
All Rights Reserved - The TrueCharts Project

View File

@@ -0,0 +1,3 @@
categories:
- DIY
icon_url: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/oscam-logo.png

View File

@@ -0,0 +1,15 @@
##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: ghcr.io/linuxserver/oscam
pullPolicy: IfNotPresent
tag: version-11693
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,3 @@
OSCam is an Open Source Conditional Access Module software, based on the very good MpCS version 0.9d created by dukat.
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

View File

@@ -0,0 +1,23 @@
# Default Helm-Values
TrueCharts is primarily build to supply TrueNAS SCALE Apps.
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
Most of our Apps also consume our "common" Helm Chart.
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
## Values
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| env.PGID | string | `"568"` | Specify the group ID the application will run as |
| env.PUID | string | `"20"` | Specify the user ID the application will run as |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"ghcr.io/linuxserver/oscam"` | image repository |
| image.tag | string | `"latest"` | image tag |
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
| service | object | See values.yaml | Configures service settings for the chart. |
All Rights Reserved - The TrueCharts Project

View File

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

View File

@@ -0,0 +1,28 @@
# Default values for oscam
image:
repository: ghcr.io/linuxserver/oscam
pullPolicy: IfNotPresent
tag: version-11693
env:
TZ: UTC
PUID: "568"
# currently needed for working with /dev/ttyXYZ devices
# see: https://github.com/linuxserver/docker-oscam/issues/21
PGID: "20"
service:
main:
enabled: true
ports:
main:
port: 8888
persistence:
config:
enabled: true
mountPath: "/config"
type: pvc
accessMode: ReadWriteOnce
size: "100Gi"

View File

@@ -121,5 +121,7 @@ These defaults can ofcoarse be changed, but as we guarantee "sane, working defau
| OpenLDAP | main | 36099 | | |
| OpenLDAP | https | 36100 | | |
| pihole | main | 36101 | | |
| Sogo | main | 36102 | | |
| oscam | main | 36103 | | |
#### Note: TCP and UPD ports that are the same in each App, are not by mistake.