mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
requested changes
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
## 1.7.2 (October 20, 2025)
|
||||
Changes:
|
||||
* Added automatic reloading support for the Infisical deployment when the `infisical.kubeSecretRef` kubernetes secret changes.
|
||||
* Configurable by `reloader.enabled: true|false`. Defaults to `true`.
|
||||
* Configurable by `infisical.redeployOnSecretChange: true|false`. Defaults to `true`.
|
||||
|
||||
## 1.7.1 (October 10, 2025)
|
||||
|
||||
|
||||
@@ -31,4 +31,4 @@ dependencies:
|
||||
- name: reloader
|
||||
version: 2.2.3
|
||||
repository: https://stakater.github.io/stakater-charts
|
||||
condition: reloader.enabled
|
||||
condition: infisical.redeployOnSecretChange
|
||||
|
||||
@@ -4,7 +4,7 @@ kind: Deployment
|
||||
metadata:
|
||||
name: {{ include "infisical.fullname" . }}
|
||||
annotations:
|
||||
{{- if .Values.reloader.enabled }}
|
||||
{{- if $infisicalValues.redeployOnSecretChange }}
|
||||
secret.reloader.stakater.com/reload: {{ $infisicalValues.kubeSecretRef }}
|
||||
{{- end }}
|
||||
updatedAt: {{ now | date "2006-01-01 MST 15:04:05" | quote }}
|
||||
|
||||
@@ -15,7 +15,7 @@ spec:
|
||||
app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name | quote }}
|
||||
helm.sh/chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
|
||||
{{- if .Values.reloader.enabled }}
|
||||
{{- if $infisicalValues.redeployOnSecretChange }}
|
||||
annotations:
|
||||
secret.reloader.stakater.com/reload: {{ $infisicalValues.kubeSecretRef }}
|
||||
{{- end }}
|
||||
|
||||
@@ -13,6 +13,9 @@ infisical:
|
||||
# -- Automatically migrates new database schema when deploying
|
||||
autoDatabaseSchemaMigration: true
|
||||
|
||||
# -- redeployOnSecretChange is used to reload the Infisical instance when the Kubernetes secret referenced by `infisical.kubeSecretRef` is updated
|
||||
redeployOnSecretChange: true
|
||||
|
||||
autoBootstrap:
|
||||
# -- Enable auto-bootstrap of the Infisical instance
|
||||
enabled: false
|
||||
@@ -183,7 +186,3 @@ redis:
|
||||
|
||||
# -- Redis deployment type (e.g., standalone or cluster)
|
||||
architecture: standalone
|
||||
|
||||
# -- Reloader is used to reload the Infisical instance when the Kubernetes secret referenced by `infisical.kubeSecretRef` is updated
|
||||
reloader:
|
||||
enabled: true
|
||||
|
||||
Reference in New Issue
Block a user