diff options
author | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2022-05-17 12:04:03 +0100 |
---|---|---|
committer | rameshiyer27 <ramesh.murugan.iyer@est.tech> | 2022-05-17 12:49:12 +0100 |
commit | b77b61847ddd169da9a71b05742ed51bc826f5f6 (patch) | |
tree | 9f8ef7d8cae38dbaf11d0838a9ce70b4887eb004 /participant/participant-impl/participant-impl-kubernetes/src/main/resources/config | |
parent | 9fa11a0b5ef61399598cc84950209bd8b38eed82 (diff) |
Add user configurable parameter for permitted helm repo protocols
User can configure the permitted helm repository protocols http/https
based on the requirement.
Issue-ID: POLICY-4113
Signed-off-by: zrrmmua <ramesh.murugan.iyer@est.tech>
Change-Id: Ib7c91413babd15d0bd22ceffe10cdc1c3a6a0fd0
Diffstat (limited to 'participant/participant-impl/participant-impl-kubernetes/src/main/resources/config')
-rw-r--r-- | participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml index ac18bca39..0f8c49547 100644 --- a/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml +++ b/participant/participant-impl/participant-impl-kubernetes/src/main/resources/config/application.yaml @@ -58,7 +58,7 @@ logging: chart: api: enabled: false - +# Update the config here for permitting repositories and protocols helm: repos: - @@ -66,4 +66,8 @@ helm: address: https://charts.konghq.com - repoName: bitnami - address: https://charts.bitnami.com/bitnami
\ No newline at end of file + address: https://charts.bitnami.com/bitnami + + protocols: + - http + - https
\ No newline at end of file |