Skip to content
Snippets Groups Projects
Unverified Commit 8259448f authored by Varac's avatar Varac
Browse files

Quote all cypress values for proper yaml

Closes: #1068
parent 3bc792bc
No related branches found
No related tags found
1 merge request!260Resolve "error converting YAML to JSON: yaml: line 46: mapping values are not allowed in this context"
Pipeline #26985 failed with stages
in 5 minutes and 53 seconds
# Changelog
## [0.10.28] - 2022-09-06
* Quote other COMMIT_INFO values to not screw up yaml
## [0.10.23] - 2022-08-24
* Update Helm release rabbitmq to v10.3.1
......
......@@ -3,7 +3,7 @@ apiVersion: v2
description: |
A helm chart for installing NextCloud and setting up ONLYOFFICE integration
name: nextcloud-onlyoffice
version: 0.10.27
version: 0.10.28
appVersion: NC-24.0.2-OO-7.1.1.23
icon: https://cdn.rawgit.com/docker-library/docs/defa5ffc7123177acd60ddef6e16bddf694cc35f/nextcloud/logo.svg
dependencies:
......
......@@ -48,7 +48,7 @@ spec:
key: {{ .Values.nextcloud.nextcloud.existingSecret.passwordKey | default "nextcloud-password" }}
{{- end }}
- name: CYPRESS_ONLYOFFICE_URL
value: {{ .Values.onlyoffice.server_name }}
value: "{{ .Values.onlyoffice.server_name }}"
{{- if .Values.tests.cypress.projectId }}
- name: CYPRESS_PROJECT_ID
value: {{ .Values.tests.cypress.projectId }}
......@@ -60,15 +60,15 @@ spec:
{{- if .Values.tests.cypress.commitInfo }}
{{- if .Values.tests.cypress.commitInfo.branch }}
- name: COMMIT_INFO_BRANCH
value: {{ .Values.tests.cypress.commitInfo.branch }}
value: "{{ .Values.tests.cypress.commitInfo.branch }}"
{{- end }}
{{- if .Values.tests.cypress.commitInfo.message }}
- name: COMMIT_INFO_MESSAGE
value: {{ .Values.tests.cypress.commitInfo.message }}
value: "{{ .Values.tests.cypress.commitInfo.message }}"
{{- end }}
{{- if .Values.tests.cypress.commitInfo.author }}
- name: COMMIT_INFO_AUTHOR
value: {{ .Values.tests.cypress.commitInfo.author }}
value: "{{ .Values.tests.cypress.commitInfo.author }}"
{{- end }}
{{- if .Values.tests.cypress.commitInfo.sha }}
- name: COMMIT_INFO_SHA
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment