mirror of
https://github.com/penpot/penpot-helm.git
synced 2025-04-07 20:31:25 -05:00
feat: bump penpot to 2.5.1
This commit is contained in:
parent
e370c76e28
commit
27a6d1029b
3 changed files with 10 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
apiVersion: v2
|
||||
version: 0.11.0-unreleased # Chart version
|
||||
appVersion: "2.4.3" # Penpot version
|
||||
appVersion: "2.5.1" # Penpot version
|
||||
type: application
|
||||
name: penpot
|
||||
description: Helm chart for Penpot, the Open Source design and prototyping platform.
|
||||
|
@ -61,6 +61,8 @@ annotations:
|
|||
links:
|
||||
- name: GitHub Issue 23
|
||||
url: https://github.com/penpot/penpot-helm/issues/23
|
||||
- kind: changed
|
||||
description: Bump Penpot to 2.5.1
|
||||
- kind: fixed
|
||||
description: Fix issue with default value for PENPOT_LDAP_BIND_DN. Thanks to @jdollar
|
||||
links:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# penpot
|
||||
|
||||
  
|
||||
  
|
||||
|
||||
Helm chart for Penpot, the Open Source design and prototyping platform.
|
||||
|
||||
|
@ -166,7 +166,7 @@ helm install my-release -f values.yaml penpot/penpot
|
|||
| backend.extraEnvs | list | `[]` | Specify any additional environment values you want to provide to the backend container in the deployment according to the [specification](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#environment-variables) |
|
||||
| backend.image.pullPolicy | string | `"IfNotPresent"` | The image pull policy to use. |
|
||||
| backend.image.repository | string | `"penpotapp/backend"` | The Docker repository to pull the image from. |
|
||||
| backend.image.tag | string | `"2.4.3"` | The image tag to use. |
|
||||
| backend.image.tag | string | `"2.5.1"` | The image tag to use. |
|
||||
| backend.nodeSelector | object | `{}` | Node labels for Penpot pods assignment. Check [the official doc](https://kubernetes.io/docs/user-guide/node-selection/) |
|
||||
| backend.pdb | object | `{"enabled":false,"maxUnavailable":null,"minAvailable":null}` | Configure Pod Disruption Budget for the backend pods. Check [the official doc](https://kubernetes.io/docs/tasks/run-application/configure-pdb/) |
|
||||
| backend.pdb.enabled | bool | `false` | Enable Pod Disruption Budget for the backend pods. |
|
||||
|
@ -193,7 +193,7 @@ helm install my-release -f values.yaml penpot/penpot
|
|||
| frontend.extraEnvs | list | `[]` | Specify any additional environment values you want to provide to the frontend container in the deployment according to the [specification](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#environment-variables) |
|
||||
| frontend.image.pullPolicy | string | `"IfNotPresent"` | The image pull policy to use. |
|
||||
| frontend.image.repository | string | `"penpotapp/frontend"` | The Docker repository to pull the image from. |
|
||||
| frontend.image.tag | string | `"2.4.3"` | The image tag to use. |
|
||||
| frontend.image.tag | string | `"2.5.1"` | The image tag to use. |
|
||||
| frontend.nodeSelector | object | `{}` | Node labels for Penpot pods assignment. Check [the official doc](https://kubernetes.io/docs/user-guide/node-selection/) |
|
||||
| frontend.pdb | object | `{"enabled":false,"maxUnavailable":null,"minAvailable":null}` | Configure Pod Disruption Budget for the frontend pods. Check [the official doc](https://kubernetes.io/docs/tasks/run-application/configure-pdb/) |
|
||||
| frontend.pdb.enabled | bool | `false` | Enable Pod Disruption Budget for the frontend pods. |
|
||||
|
@ -220,7 +220,7 @@ helm install my-release -f values.yaml penpot/penpot
|
|||
| exporter.extraEnvs | list | `[]` | Specify any additional environment values you want to provide to the exporter container in the deployment according to the [specification](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#environment-variables) |
|
||||
| exporter.image.imagePullPolicy | string | `"IfNotPresent"` | The image pull policy to use. |
|
||||
| exporter.image.repository | string | `"penpotapp/exporter"` | The Docker repository to pull the image from. |
|
||||
| exporter.image.tag | string | `"2.4.3"` | The image tag to use. |
|
||||
| exporter.image.tag | string | `"2.5.1"` | The image tag to use. |
|
||||
| exporter.nodeSelector | object | `{}` | Node labels for Penpot pods assignment. Check [the official doc](https://kubernetes.io/docs/user-guide/node-selection/) |
|
||||
| exporter.pdb | object | `{"enabled":false,"maxUnavailable":null,"minAvailable":null}` | Configure Pod Disruption Budget for the exporter pods. Check [the official doc](https://kubernetes.io/docs/tasks/run-application/configure-pdb/) |
|
||||
| exporter.pdb.enabled | bool | `false` | Enable Pod Disruption Budget for the exporter pods. |
|
||||
|
|
|
@ -352,7 +352,7 @@ backend:
|
|||
repository: penpotapp/backend
|
||||
# -- The image tag to use.
|
||||
# @section -- Backend parameters
|
||||
tag: 2.4.3
|
||||
tag: 2.5.1
|
||||
# -- The image pull policy to use.
|
||||
# @section -- Backend parameters
|
||||
pullPolicy: IfNotPresent
|
||||
|
@ -430,7 +430,7 @@ frontend:
|
|||
repository: penpotapp/frontend
|
||||
# -- The image tag to use.
|
||||
# @section -- Frontend parameters
|
||||
tag: 2.4.3
|
||||
tag: 2.5.1
|
||||
# -- The image pull policy to use.
|
||||
# @section -- Frontend parameters
|
||||
pullPolicy: IfNotPresent
|
||||
|
@ -508,7 +508,7 @@ exporter:
|
|||
repository: penpotapp/exporter
|
||||
# -- The image tag to use.
|
||||
# @section -- Exporter parameters
|
||||
tag: 2.4.3
|
||||
tag: 2.5.1
|
||||
# -- The image pull policy to use.
|
||||
# @section -- Exporter parameters
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
|
Loading…
Add table
Reference in a new issue