Skip to content

Commit f6f750f

Browse files
authored
Merge pull request #106 from RasaHQ/infra-232
Add deployment labels to rasa action server service
2 parents 27796d7 + 15e714f commit f6f750f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/chart-readme.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v2
2424
with:
25-
token: ${{ secrets.RASABOT_GITHUB_TOKEN }}
25+
token: ${{ secrets.GITHUB_TOKEN }}
2626

2727
- name: Update README.md
2828
working-directory: charts/${{ matrix.chart }}

charts/rasa-action-server/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: 1.0.3
17+
version: 1.0.4
1818
# This is the version number of the application being deployed. This version number should be
1919
# incremented each time you make changes to the application. Versions are not expected to
2020
# follow Semantic Versioning. They should reflect the version the application is using.

charts/rasa-action-server/templates/service.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ metadata:
44
name: {{ include "rasa-common.names.fullname" . }}
55
labels:
66
{{- include "rasa-common.labels.standard" . | nindent 4 }}
7+
{{- if .Values.deploymentLabels }}
8+
{{ toYaml .Values.deploymentLabels | indent 4 }}
9+
{{- end }}
710
{{- with .Values.service.annotations }}
811
annotations:
912
{{- toYaml . | nindent 4 }}

0 commit comments

Comments
 (0)