[GLOBAL] Allow anonymous access to main repo 02/127302/5
authorSylvain Desbureaux <sylvain.desbureaux@orange.com>
Fri, 25 Feb 2022 09:46:34 +0000 (10:46 +0100)
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>
Mon, 28 Mar 2022 06:59:40 +0000 (06:59 +0000)
Today, access to main repo (nexus3.onap.org:10001 by default) mandates
an user configuration.
If someone is proxying it with a repository with anonymous access, it
may not work.
This patch allows to remove authentication by setting user to empty
string.

Issue-ID: OOM-2928
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Change-Id: I379d43343694d7dcb9212687c5a8104cc8c77bc3

kubernetes/common/repositoryGenerator/templates/_repository.tpl

index f57d390..1b99285 100644 (file)
     mail: email (optional)
   You can also set the same things for dockerHub, elastic and googleK8s if
   needed.
+  if not needed, set global.repositoryCred.user to empty value.
 */}}
 {{- define "repositoryGenerator.secret" -}}
   {{- $dot := default . .dot -}}
   {{- if $subchartDot.Values.global.repositoryCred }}
   {{-   $repo := $subchartDot.Values.global.repository }}
   {{-   $cred := $subchartDot.Values.global.repositoryCred }}
-  {{-   $mail := default "@" $cred.mail }}
-  {{-   $auth := printf "%s:%s" $cred.user $cred.password | b64enc }}
-  {{-   $repoCreds = printf "\"%s\": {\"username\":\"%s\",\"password\":\"%s\",\"email\":\"%s\",\"auth\":\"%s\"}" $repo $cred.user $cred.password $mail $auth }}
+  {{-   if $cred.user }}
+  {{-     $mail := default "@" $cred.mail }}
+  {{-     $auth := printf "%s:%s" $cred.user $cred.password | b64enc }}
+  {{-     $repoCreds = printf "\"%s\": {\"username\":\"%s\",\"password\":\"%s\",\"email\":\"%s\",\"auth\":\"%s\"}" $repo $cred.user $cred.password $mail $auth }}
+  {{-   end }}
   {{- end }}
   {{- if $subchartDot.Values.global.dockerHubRepositoryCred }}
   {{-   $dhRepo := $subchartDot.Values.global.dockerHubRepository }}