Skip to content

Commit 21284aa

Browse files
authored
Merge pull request #13 from codefresh-io/default-git-provider
set default provider.name to GITHUB
2 parents d6638f5 + 82184f5 commit 21284aa

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ output
66
**/*.tgz
77
**/charts/**/charts
88
**/charts/**/Chart.lock
9+
10+
# only ignore the values.yaml file at the root of the repo
11+
/values.yaml

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @codefresh-io/DevOps

charts/gitops-runtime/Chart.yaml

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

charts/gitops-runtime/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gitops-runtime
22

3-
![Version: 0.2.0-alpha-5](https://img.shields.io/badge/Version-0.2.0--alpha--5-informational?style=flat-square) ![AppVersion: v0.0.1](https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square)
3+
![Version: 0.2.0-alpha-6](https://img.shields.io/badge/Version-0.2.0--alpha--6-informational?style=flat-square) ![AppVersion: v0.0.1](https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square)
44

55
A Helm chart for Codefresh gitops runtime
66

@@ -106,13 +106,13 @@ A Helm chart for Codefresh gitops runtime
106106
| event-reporters.workflow.sensor.replicas | int | `1` | |
107107
| event-reporters.workflow.sensor.resources | object | `{}` | |
108108
| event-reporters.workflow.serviceAccount.create | bool | `true` | |
109-
| global.codefresh | object | `{"accountId":"","apiEventsPath":"/2.0/api/events","gitIntegration":{"provider":{"apiUrl":null,"name":null}},"url":"https://g.codefresh.io","userToken":{"secretKeyRef":{},"token":""}}` | Codefresh platform and account-related settings |
109+
| global.codefresh | object | `{"accountId":"","apiEventsPath":"/2.0/api/events","gitIntegration":{"provider":{"apiUrl":"https://api.github.com","name":"GITHUB"}},"url":"https://g.codefresh.io","userToken":{"secretKeyRef":{},"token":""}}` | Codefresh platform and account-related settings |
110110
| global.codefresh.accountId | string | `""` | Codefresh Account ID. |
111111
| global.codefresh.apiEventsPath | string | `"/2.0/api/events"` | Events API endpoint URL suffix. |
112-
| global.codefresh.gitIntegration | object | `{"provider":{"apiUrl":null,"name":null}}` | Git integration for this runtime. Requires the Git provider name and the provider's API URL. |
113-
| global.codefresh.gitIntegration.provider | object | `{"apiUrl":null,"name":null}` | The Git provider to use. We currently support GitHub, GitLab, Bitbucket Server, and Bitbucket Cloud. |
114-
| global.codefresh.gitIntegration.provider.apiUrl | string | `nil` | Provider API URL. Example for GitHub, https://api.github.com. |
115-
| global.codefresh.gitIntegration.provider.name | string | `nil` | Name of the Git provider: github, gitlab, bitbucket-server, or bitbucket-cloud. |
112+
| global.codefresh.gitIntegration | object | `{"provider":{"apiUrl":"https://api.github.com","name":"GITHUB"}}` | Git integration for this runtime. Requires the Git provider name and the provider's API URL. |
113+
| global.codefresh.gitIntegration.provider | object | `{"apiUrl":"https://api.github.com","name":"GITHUB"}` | The Git provider to use. We currently support GitHub, GitLab, Bitbucket Server, and Bitbucket Cloud. |
114+
| global.codefresh.gitIntegration.provider.apiUrl | string | `"https://api.github.com"` | Provider API URL. Example for GitHub, https://api.github.com. |
115+
| global.codefresh.gitIntegration.provider.name | string | `"GITHUB"` | Name of the Git provider: BITBUCKET, BITBUCKET_SERVER, GITHUB, GITLAB |
116116
| global.codefresh.url | string | `"https://g.codefresh.io"` | URL of Codefresh platform. |
117117
| global.codefresh.userToken | object | `{"secretKeyRef":{},"token":""}` | User token. Used for runtime registration against the patform. One of token (for plain text value) or secretKeyRef must be provided. |
118118
| global.codefresh.userToken.secretKeyRef | object | `{}` | User token that references an existing secret containing the token. |

charts/gitops-runtime/templates/app-proxy/_app-proxy-env.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ app-proxy components are generated.
66
{{- define "codefresh-gitops-runtime.app-proxy.calculated-env-vars"}}
77
USER_TOKEN:
88
{{- include "codefresh-gitops-runtime.installation-token-env-var-value" . | nindent 2 }}
9-
{{- if .Values.global.codefresh.gitIntegration.provider.name }}
109
GIT_INTEGRATION_PROVIDER: {{ include "codefresh-gitops-runtime.git-integration.provider" .}}
11-
{{- end }}
1210
{{- if .Values.global.codefresh.gitIntegration.provider.apiUrl }}
1311
GIT_INTEGRATION_APIURL: {{ include "codefresh-gitops-runtime.git-integration.apiUrl" . }}
1412
{{- end }}
@@ -22,7 +20,5 @@ GIT_PASSWORD:
2220
{{- define "codefresh-gitops-runtime.app-proxy.init-container.calculated-env-vars"}}
2321
USER_TOKEN:
2422
{{- include "codefresh-gitops-runtime.installation-token-env-var-value" . | nindent 2 }}
25-
{{- if .Values.global.codefresh.gitIntegration.provider.name }}
2623
GIT_INTEGRATION_PROVIDER: {{ include "codefresh-gitops-runtime.git-integration.provider" .}}
27-
{{- end }}
2824
{{- end }}

charts/gitops-runtime/values.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ global:
1111
gitIntegration:
1212
# -- The Git provider to use. We currently support GitHub, GitLab, Bitbucket Server, and Bitbucket Cloud.
1313
provider:
14-
# -- Name of the Git provider: github, gitlab, bitbucket-server, or bitbucket-cloud.
15-
name:
14+
# -- Name of the Git provider: BITBUCKET, BITBUCKET_SERVER, GITHUB, GITLAB
15+
name: GITHUB
1616
# -- Provider API URL. Example for GitHub, https://api.github.com.
17-
apiUrl:
17+
apiUrl: https://api.github.com
1818
# -- User token. Used for runtime registration against the patform. One of token (for plain text value) or secretKeyRef must be provided.
1919
userToken:
2020
# -- User token in plain text. The chart creates and manages the secret for this token.

0 commit comments

Comments
 (0)