feat(helm): tolerations & nodeSelector support

This commit is contained in:
Daniel Hougaard
2025-03-26 06:27:05 +04:00
parent 943d0ddb69
commit 8d6bd5d537
4 changed files with 17 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
## 1.5.0 (March 26, 2025)
Changes:
* Added support for Kubernetes pod scheduling customization via `nodeSelector` and `tolerations`
Features:
* `nodeSelector`: Configure pod placement on nodes with specific labels
* `tolerations`: Enable pods to schedule on tainted nodes
## 1.4.0 (November 06, 2024)
Changes:

View File

@@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.4.0
version: 1.5.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to

View File

@@ -33,6 +33,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with $infisicalValues.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- if $infisicalValues.image.imagePullSecrets }}
imagePullSecrets:
{{- toYaml $infisicalValues.image.imagePullSecrets | nindent 6 }}

View File

@@ -51,6 +51,8 @@ infisical:
affinity: {}
# -- Tolerations definitions
tolerations: []
# -- Node selector for pod placement
nodeSelector: {}
# -- Kubernetes Secret reference containing Infisical root credentials
kubeSecretRef: "infisical-secrets"
@@ -129,7 +131,7 @@ redis:
cluster:
# -- Clustered Redis deployment
enabled: false
# -- Requires a password for Redis authentication
usePassword: true