new chart: FreshRSS (#2)

This commit is contained in:
2023-01-08 14:36:29 +00:00
committed by GitHub
parent 458dbf4dbd
commit dc59ccf182
13 changed files with 498 additions and 0 deletions

View File

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