Skip to content

Commit 63d2d2e

Browse files
Merge branch 'stable/0.25' into fix/fix-validateDestination
2 parents 1d6129a + 49b21ab commit 63d2d2e

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

charts/gitops-runtime/Chart.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ annotations:
1515
artifacthub.io/alternativeName: "codefresh-gitops-runtime"
1616
artifacthub.io/changes: |-
1717
- kind: changed
18-
description: 'chore: bump app-proxy to 788a8d5 (#782) - fix app-proxy argocd-token monitoring'
19-
- kind: changed
20-
description: 'fix: update image-enrichment images (#779)'
21-
- kind: changed
22-
description: 'feat: added runtime label to codefresh cm (#781)'
18+
description: 'fix(app-proxy): added missing eventbus list permissions (#865)'
2319
dependencies:
2420
- name: argo-cd
2521
repository: https://codefresh-io.github.io/argo-helm

charts/gitops-runtime/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ gitops-operator:
330330
| app-proxy.initContainer.extraVolumeMounts | list | `[]` | Extra volume mounts for init container |
331331
| app-proxy.initContainer.image.pullPolicy | string | `"IfNotPresent"` | |
332332
| app-proxy.initContainer.image.repository | string | `"quay.io/codefresh/cap-app-proxy-init"` | |
333-
| app-proxy.initContainer.image.tag | string | `"1.3791.0"` | |
333+
| app-proxy.initContainer.image.tag | string | `"ac9a365"` | |
334334
| app-proxy.initContainer.resources.limits | object | `{}` | |
335335
| app-proxy.initContainer.resources.requests.cpu | string | `"0.2"` | |
336336
| app-proxy.initContainer.resources.requests.memory | string | `"256Mi"` | |
@@ -491,7 +491,7 @@ gitops-operator:
491491
| gitops-operator.enabled | bool | `true` | |
492492
| gitops-operator.env.GITOPS_OPERATOR_VERSION | string | `"0.10.1"` | |
493493
| gitops-operator.fullnameOverride | string | `""` | |
494-
| gitops-operator.image | object | `{"registry":"quay.io","repository":"codefresh/codefresh-gitops-operator","tag":"6cad5ad"}` | GitOps operator image |
494+
| gitops-operator.image | object | `{"registry":"quay.io","repository":"codefresh/codefresh-gitops-operator","tag":"8cbca33"}` | GitOps operator image |
495495
| gitops-operator.imagePullSecrets | list | `[]` | |
496496
| gitops-operator.nameOverride | string | `""` | |
497497
| gitops-operator.nodeSelector | object | `{}` | |

charts/gitops-runtime/templates/_components/cap-app-proxy/_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{{- define "cap-app-proxy.resources.configmap-documented-configs" }}
22
argoWorkflowsInsecure: {{ .Values.config.argoWorkflowsInsecure | quote }}
33
clusterChunkSize: {{ .Values.config.clusterChunkSize | quote }}
4-
cors: {{ .Values.global.codefresh.url }}
4+
cors: {{ .Values.config.cors | default .Values.global.codefresh.url }}
55
isConfigurationRuntime: {{ .Values.global.runtime.isConfigurationRuntime | quote }}
66
isExternalArgoCD: {{ .Values.global.runtime.isExternalArgoCD | quote }}
77
runtimeName: {{ required "global.runtime.name is required" .Values.global.runtime.name | quote}}

charts/gitops-runtime/templates/_components/cap-app-proxy/_rbac.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,12 @@ rules:
6464
- update
6565
- patch
6666
- delete
67+
- apiGroups:
68+
- argoproj.io
69+
resources:
70+
- eventbus
71+
verbs:
72+
- list
6773
- apiGroups:
6874
- ""
6975
resources:

charts/gitops-runtime/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ sealed-secrets:
235235
cpu: 200m
236236
memory: 512Mi
237237
# *********************************************************************************************************************
238-
# DOCS: https://github.com/codefresh-io/argo-helm/blob/argo-cd-8.0.6-9-cap-v3.0.2-2025-09-08-9b30d922/charts/argo-cd
238+
# DOCS: https://github.com/codefresh-io/argo-helm/blob/argo-cd-8.0.6-10-cap-3.0.2-2025-10-24-afba3263/charts/argo-cd
239239
# *********************************************************************************************************************
240240
argo-cd:
241241
enabled: true
@@ -565,14 +565,14 @@ app-proxy:
565565
tag: 1.1.17-main
566566
image:
567567
repository: quay.io/codefresh/cap-app-proxy
568-
tag: 9621fba
568+
tag: ac9a365
569569
pullPolicy: IfNotPresent
570570
# -- Extra volume mounts for main container
571571
extraVolumeMounts: []
572572
initContainer:
573573
image:
574574
repository: quay.io/codefresh/cap-app-proxy-init
575-
tag: 1.3791.0
575+
tag: ac9a365
576576
pullPolicy: IfNotPresent
577577
command:
578578
- ./init.sh
@@ -728,7 +728,7 @@ gitops-operator:
728728
image:
729729
registry: quay.io
730730
repository: codefresh/codefresh-gitops-operator
731-
tag: 6cad5ad
731+
tag: 8cbca33
732732
env:
733733
GITOPS_OPERATOR_VERSION: 0.10.1 # hacky workaround, since our tags are no longer semver compliant
734734
serviceAccount:

0 commit comments

Comments
 (0)