Skip to content

Commit 4514b0c

Browse files
fix: add missing cf-app-proxy in runtime spec (#402)
1 parent e17b6c5 commit 4514b0c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

charts/cf-runtime/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
description: A Helm chart for Codefresh Runner
33
name: cf-runtime
4-
version: 6.1.7
4+
version: 6.1.8
55
keywords:
66
- codefresh
77
- runner
@@ -14,8 +14,8 @@ maintainers:
1414
url: https://codefresh-io.github.io/
1515
annotations:
1616
artifacthub.io/changes: |
17-
- kind: changed
18-
description: Update README.md
17+
- kind: fixed
18+
description: Fix appProxy in runtime environment spec template
1919
dependencies:
2020
- name: cf-common
2121
repository: https://chartmuseum.codefresh.io/cf-common

charts/cf-runtime/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Codefresh Runner
22

3-
![Version: 6.1.7](https://img.shields.io/badge/Version-6.1.7-informational?style=flat-square)
3+
![Version: 6.1.8](https://img.shields.io/badge/Version-6.1.8-informational?style=flat-square)
44

55
Helm chart for deploying [Codefresh Runner](https://codefresh.io/docs/docs/installation/codefresh-runner/) to Kubernetes.
66

@@ -848,7 +848,7 @@ Go to [https://<YOUR_ONPREM_DOMAIN_HERE>/admin/runtime-environments/system](http
848848
| appProxy.affinity | object | `{}` | Set affinity |
849849
| appProxy.enabled | bool | `false` | Enable app-proxy |
850850
| appProxy.env | object | `{}` | Add additional env vars |
851-
| appProxy.image | object | `{"registry":"quay.io","repository":"codefresh/cf-app-proxy","tag":"latest"}` | Set image |
851+
| appProxy.image | object | `{"registry":"quay.io","repository":"codefresh/cf-app-proxy","tag":"0.0.45"}` | Set image |
852852
| appProxy.ingress.annotations | object | `{}` | Set extra annotations for ingress object |
853853
| appProxy.ingress.class | string | `""` | Set ingress class |
854854
| appProxy.ingress.host | string | `""` | Set DNS hostname the ingress will use |

charts/cf-runtime/templates/runtime/runtime-env-spec-tmpl.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,4 +167,9 @@ accountId: {{ .Values.global.accountId }}
167167
{{- if not .Values.runtime.agent }}
168168
accounts: {{- toYaml .Values.runtime.accounts | nindent 2 }}
169169
{{- end }}
170+
{{- if .Values.appProxy.enabled }}
171+
appProxy:
172+
externalIP: >-
173+
{{ printf "https://%s%s" .Values.appProxy.ingress.host .Values.appProxy.ingress.pathPrefix }}
174+
{{- end }}
170175
{{- end }}

charts/cf-runtime/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ appProxy:
621621
image:
622622
registry: quay.io
623623
repository: codefresh/cf-app-proxy
624-
tag: latest
624+
tag: 0.0.45
625625
# -- Add additional env vars
626626
env: {}
627627

0 commit comments

Comments
 (0)