Skip to content

Commit 49040da

Browse files
authored
Merge pull request #11 from codefresh-io/init-container-git-provider
Init-container-git-provider
2 parents b99ba53 + 2f749f2 commit 49040da

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

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-3
5+
version: 0.2.0-alpha-4
66
home: https://github.com/codefresh-io/gitops-runtime-helm
77
keywords:
88
- codefresh

charts/gitops-runtime/README.md

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

3-
![Version: 0.2.0-alpha-3](https://img.shields.io/badge/Version-0.2.0--alpha--3-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-4](https://img.shields.io/badge/Version-0.2.0--alpha--4-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

@@ -35,13 +35,13 @@ A Helm chart for Codefresh gitops runtime
3535
| app-proxy.fullnameOverride | string | `"cap-app-proxy"` | |
3636
| app-proxy.image.pullPolicy | string | `"IfNotPresent"` | |
3737
| app-proxy.image.repository | string | `"quay.io/codefresh/cap-app-proxy"` | |
38-
| app-proxy.image.tag | string | `"1.2140.0"` | |
38+
| app-proxy.image.tag | string | `"1.2142.0"` | |
3939
| app-proxy.imagePullSecrets | list | `[]` | |
4040
| app-proxy.initContainer.command[0] | string | `"./init.sh"` | |
4141
| app-proxy.initContainer.env | object | `{}` | |
4242
| app-proxy.initContainer.image.pullPolicy | string | `"IfNotPresent"` | |
4343
| app-proxy.initContainer.image.repository | string | `"quay.io/codefresh/cap-app-proxy-init"` | |
44-
| app-proxy.initContainer.image.tag | string | `"1.2140.0"` | |
44+
| app-proxy.initContainer.image.tag | string | `"1.2142.0"` | |
4545
| app-proxy.initContainer.resources.limits.cpu | string | `"1"` | |
4646
| app-proxy.initContainer.resources.limits.memory | string | `"512Mi"` | |
4747
| app-proxy.initContainer.resources.requests.cpu | string | `"0.2"` | |

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

+3
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,7 @@ GIT_PASSWORD:
2222
{{- define "codefresh-gitops-runtime.app-proxy.init-container.calculated-env-vars"}}
2323
USER_TOKEN:
2424
{{- include "codefresh-gitops-runtime.installation-token-env-var-value" . | nindent 2 }}
25+
{{- if .Values.global.codefresh.gitIntegration.provider.name }}
26+
GIT_INTEGRATION_PROVIDER: {{ include "codefresh-gitops-runtime.git-integration.provider" .}}
27+
{{- end }}
2528
{{- end }}

charts/gitops-runtime/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,14 +254,14 @@ app-proxy:
254254
image:
255255
repository: quay.io/codefresh/cap-app-proxy
256256
# Overrides the image tag whose default is the chart appVersion.
257-
tag: 1.2140.0
257+
tag: 1.2142.0
258258
pullPolicy: IfNotPresent
259259

260260
initContainer:
261261
image:
262262
repository: quay.io/codefresh/cap-app-proxy-init
263263
# Overrides the image tag whose default is the chart appVersion.
264-
tag: 1.2140.0
264+
tag: 1.2142.0
265265
pullPolicy: IfNotPresent
266266
command:
267267
- ./init.sh

0 commit comments

Comments
 (0)