Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
32598434fd
commit
bf225a0bf7
|
@ -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)
|
||||
|
|
@ -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
|
|
@ -0,0 +1 @@
|
|||
# soft-serve
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [soft-serve-0.0.1]soft-serve-0.0.1 (2022-12-31)
|
||||
|
|
@ -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!
|
Binary file not shown.
|
@ -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
|
File diff suppressed because it is too large
Load Diff
|
@ -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 }}
|
|
@ -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,0 +1,4 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/soft-serve.png
|
||||
categories:
|
||||
- git
|
||||
|
Loading…
Reference in New Issue