Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
8
incubator/soft-serve/0.0.1/CHANGELOG.md
Normal file
8
incubator/soft-serve/0.0.1/CHANGELOG.md
Normal file
@@ -0,0 +1,8 @@
|
||||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [soft-serve-0.0.1]soft-serve-0.0.1 (2022-12-31)
|
||||
|
||||
29
incubator/soft-serve/0.0.1/Chart.yaml
Normal file
29
incubator/soft-serve/0.0.1/Chart.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
apiVersion: v2
|
||||
appVersion: "0.4.4"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.0.7
|
||||
deprecated: false
|
||||
description: A tasty, self-hostable Git server for the command line.
|
||||
home: https://truecharts.org/docs/charts/stable/soft-serve
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/soft-serve.png
|
||||
keywords:
|
||||
- soft-serve
|
||||
- git
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: soft-serve
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/soft-serve
|
||||
- https://github.com/charmbracelet/soft-serve
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- git
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
||||
1
incubator/soft-serve/0.0.1/README.md
Normal file
1
incubator/soft-serve/0.0.1/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# soft-serve
|
||||
4
incubator/soft-serve/0.0.1/app-changelog.md
Normal file
4
incubator/soft-serve/0.0.1/app-changelog.md
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
|
||||
## [soft-serve-0.0.1]soft-serve-0.0.1 (2022-12-31)
|
||||
|
||||
8
incubator/soft-serve/0.0.1/app-readme.md
Normal file
8
incubator/soft-serve/0.0.1/app-readme.md
Normal file
@@ -0,0 +1,8 @@
|
||||
A tasty, self-hostable Git server for the command line.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/soft-serve](https://truecharts.org/charts/incubator/soft-serve)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/about/sponsor) or contributing back to the project any way you can!
|
||||
BIN
incubator/soft-serve/0.0.1/charts/common-11.0.7.tgz
Normal file
BIN
incubator/soft-serve/0.0.1/charts/common-11.0.7.tgz
Normal file
Binary file not shown.
42
incubator/soft-serve/0.0.1/ix_values.yaml
Normal file
42
incubator/soft-serve/0.0.1/ix_values.yaml
Normal file
@@ -0,0 +1,42 @@
|
||||
image:
|
||||
repository: tccr.io/truecharts/soft-serve
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.4.4@sha256:758d04854964a10967c0895e3abca055ad569c8630664e3efe5907003c1647fc
|
||||
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
|
||||
softserve:
|
||||
host: localhost
|
||||
key_path: /.ssh/soft_serve_server_ed25519
|
||||
init_admin_key: ""
|
||||
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: '{{ include "tc.common.names.fullname" . }}-env-secret'
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: TCP
|
||||
port: 23231
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /soft-serve
|
||||
ssh:
|
||||
enabled: true
|
||||
mountPath: /.ssh
|
||||
repos:
|
||||
enabled: true
|
||||
mountPath: /repos
|
||||
|
||||
portal:
|
||||
enabled: false
|
||||
1991
incubator/soft-serve/0.0.1/questions.yaml
Normal file
1991
incubator/soft-serve/0.0.1/questions.yaml
Normal file
File diff suppressed because it is too large
Load Diff
21
incubator/soft-serve/0.0.1/templates/_secret.tpl
Normal file
21
incubator/soft-serve/0.0.1/templates/_secret.tpl
Normal file
@@ -0,0 +1,21 @@
|
||||
{{/* Define the secret */}}
|
||||
{{- define "softserve.secret" -}}
|
||||
|
||||
{{- $secretName := printf "%s-env-secret" (include "tc.common.names.fullname" .) }}
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: {{ $secretName }}
|
||||
labels:
|
||||
{{- include "tc.common.labels" . | nindent 4 }}
|
||||
stringData:
|
||||
SOFT_SERVE_BIND_ADDRESS: "0.0.0.0"
|
||||
SOFT_SERVE_REPO_PATH: {{ .Values.persistence.repos.mountPath | quote }}
|
||||
SOFT_SERVE_PORT: {{ .Values.service.main.ports.main.port | quote }}
|
||||
SOFT_SERVE_HOST: {{ .Values.softserve.host | quote }}
|
||||
SOFT_SERVE_KEY_PATH: {{ .Values.softserve.key_path | quote }}
|
||||
SOFT_SERVE_INITIAL_ADMIN_KEY: {{ .Values.softserve.init_admin_key | quote }}
|
||||
{{- end }}
|
||||
8
incubator/soft-serve/0.0.1/templates/common.yaml
Normal file
8
incubator/soft-serve/0.0.1/templates/common.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{/* Render secret */}}
|
||||
{{- include "softserve.secret" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
||||
0
incubator/soft-serve/0.0.1/values.yaml
Normal file
0
incubator/soft-serve/0.0.1/values.yaml
Normal file
4
incubator/soft-serve/item.yaml
Normal file
4
incubator/soft-serve/item.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/soft-serve.png
|
||||
categories:
|
||||
- git
|
||||
|
||||
Reference in New Issue
Block a user