File tree Expand file tree Collapse file tree 5 files changed +15
-8
lines changed
templates/_components/cap-app-proxy Expand file tree Collapse file tree 5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : v0.0.1
33description : A Helm chart for Codefresh gitops runtime
44name : gitops-runtime
5- version : 0.2.0-alpha-7
5+ version : 0.2.0-alpha-8
66home : https://github.com/codefresh-io/gitops-runtime-helm
77keywords :
88 - codefresh
Original file line number Diff line number Diff line change 11# gitops-runtime
22
3- ![ Version: 0.2.0-alpha-7 ] ( https://img.shields.io/badge/Version-0.2.0--alpha--7 -informational?style=flat-square ) ![ AppVersion: v0.0.1] ( https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square )
3+ ![ Version: 0.2.0-alpha-8 ] ( https://img.shields.io/badge/Version-0.2.0--alpha--8 -informational?style=flat-square ) ![ AppVersion: v0.0.1] ( https://img.shields.io/badge/AppVersion-v0.0.1-informational?style=flat-square )
44
55A Helm chart for Codefresh gitops runtime
66
Original file line number Diff line number Diff line change 1818 enrichmentConcurrencyCmKey : {{ $enrichmentValues.config.concurrencyCmKey }}
1919 enrichmentServiceAccountName : {{ $enrichmentValues.serviceAccount.name }}
2020 enrichmentPodGcStrategy : {{ $enrichmentValues.config.podGcStrategy }}
21- enrichmentTtlAfterCompletionInSeconds : {{ $enrichmentValues.config.ttlAfterCompletionInSeconds }}
22- enrichmentTtlActiveInSeconds : {{ $enrichmentValues.config.ttlActiveInSeconds }}
23- enrichmentClientHeartbeatIntervalInSeconds : {{ $enrichmentValues.config.clientHeartbeatIntervalInSeconds }}
21+ enrichmentTtlAfterCompletionInSeconds : {{ $enrichmentValues.config.ttlAfterCompletionInSeconds | quote }}
22+ enrichmentTtlActiveInSeconds : {{ $enrichmentValues.config.ttlActiveInSeconds | quote }}
23+ enrichmentClientHeartbeatIntervalInSeconds : {{ $enrichmentValues.config.clientHeartbeatIntervalInSeconds | quote }}
2424 {{- end }}
2525{{- end }}
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ tests:
4242 value : test
4343 - equal :
4444 path : data.enrichmentTtlAfterCompletionInSeconds
45- value : 1
45+ value : " 1 "
4646 - equal :
4747 path : data.enrichmentTtlActiveInSeconds
48- value : 1
48+ value : " 1 "
4949 - equal :
5050 path : data.enrichmentClientHeartbeatIntervalInSeconds
51- value : 1
51+ value : " 1 "
5252 - equal :
5353 path : data.enrichmentServiceAccountName
5454 value : test
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ RELEASE=$1
3+ NAMESPACE=$2
4+ kubectl label --overwrite crds $( kubectl get crd | grep argoproj.io | awk ' {print $1}' | xargs) app.kubernetes.io/managed-by=Helm
5+ kubectl annotate --overwrite crds $( kubectl get crd | grep argoproj.io | awk ' {print $1}' | xargs) meta.helm.sh/release-name=$RELEASE
6+ kubectl annotate --overwrite crds $( kubectl get crd | grep argoproj.io | awk ' {print $1}' | xargs) meta.helm.sh/release-namespace=$NAMESPACE
7+
You can’t perform that action at this time.
0 commit comments