This PR adds a store to the CLI, that can be leveraged to persist and retrieve credentials for various API endpoints, as well as context-specific settings (initially, default stack orchestrator, but we could expand that). This comes with the logic to persist and retrieve endpoints configs for both Docker and Kubernetes APIs. Signed-off-by: Simon Ferquel <simon.ferquel@docker.com>
7 lines
127 B
Go
7 lines
127 B
Go
package docker
|
|
|
|
const (
|
|
// DockerEndpoint is the name of the docker endpoint in a stored context
|
|
DockerEndpoint = "docker"
|
|
)
|