File tree 5 files changed +15
-8
lines changed
templates/_components/cap-app-proxy
5 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
appVersion : v0.0.1
3
3
description : A Helm chart for Codefresh gitops runtime
4
4
name : gitops-runtime
5
- version : 0.2.0-alpha-7
5
+ version : 0.2.0-alpha-8
6
6
home : https://github.com/codefresh-io/gitops-runtime-helm
7
7
keywords :
8
8
- codefresh
Original file line number Diff line number Diff line change 1
1
# gitops-runtime
2
2
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 )
4
4
5
5
A Helm chart for Codefresh gitops runtime
6
6
Original file line number Diff line number Diff line change 18
18
enrichmentConcurrencyCmKey : {{ $enrichmentValues.config.concurrencyCmKey }}
19
19
enrichmentServiceAccountName : {{ $enrichmentValues.serviceAccount.name }}
20
20
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 }}
24
24
{{- end }}
25
25
{{- end }}
Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ tests:
42
42
value : test
43
43
- equal :
44
44
path : data.enrichmentTtlAfterCompletionInSeconds
45
- value : 1
45
+ value : " 1 "
46
46
- equal :
47
47
path : data.enrichmentTtlActiveInSeconds
48
- value : 1
48
+ value : " 1 "
49
49
- equal :
50
50
path : data.enrichmentClientHeartbeatIntervalInSeconds
51
- value : 1
51
+ value : " 1 "
52
52
- equal :
53
53
path : data.enrichmentServiceAccountName
54
54
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