Skip to content

Commit f3dd609

Browse files
committed
updated app-proxy to 1.3021.0-1 - fix hosted runtime init
1 parent 0a5c406 commit f3dd609

File tree

5 files changed

+77
-3
lines changed

5 files changed

+77
-3
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 0.1.55
2+
appVersion: 0.1.57
33
description: A Helm chart for Codefresh gitops runtime
44
name: gitops-runtime
55
version: 0.12.0
@@ -18,6 +18,8 @@ annotations:
1818
description: 'feat: update to upstream argo-cd 2.12.3 and helm 7.4.7 (#281)'
1919
- kind: changed
2020
description: 'update gitops-operator to `0.2.12` - fix: action script fails to extract commit_sha from response (#285)'
21+
- kind: changed
22+
description: bump app-proxy to `1.3021.0-1` - fix hosted runtime init
2123
dependencies:
2224
- name: argo-cd
2325
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Codefresh gitops runtime
2-
![Version: 0.12.0](https://img.shields.io/badge/Version-0.12.0-informational?style=flat-square) ![AppVersion: 0.1.55](https://img.shields.io/badge/AppVersion-0.1.55-informational?style=flat-square)
2+
![Version: 0.12.0](https://img.shields.io/badge/Version-0.12.0-informational?style=flat-square) ![AppVersion: 0.1.57](https://img.shields.io/badge/AppVersion-0.1.57-informational?style=flat-square)
33

44
## Prerequisites
55

charts/gitops-runtime/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ app-proxy:
393393
tag: 1.1.10-main
394394
image:
395395
repository: quay.io/codefresh/cap-app-proxy
396-
tag: 1.3021.0
396+
tag: 1.3021.0-1
397397
pullPolicy: IfNotPresent
398398
# -- Extra volume mounts for main container
399399
extraVolumeMounts: []

first-values.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
global:
2+
runtime:
3+
isConfigurationRuntime: true
4+
5+
argo-cd:
6+
crds:
7+
install: true
8+
9+
argo-workflows:
10+
crds:
11+
install: true
12+
13+
argo-rollouts:
14+
installCRDs: true
15+
16+
gitops-operator:
17+
crds:
18+
install: true

multi-values.yaml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
global:
2+
runtime:
3+
isConfigurationRuntime: false
4+
5+
sealed-secrets:
6+
enabled: false
7+
8+
argo-cd:
9+
createClusterRoles: false
10+
crds:
11+
install: false # true for the 1st runtime, false for the others
12+
13+
configs:
14+
params:
15+
application.namespaces: ''
16+
17+
argo-events:
18+
controller:
19+
rbac:
20+
namespaced: true
21+
22+
argo-workflows:
23+
crds:
24+
install: false # true for the 1st runtime, false for the others
25+
26+
singleNamespace: true
27+
createAggregateRoles: false
28+
controller:
29+
clusterWorkflowTemplates:
30+
enabled: false
31+
32+
server:
33+
clusterWorkflowTemplates:
34+
enabled: false
35+
36+
argo-rollouts:
37+
installCRDs: false # true for the 1st runtime, false for the others
38+
clusterInstall: false
39+
40+
tunnel-client:
41+
enabled: false
42+
43+
app-proxy:
44+
singleNamespace: true # added in feat/cr-24670-multi-install branch
45+
46+
gitops-operator:
47+
enabled: false # disable gitops-operator for now
48+
image:
49+
tag: feat-cr-24670-namespaced-install-521a5ee
50+
51+
crds:
52+
install: false
53+
54+
singleNamespace: true # added in feat/cr-24670-namespaced-install branch

0 commit comments

Comments
 (0)