You've already forked helm-actions

To be discussed. In https://gitea.com/gitea/helm-actions/issues/9#issuecomment-1002191 and https://gitea.com/gitea/helm-actions/pulls/13 I described that a migration of provisioning is currently not feasible due to - helm limitations - You are forced to repeat a lot of stuff for the default branch - helm-actions cannot read values of the helm-gitea chart to fix this - No agreement about making helm-gitea a optional dependency of helm-actions can be reached at the moment # Proposal - Create a new repository that includes both helm-gitea **and** helm-actions - Provisioning leaves this repository as well like it did in helm-gitea - Create that as gitea/helm-stack or whatever name - Provisioning code and tests moves to gitea/helm-stack We would need help with the repository creation Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/15 Reviewed-by: DaanSelen <daanselen@noreply.gitea.com> Co-authored-by: ChristopherHX <christopherhx@noreply.gitea.com> Co-committed-by: ChristopherHX <christopherhx@noreply.gitea.com>
109 lines
3.3 KiB
Smarty
109 lines
3.3 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
|
|
{{- define "gitea.actions.name" -}}
|
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create a default fully qualified app name.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
If release name contains chart name it will be used as a full name.
|
|
*/}}
|
|
{{- define "gitea.actions.fullname" -}}
|
|
{{- if .Values.fullnameOverride -}}
|
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
{{- if contains $name .Release.Name -}}
|
|
{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create a default worker name.
|
|
*/}}
|
|
{{- define "gitea.actions.workername" -}}
|
|
{{- printf "%s-%s" .global.Release.Name .worker | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create chart name and version as used by the chart label.
|
|
*/}}
|
|
{{- define "gitea.actions.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Storage Class
|
|
*/}}
|
|
{{- define "gitea.actions.persistence.storageClass" -}}
|
|
{{- $storageClass := default (tpl ( default "" .Values.global.storageClass) .) }}
|
|
{{- if $storageClass }}
|
|
storageClassName: {{ $storageClass | quote }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Common labels
|
|
*/}}
|
|
{{- define "gitea.actions.labels" -}}
|
|
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
|
app: {{ include "gitea.actions.name" . }}
|
|
{{ include "gitea.actions.selectorLabels" . }}
|
|
app.kubernetes.io/version: {{ default .Chart.AppVersion | quote }}
|
|
version: {{ default .Chart.AppVersion | quote }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
{{- end -}}
|
|
|
|
{{- define "gitea.actions.labels.actRunner" -}}
|
|
helm.sh/chart: {{ include "gitea.actions.chart" . }}
|
|
app: {{ include "gitea.actions.name" . }}-act-runner
|
|
{{ include "gitea.actions.selectorLabels.actRunner" . }}
|
|
app.kubernetes.io/version: {{ default .Chart.AppVersion | quote }}
|
|
version: {{ default .Chart.AppVersion | quote }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Selector labels
|
|
*/}}
|
|
{{- define "gitea.actions.selectorLabels" -}}
|
|
app.kubernetes.io/name: {{ include "gitea.actions.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end -}}
|
|
|
|
{{- define "gitea.actions.selectorLabels.actRunner" -}}
|
|
app.kubernetes.io/name: {{ include "gitea.actions.name" . }}-act-runner
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end -}}
|
|
|
|
{{- define "gitea.actions.local_root_url" -}}
|
|
{{- .Values.giteaRootURL -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Parse the http url to hostname + port separated by space for the nc command
|
|
*/}}
|
|
{{- define "gitea.actions.nc" -}}
|
|
{{- $url := include "gitea.actions.local_root_url" . | urlParse -}}
|
|
{{- $host := get $url "host" -}}
|
|
{{- $scheme := get $url "scheme" -}}
|
|
{{- $port := "80" -}}
|
|
{{- if contains ":" $host -}}
|
|
{{- $hostAndPort := regexSplit ":" $host 2 -}}
|
|
{{- $host = index $hostAndPort 0 -}}
|
|
{{- $port = index $hostAndPort 1 -}}
|
|
{{- else if eq $scheme "https" -}}
|
|
{{- $port = "443" -}}
|
|
{{- else if eq $scheme "http" -}}
|
|
{{- $port = "80" -}}
|
|
{{- end -}}
|
|
{{- printf "%s %s" $host $port -}}
|
|
{{- end -}}
|