From b04d6c1ed2b3951f792f3294352b7e40b10eabde Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Thu, 14 Nov 2024 18:35:25 +0100 Subject: [PATCH] chore: bump to 0.4.0 --- charts/penpot/Chart.yaml | 6 +++--- charts/penpot/README.md | 8 ++++---- charts/penpot/values.yaml | 6 +++--- devel/README.md | 10 ++++++++++ 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/charts/penpot/Chart.yaml b/charts/penpot/Chart.yaml index 06a5939..6647347 100644 --- a/charts/penpot/Chart.yaml +++ b/charts/penpot/Chart.yaml @@ -1,7 +1,7 @@ --- apiVersion: v2 -version: 0.3.0 # Chart version -appVersion: "2.3.1" # Penpot version +version: 0.4.0 # Chart version +appVersion: "2.3.2" # Penpot version type: application name: penpot description: Helm chart for Penpot, the Open Source design and prototyping platform. @@ -40,7 +40,7 @@ annotations: artifacthub.io/containsSecurityUpdates: "false" artifacthub.io/changes: | - kind: changed - description: Bump penpot images to 2.3.1. + description: Bump Penpot images to 2.3.2. dependencies: - name: postgresql version: 15.x.x # appVersion >= 16.2.0 diff --git a/charts/penpot/README.md b/charts/penpot/README.md index be85fb2..1770b67 100644 --- a/charts/penpot/README.md +++ b/charts/penpot/README.md @@ -1,6 +1,6 @@ # penpot -![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![AppVersion: 2.3.1](https://img.shields.io/badge/AppVersion-2.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![AppVersion: 2.3.2](https://img.shields.io/badge/AppVersion-2.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Helm chart for Penpot, the Open Source design and prototyping platform. @@ -153,7 +153,7 @@ helm install my-release -f values.yaml penpot/penpot | backend.deploymentAnnotations | object | `{}` | An optional map of annotations to be applied to the controller Deployment | | 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.3.1"` | The image tag to use. | +| backend.image.tag | string | `"2.3.2"` | 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. | @@ -179,7 +179,7 @@ helm install my-release -f values.yaml penpot/penpot | frontend.deploymentAnnotations | object | `{}` | An optional map of annotations to be applied to the controller Deployment | | 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.3.1"` | The image tag to use. | +| frontend.image.tag | string | `"2.3.2"` | 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. | @@ -205,7 +205,7 @@ helm install my-release -f values.yaml penpot/penpot | exporter.deploymentAnnotations | object | `{}` | An optional map of annotations to be applied to the controller Deployment | | 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.3.1"` | The image tag to use. | +| exporter.image.tag | string | `"2.3.2"` | 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. | diff --git a/charts/penpot/values.yaml b/charts/penpot/values.yaml index 9bb49c7..43b41ef 100644 --- a/charts/penpot/values.yaml +++ b/charts/penpot/values.yaml @@ -312,7 +312,7 @@ backend: repository: penpotapp/backend # -- The image tag to use. # @section -- Backend parameters - tag: 2.3.1 + tag: 2.3.2 # -- The image pull policy to use. # @section -- Backend parameters pullPolicy: IfNotPresent @@ -387,7 +387,7 @@ frontend: repository: penpotapp/frontend # -- The image tag to use. # @section -- Frontend parameters - tag: 2.3.1 + tag: 2.3.2 # -- The image pull policy to use. # @section -- Frontend parameters pullPolicy: IfNotPresent @@ -454,7 +454,7 @@ exporter: repository: penpotapp/exporter # -- The image tag to use. # @section -- Exporter parameters - tag: 2.3.1 + tag: 2.3.2 # -- The image pull policy to use. # @section -- Exporter parameters imagePullPolicy: IfNotPresent diff --git a/devel/README.md b/devel/README.md index 6b4f5ab..cbae472 100644 --- a/devel/README.md +++ b/devel/README.md @@ -34,6 +34,16 @@ pre-commit install --install-hooks -f helm install penpot ./charts/penpot -f devel/penpot.values.yaml ``` +- Check status + ```shell + kubectl get all,pvc,ingress,pdb -o wide + ``` + +- Stop and delete cluster + ```shell + ./scripts/cluster_delete.sh + ``` + - Access to [http://penpot.example.com/](http://penpot.example.com/) ( > [!NOTE] > You need to add `127.0.1.1 penpot.example.com` to `/etc/hosts`