Skip to content

Commit a943516

Browse files
committed
fix up missing space in url element of helm chart
The Chart.yaml.tpl was missing a space after the `url:` element for maintainer team, resulting in the following error when eventually running the scripts/helm-publish-chart.sh script: ``` Generating Helm chart package for [email protected] ... Error: cannot load Chart.yaml: error converting YAML to JSON: yaml: line 15: could not find expected ':' ```
1 parent b977d86 commit a943516

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/helm/Chart.yaml.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ maintainers:
1111
- name: ACK Admins
1212
url: https://github.com/orgs/aws-controllers-k8s/teams/ack-admin
1313
- name: {{ .ServiceIDClean }} Admins
14-
url:https://github.com/orgs/aws-controllers-k8s/teams/{{ .ServiceIDClean }}-maintainer
14+
url: https://github.com/orgs/aws-controllers-k8s/teams/{{ .ServiceIDClean }}-maintainer
1515
keywords:
1616
- aws
1717
- kubernetes
18-
- {{ .ServiceIDClean }}
18+
- {{ .ServiceIDClean }}

0 commit comments

Comments
 (0)