Skip to content

Commit 9c9b003

Browse files
authored
CR-18228 fixed invalid provider name
* updated chart version to `0.2.1-alpha.7` * renamed BITBUCKET_CLOUD to BITBUCKET_SERVER
1 parent 5ed9db9 commit 9c9b003

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 0.1.27-helm-alpha
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
5-
version: 0.2.1-alpha.6
5+
version: 0.2.1-alpha.7
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
keywords:
88
- codefresh

charts/gitops-runtime/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gitops-runtime
22

3-
![Version: 0.2.1-alpha.6](https://img.shields.io/badge/Version-0.2.1--alpha.6-informational?style=flat-square) ![AppVersion: 0.1.27-helm-alpha](https://img.shields.io/badge/AppVersion-0.1.27--helm--alpha-informational?style=flat-square)
3+
![Version: 0.2.1-alpha.7](https://img.shields.io/badge/Version-0.2.1--alpha.7-informational?style=flat-square) ![AppVersion: 0.1.27-helm-alpha](https://img.shields.io/badge/AppVersion-0.1.27--helm--alpha-informational?style=flat-square)
44

55
A Helm chart for Codefresh gitops runtime
66

charts/gitops-runtime/templates/_helpers.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,11 +228,11 @@ Output comma separated list of installed runtime components
228228
------------------------------------------------------------------------------------------------------------
229229
{{- define "codefresh-gitops-runtime.git-integration.provider"}}
230230
{{- if .Values.global.codefresh.gitIntegration.provider.name }}
231-
{{- $supportedProviders := list "GITHUB" "GITLAB" "BITBUCKET" "BITBUCKET_CLOUD" }}
231+
{{- $supportedProviders := list "GITHUB" "GITLAB" "BITBUCKET" "BITBUCKET_SERVER" }}
232232
{{- if has .Values.global.codefresh.gitIntegration.provider.name $supportedProviders }}
233233
{{- print .Values.global.codefresh.gitIntegration.provider.name }}
234234
{{- else }}
235-
{{ fail (printf "ERROR: Unsupported git provider %s. Currently supported: GITHUB,GITLAB,BITBUCKET,BITBUCKET_CLOUD" .Values.global.codefresh.gitIntegration.provider.name)}}
235+
{{ fail (printf "ERROR: Unsupported git provider %s. Currently supported: GITHUB,GITLAB,BITBUCKET,BITBUCKET_SERVER" .Values.global.codefresh.gitIntegration.provider.name)}}
236236
{{- end }}
237237
{{- else }}
238238
{{ fail "Values.global.codefresh.gitIntegration.provider.name is required"}}

0 commit comments

Comments
 (0)