Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2024-02-27 19:17:29 +00:00
parent 3eb67eb538
commit 3af4af915b
25 changed files with 4070 additions and 8 deletions

View File

@ -0,0 +1,38 @@
annotations:
max_scale_version: 24.04.0
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: productivity
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: incubator
apiVersion: v2
appVersion: 2.9.45
dependencies:
- name: common
version: 17.2.31
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
deprecated: false
description: Semaphore is a modern, open source alternative to Ansible Tower. It is a self-hosted web-based solution that allows you to create and manage Ansible projects, playbooks, and roles, while also providing a web interface for running and monitoring Ansible tasks.
home: https://truecharts.org/charts/incubator/semaphore
icon: https://truecharts.org/img/hotlink-ok/chart-icons/semaphore.png
keywords:
- ansible
- semaphore
- cicd
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
name: semaphore
sources:
- https://github.com/ansible-semaphore/semaphore
- https://github.com/truecharts/charts/tree/master/charts/incubator/semaphore
- https://hub.docker.com/r/semaphoreui/semaphore
type: application
version: 1.0.3

View File

@ -0,0 +1,28 @@
---
title: README
---
## General Info
TrueCharts can be installed as both _normal_ Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/semaphore)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
_All Rights Reserved - The TrueCharts Project_

View File

@ -0,0 +1,8 @@
Semaphore is a modern, open source alternative to Ansible Tower. It is a self-hosted web-based solution that allows you to create and manage Ansible projects, playbooks, and roles, while also providing a web interface for running and monitoring Ansible tasks.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/semaphore](https://truecharts.org/charts/incubator/semaphore)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,78 @@
image:
repository: semaphoreui/semaphore
tag: v2.9.45@sha256:6a7dbb3e39ab8d1f6331006c2f251ac277360d30b281ab96f5ada81ccc269997
pullPolicy: IfNotPresent
securityContext:
container:
readOnlyRootFilesystem: false
runAsNonRoot: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 3000
protocol: http
targetPort: 3000
workload:
main:
podSpec:
containers:
main:
env:
# DB
SEMAPHORE_DB_DIALECT: postgres
SEMAPHORE_DB_USER: "{{ .Values.cnpg.main.user }}"
SEMAPHORE_DB: "{{ .Values.cnpg.main.database }}"
SEMAPHORE_DB_PORT: 5432
SEMAPHORE_DB_HOST:
secretKeyRef:
name: cnpg-main-urls
key: host
SEMAPHORE_DB_PASS:
secretKeyRef:
name: cnpg-main-user
key: password
SEMAPHORE_ACCESS_KEY_ENCRYPTION:
secretKeyRef:
name: semaphore-secrets
key: SEMAPHORE_ACCESS_KEY_ENCRYPTION
# set paths to /data
SEMAPHORE_PLAYBOOK_PATH: "{{.Values.persistence.data.mountPath }}"
SEMAPHORE_ADMIN: admin
SEMAPHORE_ADMIN_NAME: admin
SEMAPHORE_ADMIN_PASSWORD: changeme
SEMAPHORE_ADMIN_EMAIL: admin@localhost
# LDAP
# no | yes
SEMAPHORE_LDAP_ACTIVATED: "no"
# SEMAPHORE_LDAP_HOST: dc01.local.example.com
# SEMAPHORE_LDAP_PORT: '636'
# no | yes
SEMAPHORE_LDAP_NEEDTLS: "no"
# SEMAPHORE_LDAP_DN_BIND: 'uid=bind_user,cn=users,cn=accounts,dc=local,dc=shiftsystems,dc=net'
# SEMAPHORE_LDAP_PASSWORD: 'ldap_bind_account_password'
# SEMAPHORE_LDAP_DN_SEARCH: 'dc=local,dc=example,dc=com'
# SEMAPHORE_LDAP_SEARCH_FILTER: "(\u0026(uid=%s)(memberOf=cn=ipausers,cn=groups,cn=accounts,dc=local,dc=example,dc=com))"
persistence:
config:
enabled: true
mountPath: /etc/semaphore
data:
enabled: true
mountPath: /data
cnpg:
main:
enabled: true
user: semaphore
database: semaphore
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,13 @@
{{/* Define the secrets */}}
{{- define "semaphore.secrets" -}}
{{- $secretName := (printf "%s-semaphore-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
{{- $accessKey := randAlphaNum 32 -}}
{{- with lookup "v1" "Secret" .Release.Namespace $secretName -}}
{{- $accessKey = index .data "SEMAPHORE_ACCESS_KEY_ENCRYPTION" | b64dec -}}
{{- end }}
enabled: true
data:
SEMAPHORE_ACCESS_KEY_ENCRYPTION: {{ $accessKey }}
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Render secrets for semaphore */}}
{{- $secrets := include "semaphore.secrets" . | fromYaml -}}
{{- if $secrets -}}
{{- $_ := set .Values.secret "semaphore-secrets" $secrets -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File

View File

@ -0,0 +1,30 @@
# 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
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
# OWNERS file for Kubernetes
OWNERS
# helm-docs templates
*.gotmpl
# docs folder
/docs
# icon
icon.png

View File

@ -12,6 +12,10 @@ title: Changelog
## [fireshare-5.1.12](https://github.com/truecharts/charts/compare/fireshare-5.1.11...fireshare-5.1.12) (2024-02-03)
### Chore
@ -93,7 +97,3 @@ title: Changelog
### Chore
- bump all charts for OCI test push
- move everything to consume OCI-hosted common-chart dependency

View File

@ -4,13 +4,13 @@ annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.14"
truecharts.org/min_helm_version: "3.12"
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable
apiVersion: v2
appVersion: 1.2.19
dependencies:
- name: common
version: 18.0.1
version: 18.0.3
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
@ -22,7 +22,7 @@ home: https://truecharts.org/charts/stable/fireshare
icon: https://truecharts.org/img/hotlink-ok/chart-icons/fireshare.png
keywords:
- fireshare
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
maintainers:
- name: TrueCharts
email: info@truecharts.org
@ -33,4 +33,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/fireshare
- https://hub.docker.com/r/shaneisrael/fireshare
type: application
version: 6.1.0
version: 6.2.0

Binary file not shown.

View File

@ -21,6 +21,14 @@ workload:
key: SECRET_KEY
MINUTES_BETWEEN_VIDEO_SCANS: 5
ADMIN_PASSWORD: "changeme"
# TODO ADD LDAP
# LDAP_ENABLE: false
# LDAP_URL: ""
# LDAP_BINDDN: ""
# LDAP_PASSWORD: ""
# LDAP_BASEDN: ""
# LDAP_USER_FILTER: ""
# LDAP_ADMIN_GROUP: ""
service:
main:

View File

@ -120,6 +120,7 @@ questions:
description: "The admin account password"
schema:
type: string
private: true
default: ""
- variable: MINUTES_BETWEEN_VIDEO_SCANS
label: "MINUTES_BETWEEN_VIDEO_SCANS"
@ -127,6 +128,185 @@ questions:
schema:
type: int
default: 5
- variable: envList
label: Extra Environment Variables
description: "Please be aware that some variables are set in the background, adding duplicates here might cause issues or prevent the app from starting..."
schema:
type: list
default: []
items:
- variable: envItem
label: Environment Variable
schema:
additional_attrs: true
type: dict
attrs:
- variable: name
label: Name
schema:
type: string
- variable: value
label: Value
schema:
type: string
- variable: extraArgs
label: Extra Args
schema:
type: list
default: []
items:
- variable: arg
label: Arg
schema:
type: string
- variable: advanced
label: Show Advanced Settings
description: Advanced settings are not covered by TrueCharts Support
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: command
label: Command
schema:
type: list
default: []
items:
- variable: param
label: Param
schema:
type: string
- variable: TZ
label: Timezone
group: "General Settings"
schema:
type: string
default: "Etc/UTC"
$ref:
- "definitions/timezone"
- variable: podOptions
group: "General Settings"
label: "Global Pod Options (Advanced)"
schema:
additional_attrs: true
type: dict
attrs:
- variable: expertPodOpts
label: "Expert - Pod Options"
schema:
type: boolean
default: false
show_subquestions_if: true
subquestions:
- variable: hostNetwork
label: "Host Networking"
schema:
type: boolean
default: false
- variable: dnsConfig
label: "DNS Configuration"
schema:
type: dict
additional_attrs: true
attrs:
- variable: options
label: "Options"
schema:
type: list
default: [{"name": "ndots", "value": "1"}]
items:
- variable: optionsEntry
label: "Option Entry"
schema:
type: dict
additional_attrs: true
attrs:
- variable: name
label: "Name"
schema:
type: string
required: true
- variable: value
label: "Value"
schema:
type: string
- variable: nameservers
label: "Nameservers"
schema:
type: list
default: []
items:
- variable: nsEntry
label: "Nameserver Entry"
schema:
type: string
required: true
- variable: searches
label: "Searches"
schema:
type: list
default: []
items:
- variable: searchEntry
label: "Search Entry"
schema:
type: string
required: true
- variable: imagePullSecretList
group: "General Settings"
label: "Image Pull Secrets"
schema:
type: list
default: []
items:
- variable: pullsecretentry
label: "Pull Secret"
schema:
type: dict
additional_attrs: true
attrs:
- variable: enabled
label: Enabled
schema:
type: boolean
default: true
- variable: data
label: Data
schema:
type: dict
additional_attrs: true
attrs:
- variable: registry
label: "Registry"
schema:
type: string
required: true
default: "https://index.docker.io/v1/"
- variable: username
label: "Username"
schema:
type: string
required: true
default: ""
- variable: password
label: "Password"
schema:
type: string
required: true
private: true
default: ""
- variable: email
label: "Email"
schema:
type: string
required: true
default: ""
- variable: service
group: Networking and Services
label: Configure Service(s)

View File