Skip to content
Open
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2d5f040
refactor cf-argocd-extras
mikhail-klimko Sep 19, 2025
1ffa197
refactor cf-argocd-extras
mikhail-klimko Sep 19, 2025
f4e61f8
refactor cf-argocd-extras
mikhail-klimko Sep 19, 2025
12c4598
refactor cf-argocd-extras
mikhail-klimko Sep 19, 2025
0d5806f
refactor cf-argocd-extras
mikhail-klimko Sep 19, 2025
7325050
refactor cf-argocd-extras
mikhail-klimko Sep 22, 2025
c697fb2
refactor cf-argocd-extras
mikhail-klimko Sep 22, 2025
da2c7ad
refactor cf-argocd-extras
mikhail-klimko Sep 22, 2025
69d767e
refactor cf-argocd-extras
mikhail-klimko Sep 22, 2025
962b1ae
refactor cf-argocd-extras
mikhail-klimko Sep 22, 2025
1fd6336
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
7b614e0
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
93a742b
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
e9746ca
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
adc4af4
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
2442498
refactor cf-argocd-extras
mikhail-klimko Sep 23, 2025
61aff97
rename
mikhail-klimko Sep 26, 2025
2d2d911
event-reporters: added RESOURCE_THREADINESS, new tag 7aefaaf
oleksandr-codefresh Sep 29, 2025
335d4b2
event-reporters: added SERVICE_NAME
oleksandr-codefresh Sep 29, 2025
0f0dd37
argo-gateway: changed BINARY_NAME value
oleksandr-codefresh Sep 29, 2025
40ce0eb
updated tag of extras 25ba257
oleksandr-codefresh Sep 29, 2025
2443022
runtime-event-reporter: fixed binary name
oleksandr-codefresh Sep 29, 2025
100d9e6
extras 495366e
oleksandr-codefresh Sep 30, 2025
eaffd6b
argo gateway url for app-proxy
oleksandr-codefresh Sep 30, 2025
9d3f40c
added ARGO_GATEWAY_URL SOURCES_SERVER_URL for app-proxy
oleksandr-codefresh Sep 30, 2025
463313f
add component labels
mikhail-klimko Oct 1, 2025
77c5e9a
latest extras 1d99b0b
oleksandr-codefresh Oct 1, 2025
822d1d6
app-proxy 1.3795.0-cr-31129-resource-reporter-5a7ccae
oleksandr-codefresh Oct 1, 2025
88c2ff1
bump extras version to prod build - 695977c
oleksandr-codefresh Oct 4, 2025
9f57f52
merge main
mikhail-klimko Oct 6, 2025
3882de6
merge main
mikhail-klimko Oct 6, 2025
3e22ac4
refactor cf-argocd-extras
mikhail-klimko Oct 6, 2025
ac350ae
refactor cf-argocd-extras
mikhail-klimko Oct 6, 2025
5d9d3b2
refactor cf-argocd-extras
mikhail-klimko Oct 6, 2025
e087c4d
refactor cf-argocd-extras
mikhail-klimko Oct 6, 2025
2d99a05
app-proxy 1.3806.0
oleksandr-codefresh Oct 6, 2025
6933f85
Merge branch 'main' into refactor/cf-argocd-extras
oleksandr-codefresh Oct 6, 2025
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
4 changes: 1 addition & 3 deletions charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies:
- name: argo-events
repository: https://codefresh-io.github.io/argo-helm
version: 2.4.9-cap-CR-30841
condition: argo-events.enabled
- name: argo-workflows
repository: https://codefresh-io.github.io/argo-helm
version: 0.45.16-v3.6.7-cap-CR-30835
Expand All @@ -37,6 +38,3 @@ dependencies:
version: 0.1.22
alias: tunnel-client
condition: tunnel-client.enabled
- name: cf-common
repository: oci://quay.io/codefresh/charts
version: 0.27.0
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{{- define "cap-app-proxy.resources.deployment" }}
{{- $cfCommonTplSemver := printf "cf-common-%s" (index .Subcharts "cf-common").Chart.Version }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down Expand Up @@ -89,7 +88,7 @@ spec:
readOnly: true
{{- if gt (int .Values.replicaCount) 1 }}
- name: leader-elector
image: {{ include (printf "%s.image.name" $cfCommonTplSemver ) (dict "image" (index .Values "leader-elector" "image") "context" .) }}
image: {{ include "codefresh-gitops-runtime.image.name" (dict "image" (index .Values "leader-elector" "image") "context" .) }}
imagePullPolicy: {{ index .Values "leader-elector" "image" "pullPolicy" | default "IfNotPresent" }}
command:
- leader-elector
Expand Down Expand Up @@ -154,7 +153,7 @@ spec:
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.topologySpreadConstraints }}
topologySpreadConstraints: {{- include (printf "%s.tplrender" $cfCommonTplSemver ) (dict "Values" . "context" .) | nindent 8 }}
topologySpreadConstraints: {{- include "codefresh-gitops-runtime.tplrender" (dict "Values" . "context" .) | nindent 8 }}
{{- end }}
volumes:
{{- with .Values.extraVolumes }}
Expand Down
Loading