1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
// Copyright (c) 2019-2023, Sylabs Inc. All rights reserved.
// Copyright (c) 2020, Control Command Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.
package docs
// Global content for help and man pages
// #nosec G101
const (
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteUse string = `remote [remote options...]`
RemoteShort string = `Manage singularity remote endpoints`
RemoteLong string = `
The 'remote' command allows you to manage Singularity remote endpoints through
its subcommands.
A 'remote endpoint' is the Sylabs Cloud, a Singularity Enterprise installation,
or a compatible group of services. The remote endpoint is a single address,
e.g. 'cloud.sylabs.io' through which linked library, builder and keystore
sevices will be automatically discovered.
To configure a remote endpoint you must 'remote add' it. You can 'remote login' if
you will be performing actions needing authentication. Switch between
configured remote endpoints with the 'remote use' command. The active remote
endpoint will be used for remote builds, key operations, and 'library://' pull
and push. You can also 'remote logout' from and 'remote remove' an endpoint that
is no longer required.
The remote configuration is stored in $HOME/.singularity/remotes.yaml by default.`
RemoteExample string = `
All group commands have their own help output:
$ singularity help remote list
$ singularity remote list`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote get-login-password
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteGetLoginPasswordUse string = `get-login-password`
RemoteGetLoginPasswordShort string = `Retrieves the cli secret for the currently logged in user`
RemoteGetLoginPasswordLong string = `The 'remote get-login-password' command allows you to retrieve the cli secret for the currently user.`
RemoteGetLoginPasswordExample string = `$ singularity remote get-login-password | docker login -u user --password-stdin https://harbor.sylabs.io`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote add command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteAddUse string = `add [add options...] <remote_name> <remote_URI>`
RemoteAddShort string = `Add a new singularity remote endpoint`
RemoteAddLong string = `
The 'remote add' command allows you to add a new remote endpoint to be
used for singularity remote services. Authentication with a newly created
endpoint will occur automatically.`
RemoteAddExample string = `
$ singularity remote add SylabsCloud cloud.sylabs.io`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote remove command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteRemoveUse string = `remove [remove options...] <remote_name>`
RemoteRemoveShort string = `Remove an existing singularity remote endpoint`
RemoteRemoveLong string = `
The 'remote remove' command allows you to remove an existing remote endpoint
from the list of potential endpoints to use.`
RemoteRemoveExample string = `
$ singularity remote remove SylabsCloud`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote use command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteUseUse string = `use [use options...] <remote_name>`
RemoteUseShort string = `Set a singularity remote endpoint to be actively used`
RemoteUseLong string = `
The 'remote use' command sets the remote to be used by default by any command
that interacts with Singularity services.`
RemoteUseExample string = `
$ singularity remote use SylabsCloud`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote list command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteListUse string = `list`
RemoteListShort string = `List all singularity remote endpoints that are configured`
RemoteListLong string = `
The 'remote list' command lists all remote endpoints configured for use.
The current remote is indicated by 'YES' in the 'ACTIVE' column and can be changed
with the 'remote use' command.`
RemoteListExample string = `
$ singularity remote list`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote login command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteLoginUse string = `login [login options...] <remote_name>`
RemoteLoginShort string = `Login to a singularity remote endpoint`
RemoteLoginLong string = `
The 'remote login' command allows you to set credentials for a specific
endpoint.
If no endpoint is specified, the command will login to the currently active
remote endpoint. This is cloud.sylabs.io by default.`
RemoteLoginExample string = `
To log in to an endpoint:
$ singularity remote login SylabsCloud`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote logout command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteLogoutUse string = `logout <remote_name>`
RemoteLogoutShort string = `Log out from a singularity remote endpoint`
RemoteLogoutLong string = `
The 'remote logout' command allows you to log out from a singularity specific
endpoint. If no endpoint or service is specified, it will logout from the
currently active remote endpoint.
`
RemoteLogoutExample string = `
To log out from an endpoint
$ singularity remote logout SylabsCloud`
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// remote status command
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RemoteStatusUse string = `status [remote_name]`
RemoteStatusShort string = `Check the status of the singularity services at an endpoint, and your authentication token`
RemoteStatusLong string = `
The 'remote status' command checks the status of the specified remote endpoint
and reports the availability of services and their versions, and reports the
user's logged-in status (or lack thereof) on that endpoint. If no endpoint is
specified, it will check the status of the default remote (SylabsCloud). If
you have logged in with an authentication token the validity of that token
will be checked.`
RemoteStatusExample string = `
$ singularity remote status SylabsCloud`
)
|