File tree Expand file tree Collapse file tree 5 files changed +40
-2
lines changed
Expand file tree Collapse file tree 5 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.1.3
18+ version : 0.1.4
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 1+ apiVersion : rbac.authorization.k8s.io/v1
2+ kind : Role
3+ metadata :
4+ name : codefresh-engine
5+ labels : {{- include "cf-re.labels" . | nindent 4 }}
6+ rules :
7+ - apiGroups :
8+ - " "
9+ resources :
10+ - secrets
11+ verbs :
12+ - get
Original file line number Diff line number Diff line change 1+ apiVersion : rbac.authorization.k8s.io/v1
2+ kind : RoleBinding
3+ metadata :
4+ name : codefresh-engine
5+ labels : {{- include "cf-re.labels" . | nindent 4 }}
6+ roleRef :
7+ apiGroup : rbac.authorization.k8s.io
8+ kind : Role
9+ name : codefresh-engine
10+ subjects :
11+ - kind : ServiceAccount
12+ name : codefresh-engine
Original file line number Diff line number Diff line change 11apiVersion : v1
22kind : ServiceAccount
33metadata :
4- {{/* has to be a constant */}}
4+ {{- /* has to be a constant */}}
55 name : codefresh-engine
66 labels : {{- include "cf-re.labels" . | nindent 4 }}
7+ {{- if .Values.re.serviceAccount }}
8+ annotations :
9+ {{- range $key, $value := .Values.re.serviceAccount.annotations }}
10+ {{ $key }}: {{ $value }}
11+ {{- end}}
12+ {{- end}}
Original file line number Diff line number Diff line change @@ -20,6 +20,14 @@ monitor:
2020 token : " "
2121 env : { }
2222
23+ re : { }
24+ # Optionally add an AWS IAM role to your pipelines
25+ # More info: https://codefresh.io/docs/docs/administration/codefresh-runner/#injecting-aws-arn-roles-into-the-cluster
26+ # serviceAccount:
27+ # annotations: # will be set on codefresh-engine service account
28+ # foo: bar
29+ # eks.amazonaws.com/role-arn: "arn:aws:iam::<ACCOUNT_ID>:role/<IAM_ROLE_NAME>"
30+
2331venona :
2432 image : " quay.io/codefresh/venona:1.6.7"
2533
You can’t perform that action at this time.
0 commit comments