Configure Bitbucket Artifact Credentials
Spinnaker supports reading data from Bitbucket artifacts directly.
If the files are hidden behind basic auth, you can configure an artifact account with the needed credentials to read your artifact.
Prerequisites
-
Collect your basic auth
$USERNAMEand$PASSWORD -
Pick a
$USERNAME_PASSWORD_FILElocation on your disk -
Run:
echo ${USERNAME}:${PASSWORD} > $USERNAME_PASSWORD_FILE
Edit your artifact settings
-
Collect the
$USERNAME_PASSWORD_FILEvalue returned from the prerequisites section above. -
Enable artifact support .
-
Enable the Bitbucket artifact provider:
hal config artifact bitbucket enable -
Add an artifact account:
hal config artifact bitbucket account add my-bitbucket-account \ --username-password-file $USERNAME_PASSWORD_FILE
There are more options described here if you need more control over your configuration.
Last modified May 4, 2021: rest of migration (700781a)