Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.0.1
description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.2.0-alpha-3
version: 0.2.0-alpha-4
home: https://github.com/codefresh-io/gitops-runtime-helm
keywords:
- codefresh
Expand Down
6 changes: 3 additions & 3 deletions charts/gitops-runtime/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gitops-runtime

![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)
![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)

A Helm chart for Codefresh gitops runtime

Expand Down Expand Up @@ -35,13 +35,13 @@ A Helm chart for Codefresh gitops runtime
| app-proxy.fullnameOverride | string | `"cap-app-proxy"` | |
| app-proxy.image.pullPolicy | string | `"IfNotPresent"` | |
| app-proxy.image.repository | string | `"quay.io/codefresh/cap-app-proxy"` | |
| app-proxy.image.tag | string | `"1.2140.0"` | |
| app-proxy.image.tag | string | `"1.2142.0"` | |
| app-proxy.imagePullSecrets | list | `[]` | |
| app-proxy.initContainer.command[0] | string | `"./init.sh"` | |
| app-proxy.initContainer.env | object | `{}` | |
| app-proxy.initContainer.image.pullPolicy | string | `"IfNotPresent"` | |
| app-proxy.initContainer.image.repository | string | `"quay.io/codefresh/cap-app-proxy-init"` | |
| app-proxy.initContainer.image.tag | string | `"1.2140.0"` | |
| app-proxy.initContainer.image.tag | string | `"1.2142.0"` | |
| app-proxy.initContainer.resources.limits.cpu | string | `"1"` | |
| app-proxy.initContainer.resources.limits.memory | string | `"512Mi"` | |
| app-proxy.initContainer.resources.requests.cpu | string | `"0.2"` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ GIT_PASSWORD:
{{- define "codefresh-gitops-runtime.app-proxy.init-container.calculated-env-vars"}}
USER_TOKEN:
{{- include "codefresh-gitops-runtime.installation-token-env-var-value" . | nindent 2 }}
{{- if .Values.global.codefresh.gitIntegration.provider.name }}
GIT_INTEGRATION_PROVIDER: {{ include "codefresh-gitops-runtime.git-integration.provider" .}}
{{- end }}
{{- end }}
4 changes: 2 additions & 2 deletions charts/gitops-runtime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -254,14 +254,14 @@ app-proxy:
image:
repository: quay.io/codefresh/cap-app-proxy
# Overrides the image tag whose default is the chart appVersion.
tag: 1.2140.0
tag: 1.2142.0
pullPolicy: IfNotPresent

initContainer:
image:
repository: quay.io/codefresh/cap-app-proxy-init
# Overrides the image tag whose default is the chart appVersion.
tag: 1.2140.0
tag: 1.2142.0
pullPolicy: IfNotPresent
command:
- ./init.sh
Expand Down