Skip to content

Commit

Permalink
Merge pull request #72 from ceefour/patch-1
Browse files Browse the repository at this point in the history
fix(rasa): Use alpine's wget instead of busybox to download
  • Loading branch information
virtualroot authored Apr 20, 2022
2 parents fb898a2 + 47e8524 commit c93efed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/rasa/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
2 changes: 1 addition & 1 deletion charts/rasa/templates/_load-initial-model.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit c93efed

Please sign in to comment.