2017-12-19 17:00:31 +00:00
|
|
|
export const reachingOut = `\
|
|
|
|
If you need help, or just want to say hi, don't hesitate in reaching out at:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
GitHub: https://github.com/balena-io/balena-cli/issues/new
|
|
|
|
Forums: https://forums.balena.io\
|
2017-12-19 17:00:31 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
export const getHelp = `\
|
|
|
|
If you need help, don't hesitate in contacting us at:
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
GitHub: https://github.com/balena-io/balena-cli/issues/new
|
|
|
|
Forums: https://forums.balena.io\
|
2017-12-19 17:00:31 +00:00
|
|
|
`;
|
|
|
|
|
2018-10-19 14:38:50 +00:00
|
|
|
export const balenaAsciiArt = `\
|
|
|
|
_ _
|
|
|
|
| |__ __ _ | | ____ _ __ __ _
|
|
|
|
| '_ \\ / _\` || | / __ \\| '_ \\ / _\` |
|
|
|
|
| |_) | (_) || || ___/| | | || (_) |
|
|
|
|
|_.__/ \\__,_||_| \\____/|_| |_| \\__,_|
|
2017-12-19 17:00:31 +00:00
|
|
|
`;
|
2019-02-27 18:01:47 +00:00
|
|
|
|
|
|
|
export const registrySecretsHelp = `\
|
|
|
|
The --registry-secrets option specifies a JSON or YAML file containing private
|
|
|
|
Docker registry usernames and passwords to be used when pulling base images.
|
|
|
|
Sample registry-secrets YAML file:
|
|
|
|
|
|
|
|
'my-registry-server.com:25000':
|
|
|
|
username: ann
|
|
|
|
password: hunter2
|
|
|
|
'': # Use the empty string to refer to the Docker Hub
|
|
|
|
username: mike
|
|
|
|
password: cze14
|
|
|
|
'eu.gcr.io': # Google Container Registry
|
|
|
|
username: '_json_key'
|
|
|
|
password: '{escaped contents of the GCR keyfile.json file}'`;
|