Skip to content

Commit

Permalink
chore: bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bameda committed Oct 10, 2024
1 parent 125b7fc commit 7793224
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions charts/penpot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
apiVersion: v2
version: 0.1.0 # Chart version
appVersion: "2.1.4" # Penpot version
version: 0.2.0 # Chart version
appVersion: "2.2.0" # Penpot version
type: application
name: penpot
description: Helm chart for Penpot, the Open Source design and prototyping platform.
Expand Down Expand Up @@ -40,7 +40,7 @@ annotations:
artifacthub.io/containsSecurityUpdates: "false"
artifacthub.io/changes: |
- kind: changed
description: Bump to 0.1.0. Initial release.
description: Bump penpot images to 2.2.0.
dependencies:
- name: postgresql
version: 15.x.x # appVersion >= 16.2.0
Expand Down
8 changes: 4 additions & 4 deletions charts/penpot/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# penpot

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: 2.1.4](https://img.shields.io/badge/AppVersion-2.1.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: 2.2.0](https://img.shields.io/badge/AppVersion-2.2.0-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.

Expand Down Expand Up @@ -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.1.4"` | The image tag to use. |
| backend.image.tag | string | `"2.2.0"` | 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. |
Expand All @@ -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.1.4"` | The image tag to use. |
| frontend.image.tag | string | `"2.2.0"` | 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. |
Expand All @@ -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.1.4"` | The image tag to use. |
| exporter.image.tag | string | `"2.2.0"` | 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. |
Expand Down
2 changes: 2 additions & 0 deletions charts/penpot/templates/frontend-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ spec:
env:
- name: PENPOT_FLAGS
value: "$PENPOT_FLAGS {{ .Values.config.flags }}"
- name: PENPOT_PUBLIC_URI
value: {{ .Values.config.publicUri | quote }}
- name: PENPOT_BACKEND_URI
value: {{ print "http://" (include "penpot.fullname" .) "-backend:" .Values.backend.service.port }}
- name: PENPOT_EXPORTER_URI
Expand Down
6 changes: 3 additions & 3 deletions charts/penpot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ backend:
repository: penpotapp/backend
# -- The image tag to use.
# @section -- Backend parameters
tag: 2.1.4
tag: 2.2.0
# -- The image pull policy to use.
# @section -- Backend parameters
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -387,7 +387,7 @@ frontend:
repository: penpotapp/frontend
# -- The image tag to use.
# @section -- Frontend parameters
tag: 2.1.4
tag: 2.2.0
# -- The image pull policy to use.
# @section -- Frontend parameters
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -454,7 +454,7 @@ exporter:
repository: penpotapp/exporter
# -- The image tag to use.
# @section -- Exporter parameters
tag: 2.1.4
tag: 2.2.0
# -- The image pull policy to use.
# @section -- Exporter parameters
imagePullPolicy: IfNotPresent
Expand Down

0 comments on commit 7793224

Please sign in to comment.