Trying to clone/pull private addons repositories using https #614
Unanswered
gabonog
asked this question in
Doodba - The image
Replies: 1 comment 11 replies
|
If your are talking about a development, i think the aggregate part is always called with setup-devel.yaml that does not extend common.yaml and therefore you will need to define For prod.yaml and test.yaml setting them in common.yaml environment should work i think. Also keep in mind git-aggregator is using Template.substitute, so i don't think |
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi everyone!
I am trying to implement a way to clone/pull private addons repositories via https securely. SSH is not an option because of technical limitations of the git server.
I tried something like this (and it worked) on
repos.yaml:But the problem here is to leave those credentials in plain text in the file. So, what I want to use is something similar to this (as suggested on point 3 here: #287 (comment)):
But no idea how to implement that env vars and use them in
repos.yaml. These are my failed attempts:common.yaml: Add env vars inbuild/args.common.yaml: Add env vars inenvironment.Any suggestion to implement those env vars?
Thank you!
All reactions