gitea-act-runner: bump to v0.1.8, helm chart v0.1.0

This commit is contained in:
ace
2023-06-10 06:21:23 +03:00
parent 4bab269e86
commit d5e1a7568c
14 changed files with 592 additions and 0 deletions

View File

@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "gitea-act-runner.fullname" . }}-test-connection"
labels:
{{- include "gitea-act-runner.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "gitea-act-runner.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never