From e3d6c809a7f27939a677d5bc252733246d41bde3 Mon Sep 17 00:00:00 2001 From: Marko Oldenburg Date: Fri, 23 May 2025 09:45:24 +0200 Subject: [PATCH] ``` Update Excalidraw Helm chart to version 1.0.1 This commit updates the Excalidraw Helm chart's metadata, changing the appVersion from 0.17.6 to 0.18.0 and the chart version from 1.0.0 to 1.0.1. These changes reflect an update to the application version to ensure compatibility with new features or fixes. Additionally, in the deployment configuration, the container port is now set directly to 80 instead of using a default provided by the service values. This change simplifies the deployment configuration and ensures that the container listens on the expected port regardless of service value changes. ``` --- charts/excalidraw/Chart.yaml | 4 ++-- charts/excalidraw/templates/deployment.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/excalidraw/Chart.yaml b/charts/excalidraw/Chart.yaml index 4860610..738f841 100644 --- a/charts/excalidraw/Chart.yaml +++ b/charts/excalidraw/Chart.yaml @@ -3,8 +3,8 @@ maintainers: - name: kubitodev url: https://kubito.dev apiVersion: v2 -appVersion: 0.17.6 -version: 1.0.0 +appVersion: 0.18.0 +version: 1.0.1 description: Kubito Excalidraw Helm Chart home: https://github.com/kubitodev/helm/tree/main/charts/excalidraw icon: https://kubito.dev/images/kubito.svg diff --git a/charts/excalidraw/templates/deployment.yaml b/charts/excalidraw/templates/deployment.yaml index fae0b97..d1482ea 100644 --- a/charts/excalidraw/templates/deployment.yaml +++ b/charts/excalidraw/templates/deployment.yaml @@ -48,7 +48,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: http - containerPort: {{ .Values.service.port | default 80 }} + containerPort: 80 protocol: TCP resources: {{- toYaml .Values.resources | nindent 12 }}