Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-08-06 09:05:34 +00:00
parent e33ee26a07
commit 939d93b9b3
26 changed files with 2381 additions and 10 deletions

View File

@ -0,0 +1,8 @@
**Important:**
*for the complete changelog, please refer to the website*
## [ctfd-0.0.1]ctfd-0.0.1 (2023-08-06)

View File

@ -0,0 +1,36 @@
apiVersion: v2
appVersion: "3.5.3"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.1
- condition: mariadb.enabled
name: mariadb
repository: https://deps.truecharts.org/
version: 7.0.70
- condition: redis.enabled
name: redis
repository: https://deps.truecharts.org
version: 6.0.66
deprecated: false
description: CTFd is a Capture The Flag framework focusing on ease of use and customizability.
home: https://truecharts.org/charts/incubator/ctfd
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png
keywords:
- ctfd
- learning
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: ctfd
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd
- https://github.com/CTFd/CTFd
type: application
version: 0.0.1
annotations:
truecharts.org/catagories: |
- learning
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1 @@
# README

View File

@ -0,0 +1,4 @@
## [ctfd-0.0.1]ctfd-0.0.1 (2023-08-06)

View File

@ -0,0 +1,8 @@
CTFd is a Capture The Flag framework focusing on ease of use and customizability.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/ctfd](https://truecharts.org/charts/incubator/ctfd)
---
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.

Binary file not shown.

View File

@ -0,0 +1,81 @@
image:
repository: tccr.io/truecharts/ctfd
pullPolicy: IfNotPresent
tag: v3.5.3@sha256:f2de4da7263eb368c7999eacb3faa2663cb74ae63b37f77ba4a69a991196c886
service:
main:
ports:
main:
protocol: http
targetPort: 8000
port: 10613
workload:
main:
podSpec:
containers:
main:
env:
# filesystem | s3
UPLOAD_PROVIDER: filesystem
# set storage locations.
UPLOAD_FOLDER: "{{ .Values.persistence.uploads.mountPath }}"
LOG_FOLDER: "{{ .Values.persistence.logs.mountPath }}"
SECRET_KEY:
secretKeyRef:
name: ctfd-secrets
key: SECRET_KEY
DATABASE_PORT: 3306
DATABASE_NAME: "{{ .Values.mariadb.mariadbDatabase }}"
DATABASE_USER: "{{ .Values.mariadb.mariadbUsername }}"
DATABASE_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DATABASE_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: mariadb-password
REDIS_URL:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "rediscreds" }}'
key: url
MAIL_USEAUTH: false
MAILFROM_ADDR: ""
MAIL_SERVER: ""
MAIL_PORT: 587
MAIL_USERNAME: ""
MAIL_PASSWORD: ""
MAIL_TLS: false
MAIL_SSL: false
# CTFd will not load any plugins which may alleviate issues preventing CTFd from starting, default is false.
SAFE_MODE: true
REVERSE_PROXY: false
# majorleaguecyber
OAUTH_CLIENT_ID: ""
OAUTH_CLIENT_SECRET: ""
mariadb:
enabled: true
mariadbUsername: ctfd
mariadbDatabase: ctfd
redis:
enabled: true
redisUsername: default
persistence:
uploads:
enabled: true
mountPath: "/uploads"
logs:
enabled: true
mountPath: "/logs"
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

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

View File

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

5
incubator/ctfd/item.yaml Normal file
View File

@ -0,0 +1,5 @@
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png
categories:
- learning
screenshots: []

View File

@ -4,6 +4,15 @@
## [smokeping-7.0.1](https://github.com/truecharts/charts/compare/smokeping-7.0.0...smokeping-7.0.1) (2023-08-06)
### Fix
- Disable varrun ([#11171](https://github.com/truecharts/charts/issues/11171))
## [smokeping-7.0.0](https://github.com/truecharts/charts/compare/smokeping-6.0.15...smokeping-7.0.0) (2023-07-31)
@ -88,12 +97,3 @@
## [smokeping-6.0.7](https://github.com/truecharts/charts/compare/smokeping-6.0.6...smokeping-6.0.7) (2023-05-26)
### Chore
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
## [smokeping-6.0.6](https://github.com/truecharts/charts/compare/smokeping-6.0.5...smokeping-6.0.6) (2023-05-24)

View File

@ -21,7 +21,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/smokeping
- https://oss.oetiker.ch/smokeping/
type: application
version: 7.0.0
version: 7.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@ -0,0 +1,9 @@
## [smokeping-7.0.1](https://github.com/truecharts/charts/compare/smokeping-7.0.0...smokeping-7.0.1) (2023-08-06)
### Fix
- Disable varrun ([#11171](https://github.com/truecharts/charts/issues/11171))

Binary file not shown.

View File

@ -17,6 +17,8 @@ persistence:
data:
enabled: true
mountPath: "/data"
varrun:
enabled: false
portal:
open:
enabled: true

View File

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