File tree 5 files changed +34
-2
lines changed
5 files changed +34
-2
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ description: A Helm chart to install an ansible-automation-platform instance
3
3
keywords :
4
4
- pattern
5
5
name : ansible-automation-platform-instance
6
- version : 0.1.0
6
+ version : 0.1.1
7
7
dependencies :
Original file line number Diff line number Diff line change 1
1
# ansible-automation-platform-instance
2
2
3
- ![ Version: 0.1.0 ] ( https://img.shields.io/badge/Version-0.1.0 -informational?style=flat-square )
3
+ ![ Version: 0.1.1 ] ( https://img.shields.io/badge/Version-0.1.1 -informational?style=flat-square )
4
4
5
5
A Helm chart to install an ansible-automation-platform instance
6
6
@@ -13,7 +13,11 @@ This chart is used to set up the Ansible Automation Platform Operator version 2.
13
13
| aap.eda_disabled | bool | ` false ` | |
14
14
| aap.hub_disabled | bool | ` true ` | |
15
15
| aap.lightspeed_disabled | bool | ` true ` | |
16
+ | eePullSecret.key | string | ` "secret/data/hub/ee-pull-secret" ` | |
17
+ | eePullSecret.manage | bool | ` false ` | |
16
18
| global.hubClusterDomain | string | ` "example.com" ` | |
19
+ | secretStore.kind | string | ` "ClusterSecretStore" ` | |
20
+ | secretStore.name | string | ` "vault-backend" ` | |
17
21
18
22
----------------------------------------------
19
23
Autogenerated from chart metadata using [ helm-docs v1.14.2] ( https://github.com/norwoodj/helm-docs/releases/v1.14.2 )
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ metadata:
6
6
namespace : ansible-automation-platform
7
7
spec :
8
8
controller :
9
+ {{- if .Values.eePullSecret.manage }}
10
+ ee_pull_credentials_secret : ee-pull-secret
11
+ {{- end }}
9
12
disabled : false
10
13
eda :
11
14
disabled : {{ coalesce .Values.aap.eda_disabled "false" }}
Original file line number Diff line number Diff line change
1
+ {{- if .Values.eePullSecret.manage }}
2
+ ---
3
+ apiVersion : " external-secrets.io/v1beta1"
4
+ kind : ExternalSecret
5
+ metadata :
6
+ name : ee-pull-secret
7
+ spec :
8
+ refreshInterval : 15s
9
+ secretStoreRef :
10
+ name : {{ .Values.secretStore.name }}
11
+ kind : {{ .Values.secretStore.kind }}
12
+ target :
13
+ name : ee-pull-secret
14
+ dataFrom :
15
+ - extract :
16
+ key : {{ .Values.eePullSecret.key }}
17
+ {{- end }}
Original file line number Diff line number Diff line change 2
2
global :
3
3
hubClusterDomain : example.com
4
4
5
+ eePullSecret :
6
+ manage : false
7
+ key : secret/data/hub/ee-pull-secret
8
+
5
9
aap :
6
10
eda_disabled : false
7
11
hub_disabled : true
8
12
lightspeed_disabled : true
13
+
14
+ secretStore :
15
+ name : vault-backend
16
+ kind : ClusterSecretStore
You can’t perform that action at this time.
0 commit comments