✨(helm) add pdbs to deployments
In order to avoid a service interruption during a Kubernetes (k8s) upgrade, we add a Pod Disruption Budget (PDB) to deployments.
This commit is contained in:
committed by
Anthony LC
parent
fdd1068c90
commit
68bf024005
@@ -1,5 +1,5 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
type: application
|
type: application
|
||||||
name: docs
|
name: docs
|
||||||
version: 2.1.0
|
version: 2.1.0-beta-1
|
||||||
appVersion: latest
|
appVersion: latest
|
||||||
|
|||||||
@@ -131,6 +131,7 @@
|
|||||||
| `backend.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
| `backend.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
||||||
| `backend.extraVolumeMounts` | Additional volumes to mount on the backend. | `[]` |
|
| `backend.extraVolumeMounts` | Additional volumes to mount on the backend. | `[]` |
|
||||||
| `backend.extraVolumes` | Additional volumes to mount on the backend. | `[]` |
|
| `backend.extraVolumes` | Additional volumes to mount on the backend. | `[]` |
|
||||||
|
| `backend.pdb.enabled` | Enable pdb on backend | `true` |
|
||||||
|
|
||||||
### frontend
|
### frontend
|
||||||
|
|
||||||
@@ -180,6 +181,7 @@
|
|||||||
| `frontend.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
| `frontend.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
||||||
| `frontend.extraVolumeMounts` | Additional volumes to mount on the frontend. | `[]` |
|
| `frontend.extraVolumeMounts` | Additional volumes to mount on the frontend. | `[]` |
|
||||||
| `frontend.extraVolumes` | Additional volumes to mount on the frontend. | `[]` |
|
| `frontend.extraVolumes` | Additional volumes to mount on the frontend. | `[]` |
|
||||||
|
| `frontend.pdb.enabled` | Enable pdb on frontend | `true` |
|
||||||
|
|
||||||
### posthog
|
### posthog
|
||||||
|
|
||||||
@@ -261,3 +263,4 @@
|
|||||||
| `yProvider.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
| `yProvider.persistence.volume-name.mountPath` | Path where the volume should be mounted to | |
|
||||||
| `yProvider.extraVolumeMounts` | Additional volumes to mount on the yProvider. | `[]` |
|
| `yProvider.extraVolumeMounts` | Additional volumes to mount on the yProvider. | `[]` |
|
||||||
| `yProvider.extraVolumes` | Additional volumes to mount on the yProvider. | `[]` |
|
| `yProvider.extraVolumes` | Additional volumes to mount on the yProvider. | `[]` |
|
||||||
|
| `yProvider.pdb.enabled` | Enable pdb on yProvider | `true` |
|
||||||
|
|||||||
2
src/helm/impress/generate-readme.sh
Normal file → Executable file
2
src/helm/impress/generate-readme.sh
Normal file → Executable file
@@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
docker image ls | grep readme-generator-for-helm
|
docker image ls | grep readme-generator-for-helm
|
||||||
if [ "$?" -ne "0" ]; then
|
if [ "$?" -ne "0" ]; then
|
||||||
|
|||||||
@@ -138,3 +138,16 @@ spec:
|
|||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
---
|
||||||
|
{{ if .Values.backend.pdb.enabled }}
|
||||||
|
apiVersion: policy/v1
|
||||||
|
kind: PodDisruptionBudget
|
||||||
|
metadata:
|
||||||
|
name: {{ $fullName }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
spec:
|
||||||
|
maxUnavailable: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "impress.common.selectorLabels" (list . $component) | nindent 6 }}
|
||||||
|
{{ end }}
|
||||||
|
|||||||
@@ -138,3 +138,16 @@ spec:
|
|||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
---
|
||||||
|
{{ if .Values.frontend.pdb.enabled }}
|
||||||
|
apiVersion: policy/v1
|
||||||
|
kind: PodDisruptionBudget
|
||||||
|
metadata:
|
||||||
|
name: {{ $fullName }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
spec:
|
||||||
|
maxUnavailable: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "impress.common.selectorLabels" (list . $component) | nindent 6 }}
|
||||||
|
{{ end }}
|
||||||
|
|||||||
@@ -138,3 +138,16 @@ spec:
|
|||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
---
|
||||||
|
{{ if .Values.yProvider.pdb.enabled }}
|
||||||
|
apiVersion: policy/v1
|
||||||
|
kind: PodDisruptionBudget
|
||||||
|
metadata:
|
||||||
|
name: {{ $fullName }}
|
||||||
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
|
spec:
|
||||||
|
maxUnavailable: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "impress.common.selectorLabels" (list . $component) | nindent 6 }}
|
||||||
|
{{ end }}
|
||||||
|
|||||||
@@ -308,6 +308,9 @@ backend:
|
|||||||
## @param backend.extraVolumes Additional volumes to mount on the backend.
|
## @param backend.extraVolumes Additional volumes to mount on the backend.
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
||||||
|
## @param backend.pdb.enabled Enable pdb on backend
|
||||||
|
pdb:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
## @section frontend
|
## @section frontend
|
||||||
|
|
||||||
@@ -403,6 +406,10 @@ frontend:
|
|||||||
## @param frontend.extraVolumes Additional volumes to mount on the frontend.
|
## @param frontend.extraVolumes Additional volumes to mount on the frontend.
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
||||||
|
## @param frontend.pdb.enabled Enable pdb on frontend
|
||||||
|
pdb:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
## @section posthog
|
## @section posthog
|
||||||
|
|
||||||
posthog:
|
posthog:
|
||||||
@@ -571,3 +578,7 @@ yProvider:
|
|||||||
|
|
||||||
## @param yProvider.extraVolumes Additional volumes to mount on the yProvider.
|
## @param yProvider.extraVolumes Additional volumes to mount on the yProvider.
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
||||||
|
## @param yProvider.pdb.enabled Enable pdb on yProvider
|
||||||
|
pdb:
|
||||||
|
enabled: true
|
||||||
|
|||||||
Reference in New Issue
Block a user