mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
feat(helm): tolerations & nodeSelector support
This commit is contained in:
@@ -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:
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user