mirror of
https://github.com/shadoll/helm-charts.git
synced 2026-08-28 11:33:17 +00:00
feat: Update rflood Helm chart to version 0.1.3; add nodeSelector, tolerations, and affinity configurations
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: rflood
|
name: rflood
|
||||||
description: rTorrent + Flood (hotio/rflood) Helm chart
|
description: rTorrent + Flood (hotio/rflood) Helm chart
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.2
|
version: 0.1.3
|
||||||
appVersion: "release-0.16.9"
|
appVersion: "release-0.16.9"
|
||||||
annotations:
|
annotations:
|
||||||
version-source: ghcr-tags:hotio/rflood:^release-[0-9]+\.[0-9]+\.[0-9]+$
|
version-source: ghcr-tags:hotio/rflood:^release-[0-9]+\.[0-9]+\.[0-9]+$
|
||||||
|
|||||||
@@ -21,6 +21,18 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app: {{ .Release.Name }}
|
app: {{ .Release.Name }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
|
||||||
|
|||||||
@@ -33,6 +33,10 @@ volumes:
|
|||||||
data:
|
data:
|
||||||
hostPath: ""
|
hostPath: ""
|
||||||
|
|
||||||
|
nodeSelector: {}
|
||||||
|
tolerations: []
|
||||||
|
affinity: {}
|
||||||
|
|
||||||
ingresses: {}
|
ingresses: {}
|
||||||
# https:
|
# https:
|
||||||
# host: rflood.example.com
|
# host: rflood.example.com
|
||||||
|
|||||||
Reference in New Issue
Block a user