From 23993d86b68efa6568943225dc8cc955f0df7af6 Mon Sep 17 00:00:00 2001 From: Hendy Irawan Date: Sat, 16 Apr 2022 18:29:05 +0700 Subject: [PATCH 1/2] fix(rasa): Use alpine's wget instead of busybox to download --- charts/rasa/templates/_load-initial-model.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/rasa/templates/_load-initial-model.yaml b/charts/rasa/templates/_load-initial-model.yaml index 7223e1d..5babec1 100644 --- a/charts/rasa/templates/_load-initial-model.yaml +++ b/charts/rasa/templates/_load-initial-model.yaml @@ -1,6 +1,6 @@ {{- define "rasa.downloadInitialModel.initContainer" -}} - name: download-initial-model - image: "busybox" + image: "alpine" command: ["/bin/sh", "-c"] args: - cd /app/models/ && wget {{ .Values.applicationSettings.initialModel }} -O model.tar.gz From 47e85240aa57469c79f6d5be54166381725a4f5e Mon Sep 17 00:00:00 2001 From: Alejandro Lazaro Date: Wed, 20 Apr 2022 15:52:01 +0200 Subject: [PATCH 2/2] Bump chart version --- charts/rasa/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/rasa/Chart.yaml b/charts/rasa/Chart.yaml index 68dda49..0286010 100644 --- a/charts/rasa/Chart.yaml +++ b/charts/rasa/Chart.yaml @@ -13,7 +13,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.16.1 +version: 1.16.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. @@ -59,4 +59,4 @@ annotations: # See: https://artifacthub.io/docs/topics/annotations/helm/#supported-annotations artifacthub.io/changes: | - kind: fixed - description: Change type to string for the `nameOverride` and `fullnameOverride` fields in JSON schema. + description: Use Alpine image for downloading initial model. Busybox wget fails against Let's Encrypt issued certificates.