Skip to content

Commit

Permalink
Merge pull request #28 from RasaHQ/bump-rasa-version-to-2.8.0-cfe3a90
Browse files Browse the repository at this point in the history
Bump the app version for the rasa chart to 2.8.0
  • Loading branch information
Tomasz Czekajlo authored Jul 13, 2021
2 parents cfe3a90 + 9a8f388 commit 6a2f2a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
20 changes: 3 additions & 17 deletions charts/rasa/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: v2
name: rasa
description: The Rasa Helm chart deploy a Rasa Open Source Server. Rasa is an open source machine learning framework for automated text and voice-based conversations.

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
Expand All @@ -11,66 +10,53 @@ description: The Rasa Helm chart deploy a Rasa Open Source Server. Rasa is an op
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
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.2.5

version: 1.3.0
# 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.
# It is recommended to use it with quotes.
appVersion: "2.7.1"

appVersion: "2.8.0"
icon: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSqZPsa-h0ilYPCFaQmf21MFMyVH7oyvrfnJHwvGOJVlMIeTiakBJTSwGd2cDFcF5AsEiY&usqp=CAU"

sources:
- https://github.com/RasaHQ/helm-charts/tree/main/charts/rasa

maintainers:
- email: [email protected]
name: Rasa

keywords:
- kubernetes
- rasa
- rasa-oss

dependencies:
- name: rasa-common
repository: https://helm.rasa.com
tags:
- rasa-common
version: 1.x.x

- name: postgresql
version: ~10.5.2
repository: https://charts.bitnami.com/bitnami
condition: postgresql.install

- name: redis
version: ~14.6.4
repository: https://charts.bitnami.com/bitnami
condition: redis.install

- name: rabbitmq
version: ~8.16.2
repository: https://charts.bitnami.com/bitnami
condition: rabbitmq.install

- name: rasa-action-server
version: ~1.0.0
repository: https://helm.rasa.com
condition: rasa-action-server.install

- name: duckling
version: ~1.0.0
repository: https://helm.rasa.com
condition: duckling.install

annotations:
# See: https://artifacthub.io/docs/topics/annotations/helm/#supported-annotations
artifacthub.io/changes: |
- kind: added
description: Add network policy for the rabbitmq_peer_discovery_k8s plugin
description: Bump Rasa version to 2.8.0
4 changes: 2 additions & 2 deletions charts/rasa/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rasa

![Version: 1.2.4](https://img.shields.io/badge/Version-1.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.7.1](https://img.shields.io/badge/AppVersion-2.7.1-informational?style=flat-square)
![Version: 1.3.0](https://img.shields.io/badge/Version-1.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)

The Rasa Helm chart deploy a Rasa Open Source Server. Rasa is an open source machine learning framework for automated text and voice-based conversations.

Expand Down Expand Up @@ -307,7 +307,7 @@ In the [`examples/rasa`](../../examples) directory you can find more detailed ex
| image.pullPolicy | string | `"IfNotPresent"` | Rasa Open Source image pullPolicy |
| image.pullSecrets | list | `[]` | Rasa Open Source repository pullSecret |
| image.repository | string | `""` | Override default registry + image.name for Rasa Open Source |
| image.tag | string | `"2.7.1"` | Rasa Open Source image tag to use |
| image.tag | string | `"2.8.0"` | Rasa Open Source image tag to use |
| ingress.annotations | object | `{}` | Ingress annotations |
| ingress.enabled | bool | `false` | Set to true to enable ingress |
| ingress.extraPaths | object | `{}` | Any additional arbitrary paths that may need to be added to the ingress under the main host |
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa/test/deployment_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestTemplateRendersContainerImageRepository(t *testing.T) {
// Verify the deployment pod template spec is set to the expected container image value
deploymentSpec := deployment.Spec.Template.Spec
require.Equal(t, len(deploymentSpec.Containers), 1)
require.Equal(t, deploymentSpec.Containers[0].Image, "test-image:2.7.1")
require.Equal(t, deploymentSpec.Containers[0].Image, "test-image:2.8.0")
}

func TestTemplateRendersContainerArgsAndCommand(t *testing.T) {
Expand Down
3 changes: 1 addition & 2 deletions charts/rasa/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,7 @@ image:
name: rasa

# -- Rasa Open Source image tag to use
tag: "2.7.1"

tag: "2.8.0"
# -- Override default registry + image.name for Rasa Open Source
repository: ""

Expand Down

0 comments on commit 6a2f2a9

Please sign in to comment.