2020-05-01 11:18:11 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2017-2020 Balena Ltd.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-12-19 17:00:31 +00:00
|
|
|
export const reachingOut = `\
|
2020-11-18 00:57:26 +00:00
|
|
|
For further help or support, visit:
|
|
|
|
https://www.balena.io/docs/reference/balena-cli/#support-faq-and-troubleshooting
|
2019-03-04 15:02:09 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
const debugHint = `\
|
2020-05-01 12:38:53 +00:00
|
|
|
Additional information may be available with the \`--debug\` flag.
|
2020-11-18 00:34:16 +00:00
|
|
|
\n`;
|
2017-12-19 17:00:31 +00:00
|
|
|
|
2020-11-18 00:57:26 +00:00
|
|
|
export const help = reachingOut;
|
2017-12-19 17:00:31 +00:00
|
|
|
|
2020-11-18 00:34:16 +00:00
|
|
|
// Note that the value of process.env.DEBUG may change after the --debug flag
|
|
|
|
// is parsed, so its evaluation cannot happen at module loading time.
|
|
|
|
export const getHelp = () => (process.env.DEBUG ? '' : debugHint) + help;
|
2020-05-01 12:38:53 +00:00
|
|
|
|
2021-07-15 13:41:38 +00:00
|
|
|
/**
|
|
|
|
* Take a multiline string like:
|
|
|
|
* Line One
|
|
|
|
* Line Two
|
|
|
|
* and return a string like:
|
|
|
|
* ---------------
|
|
|
|
* [Warn] Line One
|
|
|
|
* [Warn] Line Two
|
|
|
|
* ---------------
|
|
|
|
* where the length of the dash rows matches the length of the longest line.
|
|
|
|
*/
|
|
|
|
export function warnify(msg: string) {
|
|
|
|
const lines = msg.split('\n').map((l) => `[Warn] ${l}`);
|
|
|
|
const maxLength = Math.max(...lines.map((l) => l.length));
|
|
|
|
const hr = '-'.repeat(maxLength);
|
|
|
|
return [hr, ...lines, hr].join('\n');
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
export const registrySecretsHelp =
|
|
|
|
'REGISTRY SECRETS \n' +
|
|
|
|
`The --registry-secrets option specifies a JSON or YAML file containing private
|
2019-02-27 18:01:47 +00:00
|
|
|
Docker registry usernames and passwords to be used when pulling base images.
|
|
|
|
Sample registry-secrets YAML file:
|
2020-06-24 23:01:53 +00:00
|
|
|
\`\`\`
|
2019-02-27 18:01:47 +00:00
|
|
|
'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'
|
2019-06-18 10:13:09 +00:00
|
|
|
password: '{escaped contents of the GCR keyfile.json file}'
|
2020-06-24 23:01:53 +00:00
|
|
|
\`\`\`
|
2019-08-15 14:38:50 +00:00
|
|
|
For a sample project using registry secrets with the Google Container Registry,
|
2020-09-10 14:02:04 +00:00
|
|
|
check: https://github.com/balena-io-examples/sample-gcr-registry-secrets
|
2019-08-15 14:38:50 +00:00
|
|
|
|
|
|
|
If the --registry-secrets option is not specified, and a secrets.yml or
|
|
|
|
secrets.json file exists in the balena directory (usually $HOME/.balena),
|
|
|
|
this file will be used instead.`;
|
2020-05-01 11:18:11 +00:00
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
export const dockerignoreHelp =
|
|
|
|
'DOCKERIGNORE AND GITIGNORE FILES \n' +
|
|
|
|
`By default, the balena CLI will use a single ".dockerignore" file (if any) at
|
2020-06-24 23:01:53 +00:00
|
|
|
the project root (--source directory) in order to decide which source files to
|
2020-09-08 14:30:41 +00:00
|
|
|
exclude from the "build context" (tar stream) sent to balenaCloud, Docker
|
2021-07-15 13:41:38 +00:00
|
|
|
daemon or balenaEngine. In a microservices (multicontainer) fleet, the
|
2020-09-08 14:30:41 +00:00
|
|
|
source directory is the directory that contains the "docker-compose.yml" file.
|
2020-06-24 23:01:53 +00:00
|
|
|
|
2020-09-08 14:30:41 +00:00
|
|
|
The --multi-dockerignore (-m) option may be used with microservices
|
2021-07-15 13:41:38 +00:00
|
|
|
(multicontainer) fleets that define a docker-compose.yml file. When this
|
|
|
|
option is used, each service subdirectory (defined by the \`build\` or
|
2020-09-08 14:30:41 +00:00
|
|
|
\`build.context\` service properties in the docker-compose.yml file) is
|
|
|
|
filtered separately according to a .dockerignore file defined in the service
|
|
|
|
subdirectory. If no .dockerignore file exists in a service subdirectory, then
|
|
|
|
only the default .dockerignore patterns (see below) apply for that service
|
|
|
|
subdirectory.
|
2020-06-24 23:01:53 +00:00
|
|
|
|
|
|
|
When the --multi-dockerignore (-m) option is used, the .dockerignore file (if
|
|
|
|
any) defined at the overall project root will be used to filter files and
|
|
|
|
subdirectories other than service subdirectories. It will not have any effect
|
|
|
|
on service subdirectories, whether or not a service subdirectory defines its
|
|
|
|
own .dockerignore file. Multiple .dockerignore files are not merged or added
|
2021-01-12 19:32:33 +00:00
|
|
|
together, and cannot override or extend other files. This behavior maximizes
|
2020-06-24 23:01:53 +00:00
|
|
|
compatibility with the standard docker-compose tool, while still allowing a
|
|
|
|
root .dockerignore file (at the overall project root) to filter files and
|
|
|
|
folders that are outside service subdirectories.
|
|
|
|
|
2020-10-20 21:11:17 +00:00
|
|
|
balena CLI releases older than v12.0.0 also took .gitignore files into account.
|
2020-06-24 23:01:53 +00:00
|
|
|
This behavior is deprecated, but may still be enabled with the --gitignore (-g)
|
|
|
|
option if compatibility is required. This option is mutually exclusive with
|
|
|
|
--multi-dockerignore (-m) and will be removed in the CLI's next major version
|
|
|
|
release (v13).
|
|
|
|
|
2020-12-10 12:30:17 +00:00
|
|
|
Default .dockerignore patterns \n` +
|
|
|
|
`When --gitignore (-g) is NOT used (i.e. when not in v11 compatibility mode), a
|
2020-06-24 23:01:53 +00:00
|
|
|
few default/hardcoded dockerignore patterns are "merged" (in memory) with the
|
|
|
|
patterns found in the applicable .dockerignore files, in the following order:
|
|
|
|
\`\`\`
|
2020-05-01 11:18:11 +00:00
|
|
|
**/.git
|
2020-06-24 23:01:53 +00:00
|
|
|
< user's patterns from the applicable '.dockerignore' file, if any >
|
2020-05-01 11:18:11 +00:00
|
|
|
!**/.balena
|
|
|
|
!**/.resin
|
|
|
|
!**/Dockerfile
|
|
|
|
!**/Dockerfile.*
|
|
|
|
!**/docker-compose.yml
|
2020-06-24 23:01:53 +00:00
|
|
|
\`\`\`
|
|
|
|
These patterns always apply, whether or not .dockerignore files exist in the
|
|
|
|
project. If necessary, the effect of the \`**/.git\` pattern may be modified by
|
|
|
|
adding counter patterns to the applicable .dockerignore file(s), for example
|
|
|
|
\`!mysubmodule/.git\`. For documentation on pattern format, see:
|
2020-05-01 11:18:11 +00:00
|
|
|
- https://docs.docker.com/engine/reference/builder/#dockerignore-file
|
|
|
|
- https://www.npmjs.com/package/@balena/dockerignore`;
|
2020-12-10 12:30:17 +00:00
|
|
|
|
|
|
|
export const applicationIdInfo = `\
|
2021-07-15 13:41:38 +00:00
|
|
|
Fleets may be specified by fleet name, slug, or numeric ID. Fleet slugs are
|
|
|
|
the recommended option, as they are unique and unambiguous. Slugs can be
|
|
|
|
listed with the \`balena fleets\` command. Note that slugs may change if the
|
|
|
|
fleet is renamed. Fleet names are not unique and may result in "Fleet is
|
|
|
|
ambiguous" errors at any time (even if it "used to work in the past"), for
|
|
|
|
example if the name clashes with a newly created public fleet, or with fleets
|
|
|
|
from other balena accounts that you may be invited to join under any role.
|
|
|
|
For this reason, fleet names are especially discouraged in scripts (e.g. CI
|
|
|
|
environments). Numeric fleet IDs are deprecated because they consist of an
|
|
|
|
implementation detail of the balena backend. We intend to remove support for
|
|
|
|
numeric IDs at some point in the future.`;
|
2020-12-10 12:30:17 +00:00
|
|
|
|
|
|
|
export const jsonInfo = `\
|
|
|
|
The --json option is recommended when scripting the output of this command,
|
|
|
|
because field names are less likely to change in JSON format and because it
|
|
|
|
better represents data types like arrays, empty strings and null values.
|
|
|
|
The 'jq' utility may be helpful for querying JSON fields in shell scripts
|
|
|
|
(https://stedolan.github.io/jq/manual/).`;
|
2021-04-21 05:26:57 +00:00
|
|
|
|
|
|
|
export const buildArgDeprecation = `\
|
|
|
|
WARNING: You have specified a '--buildArg' option, which is now deprecated, and
|
|
|
|
may be removed in the future. The recommended alternative is build-time secrets:
|
|
|
|
https://www.balena.io/docs/learn/deploy/deployment/#build-time-secrets-and-variables
|
|
|
|
|
|
|
|
If you have a particular use for buildArg, which is not satisfied by build-time
|
|
|
|
secrets, please contact us via support or the forums: https://forums.balena.io/
|
|
|
|
\n`;
|
2021-07-15 13:41:38 +00:00
|
|
|
|
|
|
|
// Note: if you edit this message, check that the regex replace
|
|
|
|
// logic in lib/commands/apps.ts still works.
|
|
|
|
export const appToFleetCmdMsg = `\
|
|
|
|
Renaming notice: The 'app' command was renamed to 'fleet', and 'app'
|
|
|
|
is now an alias. THE ALIAS WILL BE REMOVED in the next major version
|
|
|
|
of the balena CLI (so that a different 'app' command can be implemented
|
|
|
|
in the future). Use 'fleet' instead of 'app' to avoid this warning.
|
|
|
|
Find out more at: https://git.io/JRuZr`;
|
|
|
|
|
|
|
|
export const appToFleetFlagMsg = `\
|
|
|
|
Renaming notice: The '-a', '--app' or '--application' options are now
|
|
|
|
aliases for the '-f' or '--fleet' options. THE ALIASES WILL BE REMOVED
|
|
|
|
in the next major version of the balena CLI (so that a different '--app'
|
|
|
|
option can be implemented in the future). Use '-f' or '--fleet' instead.
|
|
|
|
Find out more at: https://git.io/JRuZr`;
|
|
|
|
|
|
|
|
export const appToFleetOutputMsg = `\
|
|
|
|
Renaming notice: The 'app' or 'application' words in table headers
|
|
|
|
or in JSON object keys/properties will be replaced with 'fleet' in
|
|
|
|
the next major version of the CLI (v13). The --v13 option may be used
|
|
|
|
to enable the new names already now, and suppress a warning message.
|
|
|
|
(The --v13 option will be silently ignored in CLI v13.)
|
|
|
|
Find out more at: https://git.io/JRuZr`;
|