Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions charts/plugin-access-manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Plugin-access-manager Changelog

## [8.3.0](https://github.com/LerianStudio/helm/releases/tag/plugin-access-manager-v8.3.0)

- **Features:**
- Added optional, configurable `startupProbe` to the identity and auth components, following the existing readiness/liveness probe pattern. Disabled by default; enable via `identity.startupProbe.enabled` / `auth.startupProbe.enabled`. Defaults: `failureThreshold: 5`, `periodSeconds: 10`, `timeoutSeconds: 10`.

[Compare changes](https://github.com/LerianStudio/helm/compare/plugin-access-manager-v8.2.0...plugin-access-manager-v8.3.0)

## [8.2.0](https://github.com/LerianStudio/helm/releases/tag/plugin-access-manager-v8.2.0)

- **Features:**
Expand Down
2 changes: 1 addition & 1 deletion charts/plugin-access-manager/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ maintainers:
email: "support@lerian.studio"
# 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.
version: 8.2.0
version: 8.3.0
# This is the version number of the application being deployed.
appVersion: "2.6.7"
# A list of keywords about the chart. This helps others discover the chart.
Expand Down
11 changes: 11 additions & 0 deletions charts/plugin-access-manager/templates/auth/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ spec:
timeoutSeconds: {{ .Values.auth.livenessProbe.timeoutSeconds | default 1 }}
successThreshold: {{ .Values.auth.livenessProbe.successThreshold | default 1 }}
failureThreshold: {{ .Values.auth.livenessProbe.failureThreshold | default 3 }}
{{- if .Values.auth.startupProbe.enabled }}
startupProbe:
httpGet:
path: {{ .Values.auth.startupProbe.path | default "/health" }}
port: {{ .Values.auth.service.port }}
initialDelaySeconds: {{ .Values.auth.startupProbe.initialDelaySeconds | default 0 }}
periodSeconds: {{ .Values.auth.startupProbe.periodSeconds | default 10 }}
timeoutSeconds: {{ .Values.auth.startupProbe.timeoutSeconds | default 10 }}
successThreshold: {{ .Values.auth.startupProbe.successThreshold | default 1 }}
failureThreshold: {{ .Values.auth.startupProbe.failureThreshold | default 5 }}
{{- end }}
{{- with .Values.auth.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
11 changes: 11 additions & 0 deletions charts/plugin-access-manager/templates/identity/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ spec:
timeoutSeconds: {{ .Values.identity.livenessProbe.timeoutSeconds | default 1 }}
successThreshold: {{ .Values.identity.livenessProbe.successThreshold | default 1 }}
failureThreshold: {{ .Values.identity.livenessProbe.failureThreshold | default 3 }}
{{- if .Values.identity.startupProbe.enabled }}
startupProbe:
httpGet:
path: {{ .Values.identity.startupProbe.path | default "/health" }}
port: {{ .Values.identity.service.port }}
initialDelaySeconds: {{ .Values.identity.startupProbe.initialDelaySeconds | default 0 }}
periodSeconds: {{ .Values.identity.startupProbe.periodSeconds | default 10 }}
timeoutSeconds: {{ .Values.identity.startupProbe.timeoutSeconds | default 10 }}
successThreshold: {{ .Values.identity.startupProbe.successThreshold | default 1 }}
failureThreshold: {{ .Values.identity.startupProbe.failureThreshold | default 5 }}
{{- end }}
{{ if (index .Values "otel-collector-lerian").enabled }}
env:
- name: "HOST_IP"
Expand Down
14 changes: 14 additions & 0 deletions charts/plugin-access-manager/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ identity:
readinessProbe: {}
# -- Liveness probe configuration. All fields override chart defaults.
livenessProbe: {}
# -- Startup probe configuration. Disabled by default; enable to give slow-starting
# pods more time before liveness/readiness probes take over. All fields override chart defaults.
startupProbe:
enabled: false
failureThreshold: 5
periodSeconds: 10
timeoutSeconds: 10
# Default values
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
Expand Down Expand Up @@ -149,6 +156,13 @@ auth:
readinessProbe: {}
# -- Liveness probe configuration. All fields override chart defaults.
livenessProbe: {}
# -- Startup probe configuration. Disabled by default; enable to give slow-starting
# pods more time before liveness/readiness probes take over. All fields override chart defaults.
startupProbe:
enabled: false
failureThreshold: 5
periodSeconds: 10
timeoutSeconds: 10
# Default values
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
Expand Down
Loading