forked from toolshed/abra
Compare commits
135 Commits
0.2.1-alph
...
0.3.1-alph
Author | SHA1 | Date | |
---|---|---|---|
a7ebcd8950 | |||
e589709cb0 | |||
56c3e070f5 | |||
cc37615d83 | |||
0b37f63248 | |||
9c3a06a7d9 | |||
cdef8b5ea5 | |||
cba261b18c | |||
1f6e4fa4a3 | |||
4a245c3e02 | |||
299faa1adf
|
|||
704e773a16 | |||
7143d09fd4 | |||
4e76d49c80 | |||
c9dff0c3bd | |||
e77e72a9e6 | |||
af6f759c92 | |||
034295332c | |||
dac2489e6d | |||
7bdc1946a2 | |||
2439643895 | |||
0876f677d1 | |||
31dafb3ae4 | |||
915083b426 | |||
486a1717e7 | |||
9122c0a9b8 | |||
85ff04202f | |||
ecba4e01f1 | |||
751b187df6 | |||
f74261dbe6 | |||
2600a8137c | |||
b6a6163eff | |||
c25b2b17df
|
|||
713308e0b8 | |||
fcbf41ee95 | |||
5add4ccc1b
|
|||
9220a8c09b
|
|||
f78a04109c | |||
b67ad02f87 | |||
215431696e | |||
cd361237e7 | |||
db10c7b849 | |||
d38f82ebe7 | |||
59031595ea | |||
6f26b51f3e | |||
17a5f1529a
|
|||
2ba6445daa | |||
edb427a7ae | |||
3dc186e231 | |||
1467ae5007 | |||
2b9395be1a | |||
a539033b55 | |||
63d9703d9d | |||
f9726b6643 | |||
4a0761926c | |||
de7054fd74 | |||
0e0e2db755 | |||
04e24022f5 | |||
c227972c12 | |||
911f22233f | |||
7d8e2d9dd1 | |||
f041083604 | |||
f57ae1e904 | |||
49a87cae2e | |||
f0de18a7f0 | |||
1caef09cd2 | |||
e4e606efb0 | |||
08aca28d9d | |||
f02ea7ca0d | |||
3d3c4b3aae | |||
e37b49201f | |||
ede5a59562 | |||
fc2deda1f6 | |||
c76601c9ce | |||
7f176d8e2f | |||
9b704b002b | |||
ab02c5f0dd | |||
f2b02e39a7 | |||
31f6bd06a5 | |||
bd92c52eed | |||
0486091768 | |||
3b77607f36 | |||
f833ccb864 | |||
7022f42711 | |||
c76bd25c1d | |||
a6b5ac3410 | |||
71225d2099
|
|||
5d59d12d75
|
|||
d56400eea8 | |||
b3496ad286 | |||
066b2b9373 | |||
aec11bda28 | |||
9a513a0700 | |||
9f3ab0de9e | |||
e26afb97af | |||
960e47437c | |||
8e3f90a7f3 | |||
1d7cb0d9b6 | |||
4d2a2d42fb | |||
bdae61ed51 | |||
766e3008f6 | |||
383f857f4a
|
|||
3d46ce6db2 | |||
9e0d77d5c6 | |||
f9e2d24550 | |||
8772217f41 | |||
a7970132c2 | |||
2d091a6b00 | |||
147687d7ce | |||
9a0e12258a | |||
1396f15c78 | |||
2e2560dea7 | |||
c789a70653 | |||
8f55330210 | |||
d54a45bef7 | |||
fdc0246f1d | |||
a394618965 | |||
8cd9f2700f | |||
b72fa28ddb | |||
313e3beb1e | |||
94c7f59113 | |||
5ae06bbd42 | |||
9f9248b987 | |||
2bb4a9c063 | |||
0c8dba0681 | |||
a491332c1c | |||
6a75ffc051 | |||
5261d1a033 | |||
a458a5d9f7 | |||
5ce2419354 | |||
963f8dcc73 | |||
dc04cf5ff7 | |||
80921c9f55 | |||
8b15f2de5b | |||
cdb76e7276 |
@ -32,9 +32,7 @@ changelog:
|
|||||||
filters:
|
filters:
|
||||||
exclude:
|
exclude:
|
||||||
- "^WIP:"
|
- "^WIP:"
|
||||||
- "^chore:"
|
|
||||||
- "^docs:"
|
|
||||||
- "^refactor:"
|
|
||||||
- "^style:"
|
- "^style:"
|
||||||
- "^test:"
|
- "^test:"
|
||||||
- "^tests:"
|
- "^tests:"
|
||||||
|
- "^Revert"
|
||||||
|
9
Makefile
9
Makefile
@ -32,7 +32,14 @@ static:
|
|||||||
@staticcheck $(ABRA)
|
@staticcheck $(ABRA)
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@go test ./... -cover
|
@go test ./... -cover -v
|
||||||
|
|
||||||
loc:
|
loc:
|
||||||
@find . -name "*.go" | xargs wc -l
|
@find . -name "*.go" | xargs wc -l
|
||||||
|
|
||||||
|
loc-author:
|
||||||
|
@git ls-files -z | \
|
||||||
|
xargs -0rn 1 -P "$$(nproc)" -I{} sh -c 'git blame -w -M -C -C --line-porcelain -- {} | grep -I --line-buffered "^author "' | \
|
||||||
|
sort -f | \
|
||||||
|
uniq -ic | \
|
||||||
|
sort -n
|
||||||
|
86
README.md
86
README.md
@ -7,99 +7,59 @@
|
|||||||
|
|
||||||
The Co-op Cloud utility belt 🎩🐇
|
The Co-op Cloud utility belt 🎩🐇
|
||||||
|
|
||||||
`abra` is a command-line tool for managing your own [Co-op Cloud](https://coopcloud.tech). It can provision new servers, create applications, deploy them, run backup and restore operations and a whole lot of other things. It is the go-to tool for day-to-day operations when managing a Co-op Cloud instance.
|
`abra` is a command-line tool for managing your own [Co-op Cloud](https://coopcloud.tech). It can provision new servers, create apps, deploy them, run backup and restore operations and a whole lot of other things. Please see [docs.coopcloud.tech](https://docs.coopcloud.tech) for more extensive documentation.
|
||||||
|
|
||||||
## Install
|
## Quick install
|
||||||
|
|
||||||
### Arch-based Linux Distros
|
```bash
|
||||||
|
curl https://install.abra.autonomic.zone | bash
|
||||||
[abra (coming-soon)](https://aur.archlinux.org/packages/abra/) or for the latest version on git [abra-git](https://aur.archlinux.org/packages/abra-git/)
|
|
||||||
|
|
||||||
```sh
|
|
||||||
yay -S abra-git # or abra
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Debian-based Linux Distros
|
Or using the latest release candidate (extra experimental!):
|
||||||
|
|
||||||
**Coming Soon**
|
```bash
|
||||||
|
curl https://install.abra.autonomic.zone | bash -s -- --rc
|
||||||
### Homebrew
|
|
||||||
|
|
||||||
**Coming Soon**
|
|
||||||
|
|
||||||
### Build from source
|
|
||||||
|
|
||||||
```sh
|
|
||||||
git clone https://git.coopcloud.tech/coop-cloud/abra
|
|
||||||
cd abra
|
|
||||||
go env -w GOPRIVATE=coopcloud.tech
|
|
||||||
make install
|
|
||||||
```
|
```
|
||||||
|
|
||||||
The abra binary will be in `$GOPATH/bin`.
|
Source for this script is in [scripts/installer/installer](./scripts/installer/installer).
|
||||||
|
|
||||||
## Autocompletion
|
|
||||||
|
|
||||||
**bash**
|
|
||||||
|
|
||||||
Copy `scripts/autocomplete/bash` into `/etc/bash_completion.d/` and rename
|
|
||||||
it to abra.
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo cp scripts/autocomplete/bash /etc/bash_completion.d/abra
|
|
||||||
source /etc/bash_completion.d/abra
|
|
||||||
```
|
|
||||||
|
|
||||||
In development, you can source the script in your git checkout, just make sure
|
|
||||||
to set `PROG=abra`, otherwise it'll add completion to the wrong command:
|
|
||||||
|
|
||||||
```
|
|
||||||
PROG=abra source /path/to/abra/scripts/autocomplete/bash
|
|
||||||
```
|
|
||||||
|
|
||||||
**(fi)zsh**
|
|
||||||
|
|
||||||
(fi)zsh doesn't have an autocompletion folder by default but you can create one, then copy `scripts/autocomplete/zsh` into it and add a couple lines to your `~/.zshrc` or `~/.fizsh/.fizshrc`
|
|
||||||
|
|
||||||
```
|
|
||||||
sudo mkdir /etc/zsh/completion.d/
|
|
||||||
sudo cp scripts/autocomplete/zsh /etc/zsh/completion.d/abra
|
|
||||||
echo "PROG=abra\n_CLI_ZSH_AUTOCOMPLETE_HACK=1\nsource /etc/zsh/completion.d/abra" >> ~/.zshrc
|
|
||||||
```
|
|
||||||
|
|
||||||
(replace .zshrc with ~/.fizsh/.fizshrc if you use fizsh)
|
|
||||||
|
|
||||||
## Hacking
|
## Hacking
|
||||||
|
|
||||||
Install direnv, run `cp .envrc.sample .envrc`, then run `direnv allow` in this directory. This will set coopcloud repos as private due to [this bug.](https://git.coopcloud.tech/coop-cloud/coopcloud.tech/issues/20#issuecomment-8201). Or you can run `go env -w GOPRIVATE=coopcloud.tech` but I'm not sure how persistent this is.
|
### Getting started
|
||||||
|
|
||||||
|
Install [direnv](https://direnv.net), run `cp .envrc.sample .envrc`, then run `direnv allow` in this directory. This will set coopcloud repos as private due to [this bug.](https://git.coopcloud.tech/coop-cloud/coopcloud.tech/issues/20#issuecomment-8201). Or you can run `go env -w GOPRIVATE=coopcloud.tech` but I'm not sure how persistent this is.
|
||||||
|
|
||||||
Install [Go >= 1.16](https://golang.org/doc/install) and then:
|
Install [Go >= 1.16](https://golang.org/doc/install) and then:
|
||||||
|
|
||||||
- `make build` to build
|
- `make build` to build
|
||||||
- `./abra` to run commands
|
- `./abra` to run commands
|
||||||
- `make test` will run tests
|
- `make test` will run tests
|
||||||
|
- `make install` will install it to `$GOPATH/bin`
|
||||||
|
- `go get <package>` and `go mod tidy` to add a new dependency
|
||||||
|
|
||||||
Our [Drone CI configuration](.drone.yml) runs a number of sanity on each pushed commit. See the [Makefile](./Makefile) for more handy targets.
|
Our [Drone CI configuration](.drone.yml) runs a number of sanity on each pushed commit. See the [Makefile](./Makefile) for more handy targets.
|
||||||
|
|
||||||
Please use the [conventional commit format](https://www.conventionalcommits.org/en/v1.0.0/) for your commits so we can automate our change log.
|
Please use the [conventional commit format](https://www.conventionalcommits.org/en/v1.0.0/) for your commits so we can automate our change log.
|
||||||
|
|
||||||
## Versioning
|
### Versioning
|
||||||
|
|
||||||
We use [goreleaser](https://goreleaser.com) to help us automate releases. We use [semver](https://semver.org) for versioning all releases of the tool. While we are still in the public alpha release phase, we will maintain a `0.y.z-alpha` format. Change logs are generated from our commit logs. We are still working this out and aim to refine our release praxis as we go.
|
We use [goreleaser](https://goreleaser.com) to help us automate releases. We use [semver](https://semver.org) for versioning all releases of the tool. While we are still in the public alpha release phase, we will maintain a `0.y.z-alpha` format. Change logs are generated from our commit logs. We are still working this out and aim to refine our release praxis as we go.
|
||||||
|
|
||||||
For developers, while using this `-alpha` format, the `y` part is the "major" version part. So, if you make breaking changes, you increment that and _not_ the `x` part. So, if you're on `0.1.0-alpha`, then you'd go to `0.1.1-alpha` for a backwards compatible change and `0.2.0-alpha` for a backwards incompatible change.
|
For developers, while using this `-alpha` format, the `y` part is the "major" version part. So, if you make breaking changes, you increment that and _not_ the `x` part. So, if you're on `0.1.0-alpha`, then you'd go to `0.1.1-alpha` for a backwards compatible change and `0.2.0-alpha` for a backwards incompatible change.
|
||||||
|
|
||||||
## Making a new release
|
### Making a new release
|
||||||
|
|
||||||
- Change `ABRA_VERSION` to match the new tag in [`scripts`](./scripts/installer/installer) (use [semver](https://semver.org))
|
- Change `ABRA_VERSION` to match the new tag in [`scripts`](./scripts/installer/installer) (use [semver](https://semver.org))
|
||||||
- Commit that change (e.g. `git commit -m 'chore: publish next tag 0.3.1-alpha'`)
|
- Commit that change (e.g. `git commit -m 'chore: publish next tag x.y.z-alpha'`)
|
||||||
- Make a new tag (e.g. `git tag 0.y.z-alpha`)
|
- Make a new tag (e.g. `git tag -a x.y.z-alpha`)
|
||||||
- Push the new tag (e.g. `git push && git push --tags`)
|
- Push the new tag (e.g. `git push && git push --tags`)
|
||||||
- Wait until the build finishes on [build.coopcloud.tech](https://build.coopcloud.tech/coop-cloud/abra)
|
- Wait until the build finishes on [build.coopcloud.tech](https://build.coopcloud.tech/coop-cloud/abra)
|
||||||
- Deploy the new installer script (e.g. `cd ./scripts/installer && make`)
|
- Deploy the new installer script (e.g. `cd ./scripts/installer && make`)
|
||||||
- Check the release worked, (e.g. `abra upgrade; abra version`)
|
- Check the release worked, (e.g. `abra upgrade; abra -v`)
|
||||||
|
|
||||||
## Fork maintenance
|
### Fork maintenance
|
||||||
|
|
||||||
|
#### `godotenv`
|
||||||
|
|
||||||
We maintain a fork of [godotenv](https://github.com/Autonomic-Cooperative/godotenv) for two features:
|
We maintain a fork of [godotenv](https://github.com/Autonomic-Cooperative/godotenv) for two features:
|
||||||
|
|
||||||
@ -109,3 +69,7 @@ We maintain a fork of [godotenv](https://github.com/Autonomic-Cooperative/godote
|
|||||||
You can upgrade the version here by running `go get github.com/Autonomic-Cooperative/godotenv@<commit>` where `<commit>` is the
|
You can upgrade the version here by running `go get github.com/Autonomic-Cooperative/godotenv@<commit>` where `<commit>` is the
|
||||||
latest commit you want to pin to. We are aiming to migrate to YAML format for the environment configuration, so this should only
|
latest commit you want to pin to. We are aiming to migrate to YAML format for the environment configuration, so this should only
|
||||||
be a temporary thing.
|
be a temporary thing.
|
||||||
|
|
||||||
|
#### `docker/client`
|
||||||
|
|
||||||
|
A number of modules in [pkg/upstream](./pkg/upstream) are copy/pasta'd from the upstream [docker/docker/client](https://pkg.go.dev/github.com/docker/docker/client). We had to do this because upstream are not exposing their API as public.
|
||||||
|
@ -18,6 +18,7 @@ to scaling apps up and spinning them down.
|
|||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
appNewCommand,
|
appNewCommand,
|
||||||
appConfigCommand,
|
appConfigCommand,
|
||||||
|
appRestartCommand,
|
||||||
appDeployCommand,
|
appDeployCommand,
|
||||||
appUpgradeCommand,
|
appUpgradeCommand,
|
||||||
appUndeployCommand,
|
appUndeployCommand,
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package app
|
package app
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
@ -17,7 +18,21 @@ var appConfigCommand = &cli.Command{
|
|||||||
Aliases: []string{"c"},
|
Aliases: []string{"c"},
|
||||||
Usage: "Edit app config",
|
Usage: "Edit app config",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
app := internal.ValidateApp(c)
|
appName := c.Args().First()
|
||||||
|
|
||||||
|
if appName == "" {
|
||||||
|
internal.ShowSubcommandHelpAndError(c, errors.New("no app provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
files, err := config.LoadAppFiles("")
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
appFile, exists := files[appName]
|
||||||
|
if !exists {
|
||||||
|
logrus.Fatalf("cannot find app with name '%s'", appName)
|
||||||
|
}
|
||||||
|
|
||||||
ed, ok := os.LookupEnv("EDITOR")
|
ed, ok := os.LookupEnv("EDITOR")
|
||||||
if !ok {
|
if !ok {
|
||||||
@ -30,7 +45,7 @@ var appConfigCommand = &cli.Command{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd := exec.Command(ed, app.Path)
|
cmd := exec.Command(ed, appFile.Path)
|
||||||
cmd.Stdin = os.Stdin
|
cmd.Stdin = os.Stdin
|
||||||
cmd.Stdout = os.Stdout
|
cmd.Stdout = os.Stdout
|
||||||
cmd.Stderr = os.Stderr
|
cmd.Stderr = os.Stderr
|
||||||
|
@ -5,13 +5,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/formatter"
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"github.com/docker/docker/api/types"
|
|
||||||
"github.com/docker/docker/api/types/filters"
|
|
||||||
"github.com/docker/docker/pkg/archive"
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -21,6 +16,18 @@ var appCpCommand = &cli.Command{
|
|||||||
Aliases: []string{"c"},
|
Aliases: []string{"c"},
|
||||||
ArgsUsage: "<src> <dst>",
|
ArgsUsage: "<src> <dst>",
|
||||||
Usage: "Copy files to/from a running app service",
|
Usage: "Copy files to/from a running app service",
|
||||||
|
Description: `
|
||||||
|
This command supports copying files to and from any app service file system.
|
||||||
|
|
||||||
|
If you want to copy a myfile.txt to the root of the app service:
|
||||||
|
|
||||||
|
abra app cp <app> myfile.txt app:/
|
||||||
|
|
||||||
|
And if you want to copy that file back to your current working directory locally:
|
||||||
|
|
||||||
|
abra app cp <app> app:/myfile.txt .
|
||||||
|
|
||||||
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
app := internal.ValidateApp(c)
|
app := internal.ValidateApp(c)
|
||||||
|
|
||||||
@ -64,61 +71,28 @@ var appCpCommand = &cli.Command{
|
|||||||
logrus.Debugf("assuming transfer is going TO the container")
|
logrus.Debugf("assuming transfer is going TO the container")
|
||||||
}
|
}
|
||||||
|
|
||||||
appFiles, err := config.LoadAppFiles("")
|
if !isToContainer {
|
||||||
|
if _, err := os.Stat(dstPath); os.IsNotExist(err) {
|
||||||
|
logrus.Fatalf("%s does not exist locally?", dstPath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
err := internal.ConfigureAndCp(c, app, srcPath, dstPath, service, isToContainer)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
appEnv, err := config.GetApp(appFiles, app.Name)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
cl, err := client.New(app.Server)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
filters := filters.NewArgs()
|
|
||||||
filters.Add("name", fmt.Sprintf("%s_%s", appEnv.StackName(), service))
|
|
||||||
containers, err := cl.ContainerList(c.Context, types.ContainerListOptions{Filters: filters})
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(containers) != 1 {
|
|
||||||
logrus.Fatalf("expected 1 container but got %v", len(containers))
|
|
||||||
}
|
|
||||||
container := containers[0]
|
|
||||||
|
|
||||||
logrus.Debugf("retrieved '%s' as target container on '%s'", formatter.ShortenID(container.ID), app.Server)
|
|
||||||
|
|
||||||
if isToContainer {
|
|
||||||
if _, err := os.Stat(srcPath); err != nil {
|
|
||||||
logrus.Fatalf("'%s' does not exist?", srcPath)
|
|
||||||
}
|
|
||||||
|
|
||||||
toTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip}
|
|
||||||
content, err := archive.TarWithOptions(srcPath, toTarOpts)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
copyOpts := types.CopyToContainerOptions{AllowOverwriteDirWithFile: false, CopyUIDGID: false}
|
|
||||||
if err := cl.CopyToContainer(c.Context, container.ID, dstPath, content, copyOpts); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
content, _, err := cl.CopyFromContainer(c.Context, container.ID, srcPath)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
defer content.Close()
|
|
||||||
fromTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip}
|
|
||||||
if err := archive.Untar(content, dstPath, fromTarOpts); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
|
},
|
||||||
|
BashComplete: func(c *cli.Context) {
|
||||||
|
appNames, err := config.GetAppNames()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warn(err)
|
||||||
|
}
|
||||||
|
if c.NArg() > 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, a := range appNames {
|
||||||
|
fmt.Println(a)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,9 @@ package app
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
|
||||||
|
|
||||||
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
stack "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/recipe"
|
|
||||||
"github.com/AlecAivazis/survey/v2"
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -36,103 +29,7 @@ Chas mode ("--chaos") will deploy your local checkout of a recipe as-is,
|
|||||||
including unstaged changes and can be useful for live hacking and testing new
|
including unstaged changes and can be useful for live hacking and testing new
|
||||||
recipes.
|
recipes.
|
||||||
`,
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: internal.DeployAction,
|
||||||
app := internal.ValidateApp(c)
|
|
||||||
stackName := app.StackName()
|
|
||||||
|
|
||||||
cl, err := client.New(app.Server)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
logrus.Debugf("checking whether '%s' is already deployed", stackName)
|
|
||||||
|
|
||||||
isDeployed, deployedVersion, err := stack.IsDeployed(c.Context, cl, stackName)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if isDeployed {
|
|
||||||
if internal.Force {
|
|
||||||
logrus.Warnf("'%s' already deployed but continuing (--force)", stackName)
|
|
||||||
} else if internal.Chaos {
|
|
||||||
logrus.Warnf("'%s' already deployed but continuing (--chaos)", stackName)
|
|
||||||
} else {
|
|
||||||
logrus.Fatalf("'%s' is already deployed", stackName)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
version := deployedVersion
|
|
||||||
if version == "" && !internal.Chaos {
|
|
||||||
versions, err := catalogue.GetRecipeCatalogueVersions(app.Type)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
if len(versions) > 0 {
|
|
||||||
version = versions[len(versions)-1]
|
|
||||||
logrus.Debugf("choosing '%s' as version to deploy", version)
|
|
||||||
if err := recipe.EnsureVersion(app.Type, version); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
version = "latest commit"
|
|
||||||
logrus.Warn("no versions detected, using latest commit")
|
|
||||||
if err := recipe.EnsureLatest(app.Type); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if version == "" && !internal.Chaos {
|
|
||||||
logrus.Debugf("choosing '%s' as version to deploy", version)
|
|
||||||
if err := recipe.EnsureVersion(app.Type, version); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if internal.Chaos {
|
|
||||||
logrus.Warnf("chaos mode engaged")
|
|
||||||
var err error
|
|
||||||
version, err = recipe.ChaosVersion(app.Type)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
abraShPath := fmt.Sprintf("%s/%s/%s", config.APPS_DIR, app.Type, "abra.sh")
|
|
||||||
abraShEnv, err := config.ReadAbraShEnvVars(abraShPath)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
for k, v := range abraShEnv {
|
|
||||||
app.Env[k] = v
|
|
||||||
}
|
|
||||||
|
|
||||||
composeFiles, err := config.GetAppComposeFiles(app.Type, app.Env)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
deployOpts := stack.Deploy{
|
|
||||||
Composefiles: composeFiles,
|
|
||||||
Namespace: stackName,
|
|
||||||
Prune: false,
|
|
||||||
ResolveImage: stack.ResolveImageAlways,
|
|
||||||
}
|
|
||||||
compose, err := config.GetAppComposeConfig(app.Name, deployOpts, app.Env)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := DeployOverview(app, version, "continue with deployment?"); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := stack.RunDeploy(cl, deployOpts, compose); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
},
|
|
||||||
BashComplete: func(c *cli.Context) {
|
BashComplete: func(c *cli.Context) {
|
||||||
appNames, err := config.GetAppNames()
|
appNames, err := config.GetAppNames()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -146,71 +43,3 @@ recipes.
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeployOverview shows a deployment overview
|
|
||||||
func DeployOverview(app config.App, version, message string) error {
|
|
||||||
tableCol := []string{"server", "compose", "domain", "stack", "version"}
|
|
||||||
table := abraFormatter.CreateTable(tableCol)
|
|
||||||
|
|
||||||
deployConfig := "compose.yml"
|
|
||||||
if composeFiles, ok := app.Env["COMPOSE_FILE"]; ok {
|
|
||||||
deployConfig = strings.Join(strings.Split(composeFiles, ":"), "\n")
|
|
||||||
}
|
|
||||||
|
|
||||||
server := app.Server
|
|
||||||
if app.Server == "default" {
|
|
||||||
server = "local"
|
|
||||||
}
|
|
||||||
|
|
||||||
table.Append([]string{server, deployConfig, app.Domain, app.StackName(), version})
|
|
||||||
table.Render()
|
|
||||||
|
|
||||||
response := false
|
|
||||||
prompt := &survey.Confirm{
|
|
||||||
Message: message,
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := survey.AskOne(prompt, &response); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if !response {
|
|
||||||
logrus.Fatal("exiting as requested")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// NewVersionOverview shows an upgrade or downgrade overview
|
|
||||||
func NewVersionOverview(app config.App, currentVersion, newVersion string) error {
|
|
||||||
tableCol := []string{"server", "compose", "domain", "stack", "current version", "to be deployed"}
|
|
||||||
table := abraFormatter.CreateTable(tableCol)
|
|
||||||
|
|
||||||
deployConfig := "compose.yml"
|
|
||||||
if composeFiles, ok := app.Env["COMPOSE_FILE"]; ok {
|
|
||||||
deployConfig = strings.Join(strings.Split(composeFiles, ":"), "\n")
|
|
||||||
}
|
|
||||||
|
|
||||||
server := app.Server
|
|
||||||
if app.Server == "default" {
|
|
||||||
server = "local"
|
|
||||||
}
|
|
||||||
|
|
||||||
table.Append([]string{server, deployConfig, app.Domain, app.StackName(), currentVersion, newVersion})
|
|
||||||
table.Render()
|
|
||||||
|
|
||||||
response := false
|
|
||||||
prompt := &survey.Confirm{
|
|
||||||
Message: "continue with deployment?",
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := survey.AskOne(prompt, &response); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if !response {
|
|
||||||
logrus.Fatal("exiting as requested")
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
@ -8,6 +8,7 @@ import (
|
|||||||
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/ssh"
|
||||||
"coopcloud.tech/tagcmp"
|
"coopcloud.tech/tagcmp"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
@ -69,6 +70,12 @@ can take some time.
|
|||||||
}
|
}
|
||||||
sort.Sort(config.ByServerAndType(apps))
|
sort.Sort(config.ByServerAndType(apps))
|
||||||
|
|
||||||
|
for _, app := range apps {
|
||||||
|
if err := ssh.EnsureHostKey(app.Server); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
statuses := make(map[string]map[string]string)
|
statuses := make(map[string]map[string]string)
|
||||||
tableCol := []string{"Server", "Type", "Domain"}
|
tableCol := []string{"Server", "Type", "Domain"}
|
||||||
if status {
|
if status {
|
||||||
|
184
cli/app/new.go
184
cli/app/new.go
@ -2,47 +2,13 @@ package app
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"path"
|
|
||||||
|
|
||||||
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
|
||||||
"coopcloud.tech/abra/pkg/secret"
|
|
||||||
"github.com/AlecAivazis/survey/v2"
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
type secrets map[string]string
|
|
||||||
|
|
||||||
var domain string
|
|
||||||
var domainFlag = &cli.StringFlag{
|
|
||||||
Name: "domain",
|
|
||||||
Aliases: []string{"d"},
|
|
||||||
Value: "",
|
|
||||||
Usage: "Choose a domain name",
|
|
||||||
Destination: &domain,
|
|
||||||
}
|
|
||||||
|
|
||||||
var newAppServer string
|
|
||||||
var newAppServerFlag = &cli.StringFlag{
|
|
||||||
Name: "server",
|
|
||||||
Aliases: []string{"s"},
|
|
||||||
Value: "",
|
|
||||||
Usage: "Show apps of a specific server",
|
|
||||||
Destination: &newAppServer,
|
|
||||||
}
|
|
||||||
|
|
||||||
var newAppName string
|
|
||||||
var newAppNameFlag = &cli.StringFlag{
|
|
||||||
Name: "app-name",
|
|
||||||
Aliases: []string{"a"},
|
|
||||||
Value: "",
|
|
||||||
Usage: "Choose an app name",
|
|
||||||
Destination: &newAppName,
|
|
||||||
}
|
|
||||||
|
|
||||||
var appNewDescription = `
|
var appNewDescription = `
|
||||||
This command takes a recipe and uses it to create a new app. This new app
|
This command takes a recipe and uses it to create a new app. This new app
|
||||||
configuration is stored in your ~/.abra directory under the appropriate server.
|
configuration is stored in your ~/.abra directory under the appropriate server.
|
||||||
@ -69,14 +35,14 @@ var appNewCommand = &cli.Command{
|
|||||||
Aliases: []string{"n"},
|
Aliases: []string{"n"},
|
||||||
Description: appNewDescription,
|
Description: appNewDescription,
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
newAppServerFlag,
|
internal.NewAppServerFlag,
|
||||||
domainFlag,
|
internal.DomainFlag,
|
||||||
newAppNameFlag,
|
internal.NewAppNameFlag,
|
||||||
internal.PassFlag,
|
internal.PassFlag,
|
||||||
internal.SecretsFlag,
|
internal.SecretsFlag,
|
||||||
},
|
},
|
||||||
ArgsUsage: "<recipe>",
|
ArgsUsage: "<recipe>",
|
||||||
Action: action,
|
Action: internal.NewAction,
|
||||||
BashComplete: func(c *cli.Context) {
|
BashComplete: func(c *cli.Context) {
|
||||||
catl, err := catalogue.ReadRecipeCatalogue()
|
catl, err := catalogue.ReadRecipeCatalogue()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -90,145 +56,3 @@ var appNewCommand = &cli.Command{
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
// ensureDomainFlag checks if the domain flag was used. if not, asks the user for it/
|
|
||||||
func ensureDomainFlag() error {
|
|
||||||
if domain == "" {
|
|
||||||
prompt := &survey.Input{
|
|
||||||
Message: "Specify app domain",
|
|
||||||
}
|
|
||||||
if err := survey.AskOne(prompt, &domain); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ensureServerFlag checks if the server flag was used. if not, asks the user for it.
|
|
||||||
func ensureServerFlag() error {
|
|
||||||
servers, err := config.GetServers()
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
if newAppServer == "" {
|
|
||||||
prompt := &survey.Select{
|
|
||||||
Message: "Select app server:",
|
|
||||||
Options: servers,
|
|
||||||
}
|
|
||||||
if err := survey.AskOne(prompt, &newAppServer); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// ensureServerFlag checks if the AppName flag was used. if not, asks the user for it.
|
|
||||||
func ensureAppNameFlag() error {
|
|
||||||
if newAppName == "" {
|
|
||||||
prompt := &survey.Input{
|
|
||||||
Message: "Specify app name:",
|
|
||||||
Default: config.SanitiseAppName(domain),
|
|
||||||
}
|
|
||||||
if err := survey.AskOne(prompt, &newAppName); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// createSecrets creates all secrets for a new app.
|
|
||||||
func createSecrets(sanitisedAppName string) (secrets, error) {
|
|
||||||
appEnvPath := path.Join(config.ABRA_DIR, "servers", newAppServer, fmt.Sprintf("%s.env", sanitisedAppName))
|
|
||||||
appEnv, err := config.ReadEnv(appEnvPath)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
secretEnvVars := secret.ReadSecretEnvVars(appEnv)
|
|
||||||
secrets, err := secret.GenerateSecrets(secretEnvVars, sanitisedAppName, newAppServer)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
if internal.Pass {
|
|
||||||
for secretName := range secrets {
|
|
||||||
secretValue := secrets[secretName]
|
|
||||||
if err := secret.PassInsertSecret(secretValue, secretName, sanitisedAppName, newAppServer); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return secrets, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// action is the main command-line action for this package
|
|
||||||
func action(c *cli.Context) error {
|
|
||||||
recipe := internal.ValidateRecipe(c)
|
|
||||||
|
|
||||||
if err := config.EnsureAbraDirExists(); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ensureServerFlag(); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ensureDomainFlag(); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := ensureAppNameFlag(); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
sanitisedAppName := config.SanitiseAppName(newAppName)
|
|
||||||
if len(sanitisedAppName) > 45 {
|
|
||||||
logrus.Fatalf("'%s' cannot be longer than 45 characters", sanitisedAppName)
|
|
||||||
}
|
|
||||||
logrus.Debugf("'%s' sanitised as '%s' for new app", newAppName, sanitisedAppName)
|
|
||||||
|
|
||||||
if err := config.TemplateAppEnvSample(recipe.Name, newAppName, newAppServer, domain, recipe.Name); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if internal.Secrets {
|
|
||||||
secrets, err := createSecrets(sanitisedAppName)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
secretCols := []string{"Name", "Value"}
|
|
||||||
secretTable := abraFormatter.CreateTable(secretCols)
|
|
||||||
for secret := range secrets {
|
|
||||||
secretTable.Append([]string{secret, secrets[secret]})
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(secrets) > 0 {
|
|
||||||
defer secretTable.Render()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if newAppServer == "default" {
|
|
||||||
newAppServer = "local"
|
|
||||||
}
|
|
||||||
|
|
||||||
tableCol := []string{"Name", "Domain", "Type", "Server"}
|
|
||||||
table := abraFormatter.CreateTable(tableCol)
|
|
||||||
table.Append([]string{sanitisedAppName, domain, recipe.Name, newAppServer})
|
|
||||||
|
|
||||||
fmt.Println("")
|
|
||||||
fmt.Println(fmt.Sprintf("New '%s' created! Here is your new app overview:", recipe.Name))
|
|
||||||
fmt.Println("")
|
|
||||||
table.Render()
|
|
||||||
fmt.Println("")
|
|
||||||
fmt.Println("You can configure this app by running the following:")
|
|
||||||
fmt.Println(fmt.Sprintf("\n abra app config %s", sanitisedAppName))
|
|
||||||
fmt.Println("")
|
|
||||||
fmt.Println("You can deploy this app by running the following:")
|
|
||||||
fmt.Println(fmt.Sprintf("\n abra app deploy %s", sanitisedAppName))
|
|
||||||
fmt.Println("")
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
72
cli/app/restart.go
Normal file
72
cli/app/restart.go
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
package app
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/cli/internal"
|
||||||
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"github.com/docker/docker/api/types"
|
||||||
|
"github.com/docker/docker/api/types/filters"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
var appRestartCommand = &cli.Command{
|
||||||
|
Name: "restart",
|
||||||
|
Usage: "Restart an app",
|
||||||
|
Aliases: []string{"R"},
|
||||||
|
ArgsUsage: "<service>",
|
||||||
|
Description: `This command restarts a service within a deployed app.`,
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
app := internal.ValidateApp(c)
|
||||||
|
|
||||||
|
serviceName := c.Args().Get(1)
|
||||||
|
if serviceName == "" {
|
||||||
|
err := errors.New("missing service?")
|
||||||
|
internal.ShowSubcommandHelpAndError(c, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cl, err := client.New(app.Server)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
serviceFilter := fmt.Sprintf("%s_%s", app.StackName(), serviceName)
|
||||||
|
filters := filters.NewArgs()
|
||||||
|
filters.Add("name", serviceFilter)
|
||||||
|
containerOpts := types.ContainerListOptions{Filters: filters}
|
||||||
|
containers, err := cl.ContainerList(c.Context, containerOpts)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
if len(containers) != 1 {
|
||||||
|
logrus.Fatalf("expected 1 service but got %v", len(containers))
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("attempting to restart %s", serviceFilter)
|
||||||
|
|
||||||
|
timeout := 30 * time.Second
|
||||||
|
if err := cl.ContainerRestart(c.Context, containers[0].ID, &timeout); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("%s service restarted", serviceFilter)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
BashComplete: func(c *cli.Context) {
|
||||||
|
appNames, err := config.GetAppNames()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warn(err)
|
||||||
|
}
|
||||||
|
if c.NArg() > 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for _, a := range appNames {
|
||||||
|
fmt.Println(a)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
stack "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/recipe"
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
stack "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
"coopcloud.tech/tagcmp"
|
"coopcloud.tech/tagcmp"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
@ -163,7 +163,7 @@ recipes.
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !internal.Force {
|
if !internal.Force {
|
||||||
if err := NewVersionOverview(app, deployedVersion, chosenDowngrade); err != nil {
|
if err := internal.NewVersionOverview(app, deployedVersion, chosenDowngrade); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
"coopcloud.tech/abra/pkg/client/container"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/container"
|
||||||
"github.com/docker/cli/cli/command"
|
"github.com/docker/cli/cli/command"
|
||||||
"github.com/docker/docker/api/types"
|
"github.com/docker/docker/api/types"
|
||||||
"github.com/docker/docker/api/types/filters"
|
"github.com/docker/docker/api/types/filters"
|
||||||
@ -64,10 +64,10 @@ var appRunCommand = &cli.Command{
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
switch len(containers) {
|
if len(containers) == 0 {
|
||||||
case 0:
|
|
||||||
logrus.Fatalf("no containers matching '%s' found?", stackAndServiceName)
|
logrus.Fatalf("no containers matching '%s' found?", stackAndServiceName)
|
||||||
case 1:
|
}
|
||||||
|
if len(containers) > 1 {
|
||||||
logrus.Fatalf("expected 1 container matching '%s' but got %d", stackAndServiceName, len(containers))
|
logrus.Fatalf("expected 1 container matching '%s' but got %d", stackAndServiceName, len(containers))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -99,7 +99,19 @@ var appSecretInsertCommand = &cli.Command{
|
|||||||
Aliases: []string{"i"},
|
Aliases: []string{"i"},
|
||||||
Usage: "Insert secret",
|
Usage: "Insert secret",
|
||||||
Flags: []cli.Flag{internal.PassFlag},
|
Flags: []cli.Flag{internal.PassFlag},
|
||||||
ArgsUsage: "<secret> <version> <data>",
|
ArgsUsage: "<app> <secret-name> <version> <data>",
|
||||||
|
Description: `
|
||||||
|
This command inserts a secret into an app environment.
|
||||||
|
|
||||||
|
This can be useful when you want to manually generate secrets for an app
|
||||||
|
environment. Typically, you can let Abra generate them for you on app creation
|
||||||
|
(see "abra app new --secrets" for more).
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
abra app secret insert myapp db_pass v1 mySecretPassword
|
||||||
|
|
||||||
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
app := internal.ValidateApp(c)
|
app := internal.ValidateApp(c)
|
||||||
|
|
||||||
@ -131,12 +143,20 @@ var appSecretRmCommand = &cli.Command{
|
|||||||
Usage: "Remove a secret",
|
Usage: "Remove a secret",
|
||||||
Aliases: []string{"rm"},
|
Aliases: []string{"rm"},
|
||||||
Flags: []cli.Flag{allSecretsFlag, internal.PassFlag},
|
Flags: []cli.Flag{allSecretsFlag, internal.PassFlag},
|
||||||
ArgsUsage: "<secret>",
|
ArgsUsage: "<app> <secret-name>",
|
||||||
|
Description: `
|
||||||
|
This command removes a secret from an app environment.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
abra app secret remove myapp db_pass
|
||||||
|
|
||||||
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
app := internal.ValidateApp(c)
|
app := internal.ValidateApp(c)
|
||||||
|
|
||||||
if c.Args().Get(1) != "" && allSecrets {
|
if c.Args().Get(1) != "" && allSecrets {
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("cannot use '<secret>' and '--all' together"))
|
internal.ShowSubcommandHelpAndError(c, errors.New("cannot use '<secret-name>' and '--all' together"))
|
||||||
}
|
}
|
||||||
|
|
||||||
if c.Args().Get(1) == "" && !allSecrets {
|
if c.Args().Get(1) == "" && !allSecrets {
|
||||||
|
@ -5,8 +5,8 @@ import (
|
|||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
stack "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
stack "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -40,7 +40,7 @@ volumes as eligiblef or pruning once undeployed.
|
|||||||
logrus.Fatalf("'%s' is not deployed?", stackName)
|
logrus.Fatalf("'%s' is not deployed?", stackName)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := DeployOverview(app, deployedVersion, "continue with undeploy?"); err != nil {
|
if err := internal.DeployOverview(app, deployedVersion, "continue with undeploy?"); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,9 +6,9 @@ import (
|
|||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
stack "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/recipe"
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
stack "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
"coopcloud.tech/tagcmp"
|
"coopcloud.tech/tagcmp"
|
||||||
"github.com/AlecAivazis/survey/v2"
|
"github.com/AlecAivazis/survey/v2"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
@ -154,7 +154,7 @@ recipes.
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := NewVersionOverview(app, deployedVersion, chosenUpgrade); err != nil {
|
if err := internal.NewVersionOverview(app, deployedVersion, chosenUpgrade); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
"coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
"github.com/docker/distribution/reference"
|
"github.com/docker/distribution/reference"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
|
121
cli/autocomplete.go
Normal file
121
cli/autocomplete.go
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
package cli
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
"path"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/cli/internal"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// downloadFile downloads a file brah
|
||||||
|
func downloadFile(filepath string, url string) (err error) {
|
||||||
|
out, err := os.Create(filepath)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer out.Close()
|
||||||
|
|
||||||
|
resp, err := http.Get(url)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer resp.Body.Close()
|
||||||
|
|
||||||
|
if resp.StatusCode != http.StatusOK {
|
||||||
|
return fmt.Errorf("bad status: %s", resp.Status)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = io.Copy(out, resp.Body)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// AutoCompleteCommand helps people set up auto-complete in their shells
|
||||||
|
var AutoCompleteCommand = &cli.Command{
|
||||||
|
Name: "autocomplete",
|
||||||
|
Usage: "Help set up shell autocompletion",
|
||||||
|
Aliases: []string{"ac"},
|
||||||
|
Description: `
|
||||||
|
This command helps set up autocompletion in your shell by downloading the
|
||||||
|
relevant autocompletion files and laying out what additional information must
|
||||||
|
be loaded.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
abra autocomplete bash
|
||||||
|
|
||||||
|
Supported shells are as follows:
|
||||||
|
|
||||||
|
fish
|
||||||
|
zsh
|
||||||
|
bash
|
||||||
|
`,
|
||||||
|
ArgsUsage: "<shell>",
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
shellType := c.Args().First()
|
||||||
|
|
||||||
|
if shellType == "" {
|
||||||
|
internal.ShowSubcommandHelpAndError(c, errors.New("no shell provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
supportedShells := map[string]bool{
|
||||||
|
"bash": true,
|
||||||
|
"zsh": true,
|
||||||
|
"fish": true,
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, ok := supportedShells[shellType]; !ok {
|
||||||
|
logrus.Fatalf("%s is not a supported shell right now, sorry", shellType)
|
||||||
|
}
|
||||||
|
|
||||||
|
if shellType == "fish" {
|
||||||
|
shellType = "zsh" // handled the same on the autocompletion side
|
||||||
|
}
|
||||||
|
|
||||||
|
autocompletionDir := path.Join(config.ABRA_DIR, "autocompletion")
|
||||||
|
if err := os.Mkdir(autocompletionDir, 0755); err != nil {
|
||||||
|
if !os.IsExist(err) {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Debugf("'%s' already created, moving on...", autocompletionDir)
|
||||||
|
}
|
||||||
|
|
||||||
|
autocompletionFile := path.Join(config.ABRA_DIR, "autocompletion", shellType)
|
||||||
|
if _, err := os.Stat(autocompletionFile); err != nil && os.IsNotExist(err) {
|
||||||
|
url := fmt.Sprintf("https://git.coopcloud.tech/coop-cloud/abra/raw/branch/main/scripts/autocomplete/%s", shellType)
|
||||||
|
logrus.Infof("fetching %s", url)
|
||||||
|
if err := downloadFile(autocompletionFile, url); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
switch shellType {
|
||||||
|
case "bash":
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
# Run the following commands to install autocompletion
|
||||||
|
sudo mkdir /etc/bash/completion.d/
|
||||||
|
sudo cp %s /etc/bash_completion.d/abra
|
||||||
|
echo "source /etc/bash/completion.d/abra" >> ~/.bashrc
|
||||||
|
`, autocompletionFile))
|
||||||
|
case "zsh":
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
# Run the following commands to install autocompletion
|
||||||
|
sudo mkdir /etc/zsh/completion.d/
|
||||||
|
sudo cp %s /etc/zsh/completion.d/abra
|
||||||
|
echo "PROG=abra\n_CLI_ZSH_AUTOCOMPLETE_HACK=1\nsource /etc/zsh/completion.d/abra" >> ~/.zshrc
|
||||||
|
`, autocompletionFile))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
},
|
||||||
|
}
|
@ -8,9 +8,13 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/formatter"
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/git"
|
gitPkg "coopcloud.tech/abra/pkg/git"
|
||||||
|
"coopcloud.tech/abra/pkg/limit"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/go-git/go-git/v5"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -18,9 +22,9 @@ import (
|
|||||||
// CatalogueSkipList is all the repos that are not recipes.
|
// CatalogueSkipList is all the repos that are not recipes.
|
||||||
var CatalogueSkipList = map[string]bool{
|
var CatalogueSkipList = map[string]bool{
|
||||||
"abra": true,
|
"abra": true,
|
||||||
"abra-bash": true,
|
|
||||||
"abra-apps": true,
|
"abra-apps": true,
|
||||||
"abra-aur": true,
|
"abra-aur": true,
|
||||||
|
"abra-bash": true,
|
||||||
"abra-capsul": true,
|
"abra-capsul": true,
|
||||||
"abra-gandi": true,
|
"abra-gandi": true,
|
||||||
"abra-hetzner": true,
|
"abra-hetzner": true,
|
||||||
@ -29,6 +33,8 @@ var CatalogueSkipList = map[string]bool{
|
|||||||
"auto-apps-json": true,
|
"auto-apps-json": true,
|
||||||
"auto-mirror": true,
|
"auto-mirror": true,
|
||||||
"backup-bot": true,
|
"backup-bot": true,
|
||||||
|
"backup-bot-two": true,
|
||||||
|
"comrade-renovate-bot": true,
|
||||||
"coopcloud.tech": true,
|
"coopcloud.tech": true,
|
||||||
"coturn": true,
|
"coturn": true,
|
||||||
"docker-cp-deploy": true,
|
"docker-cp-deploy": true,
|
||||||
@ -46,26 +52,52 @@ var CatalogueSkipList = map[string]bool{
|
|||||||
"tyop": true,
|
"tyop": true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var commit bool
|
||||||
|
var commitFlag = &cli.BoolFlag{
|
||||||
|
Name: "commit",
|
||||||
|
Usage: "Commits new generated catalogue changes",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"c"},
|
||||||
|
Destination: &commit,
|
||||||
|
}
|
||||||
|
|
||||||
var catalogueGenerateCommand = &cli.Command{
|
var catalogueGenerateCommand = &cli.Command{
|
||||||
Name: "generate",
|
Name: "generate",
|
||||||
Aliases: []string{"g"},
|
Aliases: []string{"g"},
|
||||||
Usage: "Generate a new copy of the catalogue",
|
Usage: "Generate a new copy of the catalogue",
|
||||||
ArgsUsage: "[<recipe>]",
|
Flags: []cli.Flag{
|
||||||
BashComplete: func(c *cli.Context) {
|
internal.PushFlag,
|
||||||
catl, err := catalogue.ReadRecipeCatalogue()
|
commitFlag,
|
||||||
if err != nil {
|
internal.CommitMessageFlag,
|
||||||
logrus.Warn(err)
|
|
||||||
}
|
|
||||||
if c.NArg() > 0 {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
for name := range catl {
|
|
||||||
fmt.Println(name)
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
Description: `
|
||||||
|
This command generates a new copy of the recipe catalogue which can be found on:
|
||||||
|
|
||||||
|
https://recipes.coopcloud.tech
|
||||||
|
|
||||||
|
It polls the entire git.coopcloud.tech/coop-cloud/... recipe repository
|
||||||
|
listing, parses README and tags to produce recipe metadata and produces a
|
||||||
|
apps.json file which is placed in your ~/.abra/catalogue/recipes.json.
|
||||||
|
|
||||||
|
It is possible to generate new metadata for a single recipe by passing
|
||||||
|
<recipe>. The existing local catalogue will be updated, not overwritten.
|
||||||
|
|
||||||
|
A new catalogue copy can be published to the recipes repository by passing the
|
||||||
|
"--commit" and "--push" flags. The recipes repository is available here:
|
||||||
|
|
||||||
|
https://git.coopcloud.tech/coop-cloud/recipes
|
||||||
|
|
||||||
|
`,
|
||||||
|
ArgsUsage: "[<recipe>]",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
recipeName := c.Args().First()
|
recipeName := c.Args().First()
|
||||||
|
|
||||||
|
catalogueDir := path.Join(config.ABRA_DIR, "catalogue")
|
||||||
|
url := fmt.Sprintf("%s/%s.git", config.REPOS_BASE_URL, "recipes")
|
||||||
|
if err := gitPkg.Clone(catalogueDir, url); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
repos, err := catalogue.ReadReposMetadata()
|
repos, err := catalogue.ReadReposMetadata()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
@ -73,10 +105,14 @@ var catalogueGenerateCommand = &cli.Command{
|
|||||||
|
|
||||||
logrus.Debugf("ensuring '%v' recipe(s) are locally present and up-to-date", len(repos))
|
logrus.Debugf("ensuring '%v' recipe(s) are locally present and up-to-date", len(repos))
|
||||||
|
|
||||||
|
cloneLimiter := limit.New(10)
|
||||||
retrieveBar := formatter.CreateProgressbar(len(repos), "retrieving recipes...")
|
retrieveBar := formatter.CreateProgressbar(len(repos), "retrieving recipes...")
|
||||||
ch := make(chan string, len(repos))
|
ch := make(chan string, len(repos))
|
||||||
for _, repoMeta := range repos {
|
for _, repoMeta := range repos {
|
||||||
go func(rm catalogue.RepoMeta) {
|
go func(rm catalogue.RepoMeta) {
|
||||||
|
cloneLimiter.Begin()
|
||||||
|
defer cloneLimiter.End()
|
||||||
|
|
||||||
if recipeName != "" && recipeName != rm.Name {
|
if recipeName != "" && recipeName != rm.Name {
|
||||||
ch <- rm.Name
|
ch <- rm.Name
|
||||||
retrieveBar.Add(1)
|
retrieveBar.Add(1)
|
||||||
@ -90,11 +126,11 @@ var catalogueGenerateCommand = &cli.Command{
|
|||||||
|
|
||||||
recipeDir := path.Join(config.ABRA_DIR, "apps", rm.Name)
|
recipeDir := path.Join(config.ABRA_DIR, "apps", rm.Name)
|
||||||
|
|
||||||
if err := git.Clone(recipeDir, rm.SSHURL); err != nil {
|
if err := gitPkg.Clone(recipeDir, rm.SSHURL); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := git.EnsureUpToDate(recipeDir); err != nil {
|
if err := gitPkg.EnsureUpToDate(recipeDir); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,8 +169,8 @@ var catalogueGenerateCommand = &cli.Command{
|
|||||||
Description: recipeMeta.Description,
|
Description: recipeMeta.Description,
|
||||||
Website: recipeMeta.Website,
|
Website: recipeMeta.Website,
|
||||||
Versions: versions,
|
Versions: versions,
|
||||||
// Category: ..., // FIXME: once we sort out the machine-readable catalogue interface
|
// Category: ..., // FIXME: parse & load
|
||||||
// Features: ..., // FIXME: once we figure out the machine-readable catalogue interface
|
// Features: ..., // FIXME: parse & load
|
||||||
}
|
}
|
||||||
catlBar.Add(1)
|
catlBar.Add(1)
|
||||||
}
|
}
|
||||||
@ -166,8 +202,61 @@ var catalogueGenerateCommand = &cli.Command{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("generated new recipe catalogue in '%s'", config.APPS_JSON)
|
cataloguePath := path.Join(config.ABRA_DIR, "catalogue", "recipes.json")
|
||||||
|
logrus.Infof("generated new recipe catalogue in %s", cataloguePath)
|
||||||
|
|
||||||
|
if commit {
|
||||||
|
repoPath := path.Join(config.ABRA_DIR, "catalogue")
|
||||||
|
commitRepo, err := git.PlainOpen(repoPath)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
commitWorktree, err := commitRepo.Worktree()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if internal.CommitMessage == "" {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "commit message",
|
||||||
|
Default: "chore: publish new catalogue changes",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &internal.CommitMessage); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
err = commitWorktree.AddGlob("**.json")
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Debug("staged **.json for commit")
|
||||||
|
|
||||||
|
_, err = commitWorktree.Commit(internal.CommitMessage, &git.CommitOptions{})
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Info("changes commited")
|
||||||
|
|
||||||
|
if err := commitRepo.Push(&git.PushOptions{}); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Info("changes pushed")
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
BashComplete: func(c *cli.Context) {
|
||||||
|
catl, err := catalogue.ReadRecipeCatalogue()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Warn(err)
|
||||||
|
}
|
||||||
|
if c.NArg() > 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
for name := range catl {
|
||||||
|
fmt.Println(name)
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
31
cli/cli.go
31
cli/cli.go
@ -8,8 +8,9 @@ import (
|
|||||||
|
|
||||||
"coopcloud.tech/abra/cli/app"
|
"coopcloud.tech/abra/cli/app"
|
||||||
"coopcloud.tech/abra/cli/catalogue"
|
"coopcloud.tech/abra/cli/catalogue"
|
||||||
"coopcloud.tech/abra/cli/domain"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/cli/recipe"
|
"coopcloud.tech/abra/cli/recipe"
|
||||||
|
"coopcloud.tech/abra/cli/record"
|
||||||
"coopcloud.tech/abra/cli/server"
|
"coopcloud.tech/abra/cli/server"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
logrusStack "github.com/Gurpartap/logrus-stack"
|
logrusStack "github.com/Gurpartap/logrus-stack"
|
||||||
@ -29,18 +30,6 @@ var VerboseFlag = &cli.BoolFlag{
|
|||||||
Usage: "Show INFO messages",
|
Usage: "Show INFO messages",
|
||||||
}
|
}
|
||||||
|
|
||||||
// Debug stores the variable from DebugFlag.
|
|
||||||
var Debug bool
|
|
||||||
|
|
||||||
// DebugFlag turns on/off verbose logging down to the DEBUG level.
|
|
||||||
var DebugFlag = &cli.BoolFlag{
|
|
||||||
Name: "debug",
|
|
||||||
Aliases: []string{"d"},
|
|
||||||
Value: false,
|
|
||||||
Destination: &Debug,
|
|
||||||
Usage: "Show DEBUG messages",
|
|
||||||
}
|
|
||||||
|
|
||||||
func newAbraApp(version, commit string) *cli.App {
|
func newAbraApp(version, commit string) *cli.App {
|
||||||
app := &cli.App{
|
app := &cli.App{
|
||||||
Name: "abra",
|
Name: "abra",
|
||||||
@ -59,25 +48,27 @@ func newAbraApp(version, commit string) *cli.App {
|
|||||||
server.ServerCommand,
|
server.ServerCommand,
|
||||||
recipe.RecipeCommand,
|
recipe.RecipeCommand,
|
||||||
catalogue.CatalogueCommand,
|
catalogue.CatalogueCommand,
|
||||||
domain.DomainCommand,
|
record.RecordCommand,
|
||||||
UpgradeCommand,
|
UpgradeCommand,
|
||||||
|
AutoCompleteCommand,
|
||||||
},
|
},
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
VerboseFlag,
|
VerboseFlag,
|
||||||
DebugFlag,
|
internal.DebugFlag,
|
||||||
|
internal.NoInputFlag,
|
||||||
},
|
},
|
||||||
Authors: []*cli.Author{
|
Authors: []*cli.Author{
|
||||||
{
|
{Name: "3wordchant"},
|
||||||
Name: "Autonomic Co-op",
|
{Name: "decentral1se"},
|
||||||
Email: "helo@autonomic.zone",
|
{Name: "knoflook"},
|
||||||
},
|
{Name: "roxxers"},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
app.EnableBashCompletion = true
|
app.EnableBashCompletion = true
|
||||||
|
|
||||||
app.Before = func(c *cli.Context) error {
|
app.Before = func(c *cli.Context) error {
|
||||||
if Debug {
|
if internal.Debug {
|
||||||
logrus.SetLevel(logrus.DebugLevel)
|
logrus.SetLevel(logrus.DebugLevel)
|
||||||
logrus.SetFormatter(&logrus.TextFormatter{})
|
logrus.SetFormatter(&logrus.TextFormatter{})
|
||||||
logrus.SetOutput(os.Stderr)
|
logrus.SetOutput(os.Stderr)
|
||||||
|
@ -20,6 +20,10 @@ func Truncate(str string) string {
|
|||||||
return fmt.Sprintf(`"%s"`, formatter.Ellipsis(str, 19))
|
return fmt.Sprintf(`"%s"`, formatter.Ellipsis(str, 19))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func SmallSHA(hash string) string {
|
||||||
|
return hash[:8]
|
||||||
|
}
|
||||||
|
|
||||||
// RemoveSha remove image sha from a string that are added in some docker outputs
|
// RemoveSha remove image sha from a string that are added in some docker outputs
|
||||||
func RemoveSha(str string) string {
|
func RemoveSha(str string) string {
|
||||||
return strings.Split(str, "@")[0]
|
return strings.Split(str, "@")[0]
|
||||||
|
@ -72,5 +72,202 @@ var DNSProviderFlag = &cli.StringFlag{
|
|||||||
Aliases: []string{"p"},
|
Aliases: []string{"p"},
|
||||||
Usage: "DNS provider",
|
Usage: "DNS provider",
|
||||||
Destination: &DNSProvider,
|
Destination: &DNSProvider,
|
||||||
Required: true,
|
}
|
||||||
|
|
||||||
|
var NoInput bool
|
||||||
|
var NoInputFlag = &cli.BoolFlag{
|
||||||
|
Name: "no-input",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"n"},
|
||||||
|
Usage: "Toggle non-interactive mode",
|
||||||
|
Destination: &NoInput,
|
||||||
|
}
|
||||||
|
|
||||||
|
var DNSType string
|
||||||
|
|
||||||
|
var DNSTypeFlag = &cli.StringFlag{
|
||||||
|
Name: "type",
|
||||||
|
Value: "",
|
||||||
|
Aliases: []string{"t"},
|
||||||
|
Usage: "Domain name record type (e.g. A)",
|
||||||
|
Destination: &DNSType,
|
||||||
|
}
|
||||||
|
|
||||||
|
var DNSName string
|
||||||
|
|
||||||
|
var DNSNameFlag = &cli.StringFlag{
|
||||||
|
Name: "name",
|
||||||
|
Value: "",
|
||||||
|
Aliases: []string{"n"},
|
||||||
|
Usage: "Domain name record name (e.g. mysubdomain)",
|
||||||
|
Destination: &DNSName,
|
||||||
|
}
|
||||||
|
|
||||||
|
var DNSValue string
|
||||||
|
|
||||||
|
var DNSValueFlag = &cli.StringFlag{
|
||||||
|
Name: "value",
|
||||||
|
Value: "",
|
||||||
|
Aliases: []string{"v"},
|
||||||
|
Usage: "Domain name record value (e.g. 192.168.1.1)",
|
||||||
|
Destination: &DNSValue,
|
||||||
|
}
|
||||||
|
|
||||||
|
var DNSTTL int
|
||||||
|
|
||||||
|
var DNSTTLFlag = &cli.IntFlag{
|
||||||
|
Name: "ttl",
|
||||||
|
Value: 86400,
|
||||||
|
Aliases: []string{"T"},
|
||||||
|
Usage: "Domain name TTL value)",
|
||||||
|
Destination: &DNSTTL,
|
||||||
|
}
|
||||||
|
|
||||||
|
var DNSPriority int
|
||||||
|
|
||||||
|
var DNSPriorityFlag = &cli.IntFlag{
|
||||||
|
Name: "priority",
|
||||||
|
Value: 10,
|
||||||
|
Aliases: []string{"P"},
|
||||||
|
Usage: "Domain name priority value",
|
||||||
|
Destination: &DNSPriority,
|
||||||
|
}
|
||||||
|
|
||||||
|
var ServerProvider string
|
||||||
|
|
||||||
|
var ServerProviderFlag = &cli.StringFlag{
|
||||||
|
Name: "provider",
|
||||||
|
Aliases: []string{"p"},
|
||||||
|
Usage: "3rd party server provider",
|
||||||
|
Destination: &ServerProvider,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulInstanceURL string
|
||||||
|
|
||||||
|
var CapsulInstanceURLFlag = &cli.StringFlag{
|
||||||
|
Name: "capsul-url",
|
||||||
|
Value: "yolo.servers.coop",
|
||||||
|
Aliases: []string{"cu"},
|
||||||
|
Usage: "capsul instance URL",
|
||||||
|
Destination: &CapsulInstanceURL,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulName string
|
||||||
|
|
||||||
|
var CapsulNameFlag = &cli.StringFlag{
|
||||||
|
Name: "capsul-name",
|
||||||
|
Value: "",
|
||||||
|
Aliases: []string{"cn"},
|
||||||
|
Usage: "capsul name",
|
||||||
|
Destination: &CapsulName,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulType string
|
||||||
|
|
||||||
|
var CapsulTypeFlag = &cli.StringFlag{
|
||||||
|
Name: "capsul-type",
|
||||||
|
Value: "f1-xs",
|
||||||
|
Aliases: []string{"ct"},
|
||||||
|
Usage: "capsul type",
|
||||||
|
Destination: &CapsulType,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulImage string
|
||||||
|
|
||||||
|
var CapsulImageFlag = &cli.StringFlag{
|
||||||
|
Name: "capsul-image",
|
||||||
|
Value: "debian10",
|
||||||
|
Aliases: []string{"ci"},
|
||||||
|
Usage: "capsul image",
|
||||||
|
Destination: &CapsulImage,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulSSHKeys cli.StringSlice
|
||||||
|
|
||||||
|
var CapsulSSHKeysFlag = &cli.StringSliceFlag{
|
||||||
|
Name: "capsul-ssh-keys",
|
||||||
|
Aliases: []string{"cs"},
|
||||||
|
Usage: "capsul SSH key",
|
||||||
|
Destination: &CapsulSSHKeys,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CapsulAPIToken string
|
||||||
|
|
||||||
|
var CapsulAPITokenFlag = &cli.StringFlag{
|
||||||
|
Name: "capsul-token",
|
||||||
|
Aliases: []string{"ca"},
|
||||||
|
Usage: "capsul API token",
|
||||||
|
EnvVars: []string{"CAPSUL_TOKEN"},
|
||||||
|
Destination: &CapsulAPIToken,
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudName string
|
||||||
|
|
||||||
|
var HetznerCloudNameFlag = &cli.StringFlag{
|
||||||
|
Name: "hetzner-name",
|
||||||
|
Value: "",
|
||||||
|
Aliases: []string{"hn"},
|
||||||
|
Usage: "hetzner cloud name",
|
||||||
|
Destination: &HetznerCloudName,
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudType string
|
||||||
|
|
||||||
|
var HetznerCloudTypeFlag = &cli.StringFlag{
|
||||||
|
Name: "hetzner-type",
|
||||||
|
Aliases: []string{"ht"},
|
||||||
|
Usage: "hetzner cloud type",
|
||||||
|
Destination: &HetznerCloudType,
|
||||||
|
Value: "cx11",
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudImage string
|
||||||
|
|
||||||
|
var HetznerCloudImageFlag = &cli.StringFlag{
|
||||||
|
Name: "hetzner-image",
|
||||||
|
Aliases: []string{"hi"},
|
||||||
|
Usage: "hetzner cloud image",
|
||||||
|
Value: "debian-10",
|
||||||
|
Destination: &HetznerCloudImage,
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudSSHKeys cli.StringSlice
|
||||||
|
|
||||||
|
var HetznerCloudSSHKeysFlag = &cli.StringSliceFlag{
|
||||||
|
Name: "hetzner-ssh-keys",
|
||||||
|
Aliases: []string{"hs"},
|
||||||
|
Usage: "hetzner cloud SSH keys (e.g. me@foo.com)",
|
||||||
|
Destination: &HetznerCloudSSHKeys,
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudLocation string
|
||||||
|
|
||||||
|
var HetznerCloudLocationFlag = &cli.StringFlag{
|
||||||
|
Name: "hetzner-location",
|
||||||
|
Aliases: []string{"hl"},
|
||||||
|
Usage: "hetzner cloud server location",
|
||||||
|
Value: "hel1",
|
||||||
|
Destination: &HetznerCloudLocation,
|
||||||
|
}
|
||||||
|
|
||||||
|
var HetznerCloudAPIToken string
|
||||||
|
|
||||||
|
var HetznerCloudAPITokenFlag = &cli.StringFlag{
|
||||||
|
Name: "hetzner-token",
|
||||||
|
Aliases: []string{"ha"},
|
||||||
|
Usage: "hetzner cloud API token",
|
||||||
|
EnvVars: []string{"HCLOUD_TOKEN"},
|
||||||
|
Destination: &HetznerCloudAPIToken,
|
||||||
|
}
|
||||||
|
|
||||||
|
// Debug stores the variable from DebugFlag.
|
||||||
|
var Debug bool
|
||||||
|
|
||||||
|
// DebugFlag turns on/off verbose logging down to the DEBUG level.
|
||||||
|
var DebugFlag = &cli.BoolFlag{
|
||||||
|
Name: "debug",
|
||||||
|
Aliases: []string{"d"},
|
||||||
|
Value: false,
|
||||||
|
Destination: &Debug,
|
||||||
|
Usage: "Show DEBUG messages",
|
||||||
}
|
}
|
||||||
|
74
cli/internal/copy.go
Normal file
74
cli/internal/copy.go
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"github.com/docker/docker/api/types"
|
||||||
|
"github.com/docker/docker/api/types/filters"
|
||||||
|
"github.com/docker/docker/pkg/archive"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ConfigureAndCp(c *cli.Context, app config.App, srcPath string, dstPath string, service string, isToContainer bool) error {
|
||||||
|
appFiles, err := config.LoadAppFiles("")
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
appEnv, err := config.GetApp(appFiles, app.Name)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cl, err := client.New(app.Server)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
filters := filters.NewArgs()
|
||||||
|
filters.Add("name", fmt.Sprintf("%s_%s", appEnv.StackName(), service))
|
||||||
|
containers, err := cl.ContainerList(c.Context, types.ContainerListOptions{Filters: filters})
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(containers) != 1 {
|
||||||
|
logrus.Fatalf("expected 1 container but got %v", len(containers))
|
||||||
|
}
|
||||||
|
container := containers[0]
|
||||||
|
|
||||||
|
logrus.Debugf("retrieved '%s' as target container on '%s'", formatter.ShortenID(container.ID), app.Server)
|
||||||
|
|
||||||
|
if isToContainer {
|
||||||
|
if _, err := os.Stat(srcPath); err != nil {
|
||||||
|
logrus.Fatalf("'%s' does not exist?", srcPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
toTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip}
|
||||||
|
content, err := archive.TarWithOptions(srcPath, toTarOpts)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
copyOpts := types.CopyToContainerOptions{AllowOverwriteDirWithFile: false, CopyUIDGID: false}
|
||||||
|
if err := cl.CopyToContainer(c.Context, container.ID, dstPath, content, copyOpts); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
content, _, err := cl.CopyFromContainer(c.Context, container.ID, srcPath)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
defer content.Close()
|
||||||
|
fromTarOpts := &archive.TarOptions{NoOverwriteDirNonDir: true, Compression: archive.Gzip}
|
||||||
|
if err := archive.Untar(content, dstPath, fromTarOpts); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
202
cli/internal/deploy.go
Normal file
202
cli/internal/deploy.go
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
||||||
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/dns"
|
||||||
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// DeployAction is the main command-line action for this package
|
||||||
|
func DeployAction(c *cli.Context) error {
|
||||||
|
app := ValidateApp(c)
|
||||||
|
stackName := app.StackName()
|
||||||
|
|
||||||
|
cl, err := client.New(app.Server)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("checking whether '%s' is already deployed", stackName)
|
||||||
|
|
||||||
|
isDeployed, deployedVersion, err := stack.IsDeployed(c.Context, cl, stackName)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if isDeployed {
|
||||||
|
if Force {
|
||||||
|
logrus.Warnf("'%s' already deployed but continuing (--force)", stackName)
|
||||||
|
} else if Chaos {
|
||||||
|
logrus.Warnf("'%s' already deployed but continuing (--chaos)", stackName)
|
||||||
|
} else {
|
||||||
|
logrus.Fatalf("'%s' is already deployed", stackName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
version := deployedVersion
|
||||||
|
if version == "" && !Chaos {
|
||||||
|
versions, err := catalogue.GetRecipeCatalogueVersions(app.Type)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
if len(versions) > 0 {
|
||||||
|
version = versions[len(versions)-1]
|
||||||
|
logrus.Debugf("choosing '%s' as version to deploy", version)
|
||||||
|
if err := recipe.EnsureVersion(app.Type, version); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
version = "latest commit"
|
||||||
|
logrus.Warn("no versions detected, using latest commit")
|
||||||
|
if err := recipe.EnsureLatest(app.Type); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if version == "" && !Chaos {
|
||||||
|
logrus.Debugf("choosing '%s' as version to deploy", version)
|
||||||
|
if err := recipe.EnsureVersion(app.Type, version); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if Chaos {
|
||||||
|
logrus.Warnf("chaos mode engaged")
|
||||||
|
var err error
|
||||||
|
version, err = recipe.ChaosVersion(app.Type)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
abraShPath := fmt.Sprintf("%s/%s/%s", config.APPS_DIR, app.Type, "abra.sh")
|
||||||
|
abraShEnv, err := config.ReadAbraShEnvVars(abraShPath)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
for k, v := range abraShEnv {
|
||||||
|
app.Env[k] = v
|
||||||
|
}
|
||||||
|
|
||||||
|
composeFiles, err := config.GetAppComposeFiles(app.Type, app.Env)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
deployOpts := stack.Deploy{
|
||||||
|
Composefiles: composeFiles,
|
||||||
|
Namespace: stackName,
|
||||||
|
Prune: false,
|
||||||
|
ResolveImage: stack.ResolveImageAlways,
|
||||||
|
}
|
||||||
|
compose, err := config.GetAppComposeConfig(app.Name, deployOpts, app.Env)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := DeployOverview(app, version, "continue with deployment?"); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
domainName := app.Env["DOMAIN"]
|
||||||
|
ipv4, err := dns.EnsureIPv4(domainName)
|
||||||
|
if err != nil || ipv4 == "" {
|
||||||
|
logrus.Fatalf("could not find an IP address assigned to %s?", domainName)
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err = dns.EnsureDomainsResolveSameIPv4(domainName, app.Server); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := stack.RunDeploy(cl, deployOpts, compose); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// DeployOverview shows a deployment overview
|
||||||
|
func DeployOverview(app config.App, version, message string) error {
|
||||||
|
tableCol := []string{"server", "compose", "domain", "stack", "version"}
|
||||||
|
table := abraFormatter.CreateTable(tableCol)
|
||||||
|
|
||||||
|
deployConfig := "compose.yml"
|
||||||
|
if composeFiles, ok := app.Env["COMPOSE_FILE"]; ok {
|
||||||
|
deployConfig = strings.Join(strings.Split(composeFiles, ":"), "\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
server := app.Server
|
||||||
|
if app.Server == "default" {
|
||||||
|
server = "local"
|
||||||
|
}
|
||||||
|
|
||||||
|
table.Append([]string{server, deployConfig, app.Domain, app.StackName(), version})
|
||||||
|
table.Render()
|
||||||
|
|
||||||
|
if NoInput {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: message,
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewVersionOverview shows an upgrade or downgrade overview
|
||||||
|
func NewVersionOverview(app config.App, currentVersion, newVersion string) error {
|
||||||
|
tableCol := []string{"server", "compose", "domain", "stack", "current version", "to be deployed"}
|
||||||
|
table := abraFormatter.CreateTable(tableCol)
|
||||||
|
|
||||||
|
deployConfig := "compose.yml"
|
||||||
|
if composeFiles, ok := app.Env["COMPOSE_FILE"]; ok {
|
||||||
|
deployConfig = strings.Join(strings.Split(composeFiles, ":"), "\n")
|
||||||
|
}
|
||||||
|
|
||||||
|
server := app.Server
|
||||||
|
if app.Server == "default" {
|
||||||
|
server = "local"
|
||||||
|
}
|
||||||
|
|
||||||
|
table.Append([]string{server, deployConfig, app.Domain, app.StackName(), currentVersion, newVersion})
|
||||||
|
table.Render()
|
||||||
|
|
||||||
|
if NoInput {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "continue with deployment?",
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
208
cli/internal/new.go
Normal file
208
cli/internal/new.go
Normal file
@ -0,0 +1,208 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"path"
|
||||||
|
|
||||||
|
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
"coopcloud.tech/abra/pkg/secret"
|
||||||
|
"coopcloud.tech/abra/pkg/ssh"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
type AppSecrets map[string]string
|
||||||
|
|
||||||
|
var Domain string
|
||||||
|
var DomainFlag = &cli.StringFlag{
|
||||||
|
Name: "domain",
|
||||||
|
Aliases: []string{"d"},
|
||||||
|
Value: "",
|
||||||
|
Usage: "Choose a domain name",
|
||||||
|
Destination: &Domain,
|
||||||
|
}
|
||||||
|
|
||||||
|
var NewAppServer string
|
||||||
|
var NewAppServerFlag = &cli.StringFlag{
|
||||||
|
Name: "server",
|
||||||
|
Aliases: []string{"s"},
|
||||||
|
Value: "",
|
||||||
|
Usage: "Show apps of a specific server",
|
||||||
|
Destination: &NewAppServer,
|
||||||
|
}
|
||||||
|
|
||||||
|
var NewAppName string
|
||||||
|
var NewAppNameFlag = &cli.StringFlag{
|
||||||
|
Name: "app-name",
|
||||||
|
Aliases: []string{"a"},
|
||||||
|
Value: "",
|
||||||
|
Usage: "Choose an app name",
|
||||||
|
Destination: &NewAppName,
|
||||||
|
}
|
||||||
|
|
||||||
|
// RecipeName is used for configuring recipe name programmatically
|
||||||
|
var RecipeName string
|
||||||
|
|
||||||
|
// createSecrets creates all secrets for a new app.
|
||||||
|
func createSecrets(sanitisedAppName string) (AppSecrets, error) {
|
||||||
|
appEnvPath := path.Join(config.ABRA_DIR, "servers", NewAppServer, fmt.Sprintf("%s.env", sanitisedAppName))
|
||||||
|
appEnv, err := config.ReadEnv(appEnvPath)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
secretEnvVars := secret.ReadSecretEnvVars(appEnv)
|
||||||
|
secrets, err := secret.GenerateSecrets(secretEnvVars, sanitisedAppName, NewAppServer)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if Pass {
|
||||||
|
for secretName := range secrets {
|
||||||
|
secretValue := secrets[secretName]
|
||||||
|
if err := secret.PassInsertSecret(secretValue, secretName, sanitisedAppName, NewAppServer); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return secrets, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ensureDomainFlag checks if the domain flag was used. if not, asks the user for it/
|
||||||
|
func ensureDomainFlag(recipe recipe.Recipe, server string) error {
|
||||||
|
if Domain == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify app domain",
|
||||||
|
Default: fmt.Sprintf("%s.%s", recipe.Name, server),
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &Domain); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if Domain == "" {
|
||||||
|
return fmt.Errorf("no domain provided")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ensureServerFlag checks if the server flag was used. if not, asks the user for it.
|
||||||
|
func ensureServerFlag() error {
|
||||||
|
servers, err := config.GetServers()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if NewAppServer == "" && !NoInput {
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: "Select app server:",
|
||||||
|
Options: servers,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &NewAppServer); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if NewAppServer == "" {
|
||||||
|
return fmt.Errorf("no server provided")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ensureServerFlag checks if the AppName flag was used. if not, asks the user for it.
|
||||||
|
func ensureAppNameFlag() error {
|
||||||
|
if NewAppName == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify app name:",
|
||||||
|
Default: config.SanitiseAppName(Domain),
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &NewAppName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if NewAppName == "" {
|
||||||
|
return fmt.Errorf("no app name provided")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewAction is the new app creation logic
|
||||||
|
func NewAction(c *cli.Context) error {
|
||||||
|
recipe := ValidateRecipeWithPrompt(c)
|
||||||
|
|
||||||
|
if err := config.EnsureAbraDirExists(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := ensureServerFlag(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := ensureDomainFlag(recipe, NewAppServer); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := ensureAppNameFlag(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
sanitisedAppName := config.SanitiseAppName(NewAppName)
|
||||||
|
if len(sanitisedAppName) > 45 {
|
||||||
|
logrus.Fatalf("'%s' cannot be longer than 45 characters", sanitisedAppName)
|
||||||
|
}
|
||||||
|
logrus.Debugf("'%s' sanitised as '%s' for new app", NewAppName, sanitisedAppName)
|
||||||
|
|
||||||
|
if err := config.TemplateAppEnvSample(recipe.Name, NewAppName, NewAppServer, Domain, recipe.Name); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if Secrets {
|
||||||
|
if err := ssh.EnsureHostKey(NewAppServer); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
secrets, err := createSecrets(sanitisedAppName)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
secretCols := []string{"Name", "Value"}
|
||||||
|
secretTable := abraFormatter.CreateTable(secretCols)
|
||||||
|
for secret := range secrets {
|
||||||
|
secretTable.Append([]string{secret, secrets[secret]})
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(secrets) > 0 {
|
||||||
|
defer secretTable.Render()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if NewAppServer == "default" {
|
||||||
|
NewAppServer = "local"
|
||||||
|
}
|
||||||
|
|
||||||
|
tableCol := []string{"Name", "Domain", "Type", "Server"}
|
||||||
|
table := abraFormatter.CreateTable(tableCol)
|
||||||
|
table.Append([]string{sanitisedAppName, Domain, recipe.Name, NewAppServer})
|
||||||
|
|
||||||
|
fmt.Println("")
|
||||||
|
fmt.Println(fmt.Sprintf("A new %s app has been created! Here is an overview:", recipe.Name))
|
||||||
|
fmt.Println("")
|
||||||
|
table.Render()
|
||||||
|
fmt.Println("")
|
||||||
|
fmt.Println("You can configure this app by running the following:")
|
||||||
|
fmt.Println(fmt.Sprintf("\n abra app config %s", sanitisedAppName))
|
||||||
|
fmt.Println("")
|
||||||
|
fmt.Println("You can deploy this app by running the following:")
|
||||||
|
fmt.Println(fmt.Sprintf("\n abra app deploy %s", sanitisedAppName))
|
||||||
|
fmt.Println("")
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
152
cli/internal/recipe.go
Normal file
152
cli/internal/recipe.go
Normal file
@ -0,0 +1,152 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
var Major bool
|
||||||
|
var MajorFlag = &cli.BoolFlag{
|
||||||
|
Name: "major",
|
||||||
|
Usage: "Increase the major part of the version",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"ma", "x"},
|
||||||
|
Destination: &Major,
|
||||||
|
}
|
||||||
|
|
||||||
|
var Minor bool
|
||||||
|
var MinorFlag = &cli.BoolFlag{
|
||||||
|
Name: "minor",
|
||||||
|
Usage: "Increase the minor part of the version",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"mi", "y"},
|
||||||
|
Destination: &Minor,
|
||||||
|
}
|
||||||
|
|
||||||
|
var Patch bool
|
||||||
|
var PatchFlag = &cli.BoolFlag{
|
||||||
|
Name: "patch",
|
||||||
|
Usage: "Increase the patch part of the version",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"p", "z"},
|
||||||
|
Destination: &Patch,
|
||||||
|
}
|
||||||
|
|
||||||
|
var Dry bool
|
||||||
|
var DryFlag = &cli.BoolFlag{
|
||||||
|
Name: "dry-run",
|
||||||
|
Usage: "No changes are made, only reports changes that would be made",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"d"},
|
||||||
|
Destination: &Dry,
|
||||||
|
}
|
||||||
|
|
||||||
|
var Push bool
|
||||||
|
var PushFlag = &cli.BoolFlag{
|
||||||
|
Name: "push",
|
||||||
|
Usage: "Git push changes",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"P"},
|
||||||
|
Destination: &Push,
|
||||||
|
}
|
||||||
|
|
||||||
|
var CommitMessage string
|
||||||
|
var CommitMessageFlag = &cli.StringFlag{
|
||||||
|
Name: "commit-message",
|
||||||
|
Usage: "Commit message (implies --commit)",
|
||||||
|
Aliases: []string{"cm"},
|
||||||
|
Destination: &CommitMessage,
|
||||||
|
}
|
||||||
|
|
||||||
|
var Commit bool
|
||||||
|
var CommitFlag = &cli.BoolFlag{
|
||||||
|
Name: "commit",
|
||||||
|
Usage: "Commits compose.**yml file changes to recipe repository",
|
||||||
|
Value: false,
|
||||||
|
Aliases: []string{"c"},
|
||||||
|
Destination: &Commit,
|
||||||
|
}
|
||||||
|
|
||||||
|
var TagMessage string
|
||||||
|
var TagMessageFlag = &cli.StringFlag{
|
||||||
|
Name: "tag-comment",
|
||||||
|
Usage: "Description for release tag",
|
||||||
|
Aliases: []string{"t", "tm"},
|
||||||
|
Destination: &TagMessage,
|
||||||
|
}
|
||||||
|
|
||||||
|
// PromptBumpType prompts for version bump type
|
||||||
|
func PromptBumpType(tagString string) error {
|
||||||
|
if (!Major && !Minor && !Patch) && tagString == "" {
|
||||||
|
fmt.Printf(`
|
||||||
|
semver cheat sheet (more via semver.org):
|
||||||
|
major: new features/bug fixes, backwards incompatible
|
||||||
|
minor: new features/bug fixes, backwards compatible
|
||||||
|
patch: bug fixes, backwards compatible
|
||||||
|
|
||||||
|
`)
|
||||||
|
var chosenBumpType string
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: fmt.Sprintf("select recipe version increment type"),
|
||||||
|
Options: []string{"major", "minor", "patch"},
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &chosenBumpType); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
SetBumpType(chosenBumpType)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetBumpType figures out which bump type is specified
|
||||||
|
func GetBumpType() string {
|
||||||
|
var bumpType string
|
||||||
|
|
||||||
|
if Major {
|
||||||
|
bumpType = "major"
|
||||||
|
} else if Minor {
|
||||||
|
bumpType = "minor"
|
||||||
|
} else if Patch {
|
||||||
|
bumpType = "patch"
|
||||||
|
} else {
|
||||||
|
logrus.Fatal("no version bump type specififed?")
|
||||||
|
}
|
||||||
|
|
||||||
|
return bumpType
|
||||||
|
}
|
||||||
|
|
||||||
|
// SetBumpType figures out which bump type is specified
|
||||||
|
func SetBumpType(bumpType string) {
|
||||||
|
if bumpType == "major" {
|
||||||
|
Major = true
|
||||||
|
} else if bumpType == "minor" {
|
||||||
|
Minor = true
|
||||||
|
} else if bumpType == "patch" {
|
||||||
|
Patch = true
|
||||||
|
} else {
|
||||||
|
logrus.Fatal("no version bump type specififed?")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetMainApp retrieves the main 'app' image name
|
||||||
|
func GetMainApp(recipe recipe.Recipe) string {
|
||||||
|
var app string
|
||||||
|
|
||||||
|
for _, service := range recipe.Config.Services {
|
||||||
|
name := service.Name
|
||||||
|
if name == "app" {
|
||||||
|
app = strings.Split(service.Image, ":")[0]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if app == "" {
|
||||||
|
logrus.Fatalf("%s has no main 'app' service?", recipe.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
return app
|
||||||
|
}
|
106
cli/internal/record.go
Normal file
106
cli/internal/record.go
Normal file
@ -0,0 +1,106 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnsureDNSProvider ensures a DNS provider is chosen.
|
||||||
|
func EnsureDNSProvider() error {
|
||||||
|
if DNSProvider == "" && !NoInput {
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: "Select DNS provider",
|
||||||
|
Options: []string{"gandi"},
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &DNSProvider); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if DNSProvider == "" {
|
||||||
|
return fmt.Errorf("missing DNS provider?")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureDNSTypeFlag ensures a DNS type flag is present.
|
||||||
|
func EnsureDNSTypeFlag(c *cli.Context) error {
|
||||||
|
if DNSType == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify DNS record type",
|
||||||
|
Default: "A",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &DNSType); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if DNSType == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no record type provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureDNSNameFlag ensures a DNS name flag is present.
|
||||||
|
func EnsureDNSNameFlag(c *cli.Context) error {
|
||||||
|
if DNSName == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify DNS record name",
|
||||||
|
Default: "mysubdomain",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &DNSName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if DNSName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no record name provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureDNSValueFlag ensures a DNS value flag is present.
|
||||||
|
func EnsureDNSValueFlag(c *cli.Context) error {
|
||||||
|
if DNSValue == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify DNS record value",
|
||||||
|
Default: "192.168.1.2",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &DNSValue); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if DNSName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no record value provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureZoneArgument ensures a zone argument is present.
|
||||||
|
func EnsureZoneArgument(c *cli.Context) (string, error) {
|
||||||
|
var zone string
|
||||||
|
if c.Args().First() == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify a domain name zone",
|
||||||
|
Default: "example.com",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &zone); err != nil {
|
||||||
|
return zone, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if zone == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no zone value provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return zone, nil
|
||||||
|
}
|
208
cli/internal/server.go
Normal file
208
cli/internal/server.go
Normal file
@ -0,0 +1,208 @@
|
|||||||
|
package internal
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"strings"
|
||||||
|
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/urfave/cli/v2"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnsureServerProvider ensures a 3rd party server provider is chosen.
|
||||||
|
func EnsureServerProvider() error {
|
||||||
|
if ServerProvider == "" && !NoInput {
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: "Select server provider",
|
||||||
|
Options: []string{"capsul", "hetzner-cloud"},
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &ServerProvider); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ServerProvider == "" {
|
||||||
|
return fmt.Errorf("missing server provider?")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureNewCapsulVPSFlags ensure all flags are present.
|
||||||
|
func EnsureNewCapsulVPSFlags(c *cli.Context) error {
|
||||||
|
if CapsulName == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul name",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul instance URL",
|
||||||
|
Default: CapsulInstanceURL,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulInstanceURL); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul type",
|
||||||
|
Default: CapsulType,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulType); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul image",
|
||||||
|
Default: CapsulImage,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulImage); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(CapsulSSHKeys.Value()) == 0 && !NoInput {
|
||||||
|
var sshKeys string
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul SSH keys (e.g. me@foo.com)",
|
||||||
|
Default: "",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulSSHKeys); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
CapsulSSHKeys = *cli.NewStringSlice(strings.Split(sshKeys, ",")...)
|
||||||
|
}
|
||||||
|
|
||||||
|
if CapsulAPIToken == "" && !NoInput {
|
||||||
|
token, ok := os.LookupEnv("CAPSUL_TOKEN")
|
||||||
|
if !ok {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify capsul API token",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &CapsulAPIToken); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
CapsulAPIToken = token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if CapsulName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul name?"))
|
||||||
|
}
|
||||||
|
if CapsulInstanceURL == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul instance url?"))
|
||||||
|
}
|
||||||
|
if CapsulType == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul type?"))
|
||||||
|
}
|
||||||
|
if CapsulImage == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul image?"))
|
||||||
|
}
|
||||||
|
if len(CapsulSSHKeys.Value()) == 0 {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul ssh keys?"))
|
||||||
|
}
|
||||||
|
if CapsulAPIToken == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing capsul API token?"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureNewHetznerCloudVPSFlags ensure all flags are present.
|
||||||
|
func EnsureNewHetznerCloudVPSFlags(c *cli.Context) error {
|
||||||
|
if HetznerCloudName == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud VPS name",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &HetznerCloudName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud VPS type",
|
||||||
|
Default: HetznerCloudType,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &HetznerCloudType); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud VPS image",
|
||||||
|
Default: HetznerCloudImage,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &HetznerCloudImage); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(HetznerCloudSSHKeys.Value()) == 0 && !NoInput {
|
||||||
|
var sshKeys string
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud SSH keys (e.g. me@foo.com)",
|
||||||
|
Default: "",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &sshKeys); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
HetznerCloudSSHKeys = *cli.NewStringSlice(strings.Split(sshKeys, ",")...)
|
||||||
|
}
|
||||||
|
|
||||||
|
if !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud VPS location",
|
||||||
|
Default: HetznerCloudLocation,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &HetznerCloudLocation); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if HetznerCloudAPIToken == "" && !NoInput {
|
||||||
|
token, ok := os.LookupEnv("HCLOUD_TOKEN")
|
||||||
|
if !ok {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud API token",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &HetznerCloudAPIToken); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
HetznerCloudAPIToken = token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if HetznerCloudName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud VPS name?"))
|
||||||
|
}
|
||||||
|
if HetznerCloudType == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud VPS type?"))
|
||||||
|
}
|
||||||
|
if HetznerCloudImage == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud image?"))
|
||||||
|
}
|
||||||
|
if len(HetznerCloudSSHKeys.Value()) == 0 {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud ssh keys?"))
|
||||||
|
}
|
||||||
|
if HetznerCloudLocation == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud VPS location?"))
|
||||||
|
}
|
||||||
|
if HetznerCloudAPIToken == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, fmt.Errorf("missing hetzner cloud API token?"))
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -2,14 +2,21 @@ package internal
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/app"
|
"coopcloud.tech/abra/pkg/app"
|
||||||
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/recipe"
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
|
"coopcloud.tech/abra/pkg/ssh"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// AppName is used for configuring app name programmatically
|
||||||
|
var AppName string
|
||||||
|
|
||||||
// ValidateRecipe ensures the recipe arg is valid.
|
// ValidateRecipe ensures the recipe arg is valid.
|
||||||
func ValidateRecipe(c *cli.Context) recipe.Recipe {
|
func ValidateRecipe(c *cli.Context) recipe.Recipe {
|
||||||
recipeName := c.Args().First()
|
recipeName := c.Args().First()
|
||||||
@ -28,10 +35,57 @@ func ValidateRecipe(c *cli.Context) recipe.Recipe {
|
|||||||
return recipe
|
return recipe
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ValidateRecipeWithPrompt ensures a recipe argument is present before
|
||||||
|
// validating, asking for input if required.
|
||||||
|
func ValidateRecipeWithPrompt(c *cli.Context) recipe.Recipe {
|
||||||
|
recipeName := c.Args().First()
|
||||||
|
|
||||||
|
if recipeName == "" && !NoInput {
|
||||||
|
catl, err := catalogue.ReadRecipeCatalogue()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
var recipes []string
|
||||||
|
for name := range catl {
|
||||||
|
recipes = append(recipes, name)
|
||||||
|
}
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: "Select recipe",
|
||||||
|
Options: recipes,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &recipeName); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if RecipeName != "" {
|
||||||
|
recipeName = RecipeName
|
||||||
|
logrus.Debugf("programmatically setting recipe name to %s", recipeName)
|
||||||
|
}
|
||||||
|
|
||||||
|
if recipeName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no recipe provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
recipe, err := recipe.Get(recipeName)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("validated '%s' as recipe argument", recipeName)
|
||||||
|
|
||||||
|
return recipe
|
||||||
|
}
|
||||||
|
|
||||||
// ValidateApp ensures the app name arg is valid.
|
// ValidateApp ensures the app name arg is valid.
|
||||||
func ValidateApp(c *cli.Context) config.App {
|
func ValidateApp(c *cli.Context) config.App {
|
||||||
appName := c.Args().First()
|
appName := c.Args().First()
|
||||||
|
|
||||||
|
if AppName != "" {
|
||||||
|
appName = AppName
|
||||||
|
logrus.Debugf("programmatically setting app name to %s", appName)
|
||||||
|
}
|
||||||
|
|
||||||
if appName == "" {
|
if appName == "" {
|
||||||
ShowSubcommandHelpAndError(c, errors.New("no app provided"))
|
ShowSubcommandHelpAndError(c, errors.New("no app provided"))
|
||||||
}
|
}
|
||||||
@ -45,20 +99,76 @@ func ValidateApp(c *cli.Context) config.App {
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := ssh.EnsureHostKey(app.Server); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
logrus.Debugf("validated '%s' as app argument", appName)
|
logrus.Debugf("validated '%s' as app argument", appName)
|
||||||
|
|
||||||
return app
|
return app
|
||||||
}
|
}
|
||||||
|
|
||||||
// ValidateDomain ensures the domain name arg is valid.
|
// ValidateDomain ensures the domain name arg is valid.
|
||||||
func ValidateDomain(c *cli.Context) string {
|
func ValidateDomain(c *cli.Context) (string, error) {
|
||||||
domainName := c.Args().First()
|
domainName := c.Args().First()
|
||||||
|
|
||||||
|
if domainName == "" && !NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "Specify a domain name",
|
||||||
|
Default: "example.com",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &domainName); err != nil {
|
||||||
|
return domainName, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if domainName == "" {
|
if domainName == "" {
|
||||||
ShowSubcommandHelpAndError(c, errors.New("no domain provided"))
|
ShowSubcommandHelpAndError(c, errors.New("no domain provided"))
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Debugf("validated '%s' as domain argument", domainName)
|
logrus.Debugf("validated '%s' as domain argument", domainName)
|
||||||
|
|
||||||
return domainName
|
return domainName, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateSubCmdFlags ensures flag order conforms to correct order
|
||||||
|
func ValidateSubCmdFlags(c *cli.Context) bool {
|
||||||
|
for argIdx, arg := range c.Args().Slice() {
|
||||||
|
if !strings.HasPrefix(arg, "--") {
|
||||||
|
for _, flag := range c.Args().Slice()[argIdx:] {
|
||||||
|
if strings.HasPrefix(flag, "--") {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
|
// ValidateServer ensures the server name arg is valid.
|
||||||
|
func ValidateServer(c *cli.Context) (string, error) {
|
||||||
|
serverName := c.Args().First()
|
||||||
|
|
||||||
|
serverNames, err := config.ReadServerNames()
|
||||||
|
if err != nil {
|
||||||
|
return serverName, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if serverName == "" && !NoInput {
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: "Specify a server name",
|
||||||
|
Options: serverNames,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &serverName); err != nil {
|
||||||
|
return serverName, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if serverName == "" {
|
||||||
|
ShowSubcommandHelpAndError(c, errors.New("no server provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("validated '%s' as server argument", serverName)
|
||||||
|
|
||||||
|
return serverName, nil
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,14 @@ var recipeLintCommand = &cli.Command{
|
|||||||
allImagesTagged = false
|
allImagesTagged = false
|
||||||
}
|
}
|
||||||
|
|
||||||
tag := img.(reference.NamedTagged).Tag()
|
var tag string
|
||||||
|
switch img.(type) {
|
||||||
|
case reference.NamedTagged:
|
||||||
|
tag = img.(reference.NamedTagged).Tag()
|
||||||
|
case reference.Named:
|
||||||
|
noUnstableTags = false
|
||||||
|
}
|
||||||
|
|
||||||
if tag == "latest" {
|
if tag == "latest" {
|
||||||
noUnstableTags = false
|
noUnstableTags = false
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package recipe
|
package recipe
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
@ -18,43 +19,56 @@ var recipeNewCommand = &cli.Command{
|
|||||||
Usage: "Create a new recipe",
|
Usage: "Create a new recipe",
|
||||||
Aliases: []string{"n"},
|
Aliases: []string{"n"},
|
||||||
ArgsUsage: "<recipe>",
|
ArgsUsage: "<recipe>",
|
||||||
Action: func(c *cli.Context) error {
|
Description: `
|
||||||
recipe := internal.ValidateRecipe(c)
|
This command creates a new recipe.
|
||||||
|
|
||||||
directory := path.Join(config.APPS_DIR, recipe.Name)
|
Abra uses our built-in example repository which is available here:
|
||||||
|
|
||||||
|
https://git.coopcloud.tech/coop-cloud/example
|
||||||
|
|
||||||
|
Files within the example repository make use of the Golang templating system
|
||||||
|
which Abra uses to inject values into the generated recipe folder (e.g. name of
|
||||||
|
recipe and domain in the sample environment config).
|
||||||
|
|
||||||
|
The new example repository is cloned to ~/.abra/apps/<recipe>.
|
||||||
|
`,
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
recipeName := c.Args().First()
|
||||||
|
|
||||||
|
if recipeName == "" {
|
||||||
|
internal.ShowSubcommandHelpAndError(c, errors.New("no recipe provided"))
|
||||||
|
}
|
||||||
|
|
||||||
|
directory := path.Join(config.APPS_DIR, recipeName)
|
||||||
if _, err := os.Stat(directory); !os.IsNotExist(err) {
|
if _, err := os.Stat(directory); !os.IsNotExist(err) {
|
||||||
logrus.Fatalf("'%s' recipe directory already exists?", directory)
|
logrus.Fatalf("'%s' recipe directory already exists?", directory)
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
url := fmt.Sprintf("%s/example.git", config.REPOS_BASE_URL)
|
url := fmt.Sprintf("%s/example.git", config.REPOS_BASE_URL)
|
||||||
if err := git.Clone(directory, url); err != nil {
|
if err := git.Clone(directory, url); err != nil {
|
||||||
return err
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
gitRepo := path.Join(config.APPS_DIR, recipe.Name, ".git")
|
gitRepo := path.Join(config.APPS_DIR, recipeName, ".git")
|
||||||
if err := os.RemoveAll(gitRepo); err != nil {
|
if err := os.RemoveAll(gitRepo); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
logrus.Debugf("removed git repo in '%s'", gitRepo)
|
logrus.Debugf("removed git repo in '%s'", gitRepo)
|
||||||
|
|
||||||
toParse := []string{
|
toParse := []string{
|
||||||
path.Join(config.APPS_DIR, recipe.Name, "README.md"),
|
path.Join(config.APPS_DIR, recipeName, "README.md"),
|
||||||
path.Join(config.APPS_DIR, recipe.Name, ".env.sample"),
|
path.Join(config.APPS_DIR, recipeName, ".env.sample"),
|
||||||
path.Join(config.APPS_DIR, recipe.Name, ".drone.yml"),
|
path.Join(config.APPS_DIR, recipeName, ".drone.yml"),
|
||||||
}
|
}
|
||||||
for _, path := range toParse {
|
for _, path := range toParse {
|
||||||
file, err := os.OpenFile(path, os.O_RDWR, 0755)
|
file, err := os.OpenFile(path, os.O_RDWR, 0755)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tpl, err := template.ParseFiles(path)
|
tpl, err := template.ParseFiles(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: ask for description and probably other things so that the
|
// TODO: ask for description and probably other things so that the
|
||||||
@ -63,15 +77,19 @@ var recipeNewCommand = &cli.Command{
|
|||||||
if err := tpl.Execute(file, struct {
|
if err := tpl.Execute(file, struct {
|
||||||
Name string
|
Name string
|
||||||
Description string
|
Description string
|
||||||
}{recipe.Name, "TODO"}); err != nil {
|
}{recipeName, "TODO"}); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
newGitRepo := path.Join(config.APPS_DIR, recipeName)
|
||||||
|
if err := git.Init(newGitRepo, true); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
logrus.Infof(
|
logrus.Infof(
|
||||||
"new recipe '%s' created in %s, happy hacking!\n",
|
"new recipe '%s' created in %s, happy hacking!\n",
|
||||||
recipe.Name, path.Join(config.APPS_DIR, recipe.Name),
|
recipeName, path.Join(config.APPS_DIR, recipeName),
|
||||||
)
|
)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -4,30 +4,6 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var Major bool
|
|
||||||
var MajorFlag = &cli.BoolFlag{
|
|
||||||
Name: "major",
|
|
||||||
Value: false,
|
|
||||||
Aliases: []string{"ma", "x"},
|
|
||||||
Destination: &Major,
|
|
||||||
}
|
|
||||||
|
|
||||||
var Minor bool
|
|
||||||
var MinorFlag = &cli.BoolFlag{
|
|
||||||
Name: "minor",
|
|
||||||
Value: false,
|
|
||||||
Aliases: []string{"mi", "y"},
|
|
||||||
Destination: &Minor,
|
|
||||||
}
|
|
||||||
|
|
||||||
var Patch bool
|
|
||||||
var PatchFlag = &cli.BoolFlag{
|
|
||||||
Name: "patch",
|
|
||||||
Value: false,
|
|
||||||
Aliases: []string{"p", "z"},
|
|
||||||
Destination: &Patch,
|
|
||||||
}
|
|
||||||
|
|
||||||
// RecipeCommand defines all recipe related sub-commands.
|
// RecipeCommand defines all recipe related sub-commands.
|
||||||
var RecipeCommand = &cli.Command{
|
var RecipeCommand = &cli.Command{
|
||||||
Name: "recipe",
|
Name: "recipe",
|
||||||
|
@ -6,63 +6,25 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/abra/pkg/recipe"
|
"coopcloud.tech/abra/pkg/recipe"
|
||||||
recipePkg "coopcloud.tech/abra/pkg/recipe"
|
recipePkg "coopcloud.tech/abra/pkg/recipe"
|
||||||
"coopcloud.tech/tagcmp"
|
"coopcloud.tech/tagcmp"
|
||||||
"github.com/AlecAivazis/survey/v2"
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/docker/distribution/reference"
|
||||||
"github.com/go-git/go-git/v5"
|
"github.com/go-git/go-git/v5"
|
||||||
"github.com/go-git/go-git/v5/plumbing"
|
"github.com/go-git/go-git/v5/plumbing"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var Push bool
|
|
||||||
var PushFlag = &cli.BoolFlag{
|
|
||||||
Name: "push",
|
|
||||||
Value: false,
|
|
||||||
Destination: &Push,
|
|
||||||
}
|
|
||||||
|
|
||||||
var Dry bool
|
|
||||||
var DryFlag = &cli.BoolFlag{
|
|
||||||
Name: "dry-run",
|
|
||||||
Value: false,
|
|
||||||
Aliases: []string{"d"},
|
|
||||||
Destination: &Dry,
|
|
||||||
}
|
|
||||||
|
|
||||||
var CommitMessage string
|
|
||||||
var CommitMessageFlag = &cli.StringFlag{
|
|
||||||
Name: "commit-message",
|
|
||||||
Usage: "commit message. Implies --commit",
|
|
||||||
Aliases: []string{"cm"},
|
|
||||||
Destination: &CommitMessage,
|
|
||||||
}
|
|
||||||
|
|
||||||
var Commit bool
|
|
||||||
var CommitFlag = &cli.BoolFlag{
|
|
||||||
Name: "commit",
|
|
||||||
Usage: "add compose.yml to staging area and commit changes",
|
|
||||||
Value: false,
|
|
||||||
Aliases: []string{"c"},
|
|
||||||
Destination: &Commit,
|
|
||||||
}
|
|
||||||
|
|
||||||
var TagMessage string
|
|
||||||
var TagMessageFlag = &cli.StringFlag{
|
|
||||||
Name: "tag-comment",
|
|
||||||
Usage: "tag comment. If not given, user will be asked for it",
|
|
||||||
Aliases: []string{"t", "tm"},
|
|
||||||
Destination: &TagMessage,
|
|
||||||
}
|
|
||||||
|
|
||||||
var recipeReleaseCommand = &cli.Command{
|
var recipeReleaseCommand = &cli.Command{
|
||||||
Name: "release",
|
Name: "release",
|
||||||
Usage: "tag a recipe",
|
Usage: "Release a new recipe version",
|
||||||
Aliases: []string{"rl"},
|
Aliases: []string{"rl"},
|
||||||
ArgsUsage: "<recipe> [<tag>]",
|
ArgsUsage: "<recipe> [<version>]",
|
||||||
Description: `
|
Description: `
|
||||||
This command is used to specify a new tag for a recipe. These tags are used to
|
This command is used to specify a new tag for a recipe. These tags are used to
|
||||||
identify different versions of the recipe and are published on the Co-op Cloud
|
identify different versions of the recipe and are published on the Co-op Cloud
|
||||||
@ -83,23 +45,32 @@ updates are properly communicated.
|
|||||||
Abra does its best to read the "a.b.c" version scheme and communicate what
|
Abra does its best to read the "a.b.c" version scheme and communicate what
|
||||||
action needs to be taken when performing different operations such as an update
|
action needs to be taken when performing different operations such as an update
|
||||||
or a rollback of an app.
|
or a rollback of an app.
|
||||||
|
|
||||||
|
You may invoke this command in "wizard" mode and be prompted for input:
|
||||||
|
|
||||||
|
abra recipe release gitea
|
||||||
|
|
||||||
`,
|
`,
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
DryFlag,
|
internal.DryFlag,
|
||||||
PatchFlag,
|
internal.MajorFlag,
|
||||||
MinorFlag,
|
internal.MinorFlag,
|
||||||
MajorFlag,
|
internal.PatchFlag,
|
||||||
PushFlag,
|
internal.PushFlag,
|
||||||
CommitFlag,
|
internal.CommitFlag,
|
||||||
CommitMessageFlag,
|
internal.CommitMessageFlag,
|
||||||
TagMessageFlag,
|
internal.TagMessageFlag,
|
||||||
},
|
},
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
recipe := internal.ValidateRecipe(c)
|
recipe := internal.ValidateRecipeWithPrompt(c)
|
||||||
directory := path.Join(config.APPS_DIR, recipe.Name)
|
directory := path.Join(config.APPS_DIR, recipe.Name)
|
||||||
tagstring := c.Args().Get(1)
|
tagString := c.Args().Get(1)
|
||||||
imagesTmp := getImageVersions(recipe)
|
mainApp := internal.GetMainApp(recipe)
|
||||||
mainApp := getMainApp(recipe)
|
|
||||||
|
imagesTmp, err := getImageVersions(recipe)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
mainAppVersion := imagesTmp[mainApp]
|
mainAppVersion := imagesTmp[mainApp]
|
||||||
|
|
||||||
if err := recipePkg.EnsureExists(recipe.Name); err != nil {
|
if err := recipePkg.EnsureExists(recipe.Name); err != nil {
|
||||||
@ -107,28 +78,68 @@ or a rollback of an app.
|
|||||||
}
|
}
|
||||||
|
|
||||||
if mainAppVersion == "" {
|
if mainAppVersion == "" {
|
||||||
logrus.Fatal("main app version is empty?")
|
logrus.Fatalf("main 'app' service version for %s is empty?", recipe.Name)
|
||||||
}
|
}
|
||||||
|
|
||||||
if tagstring != "" {
|
if tagString != "" {
|
||||||
if _, err := tagcmp.Parse(tagstring); err != nil {
|
if _, err := tagcmp.Parse(tagString); err != nil {
|
||||||
logrus.Fatal("invalid tag specified")
|
logrus.Fatal("invalid tag specified")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if TagMessage == "" {
|
if (!internal.Major && !internal.Minor && !internal.Patch) && tagString != "" {
|
||||||
|
logrus.Fatal("please specify <version> or bump type (--major/--minor/--patch)")
|
||||||
|
}
|
||||||
|
|
||||||
|
if (internal.Major || internal.Minor || internal.Patch) && tagString != "" {
|
||||||
|
logrus.Fatal("cannot specify tag and bump type at the same time")
|
||||||
|
}
|
||||||
|
|
||||||
|
// bumpType is used to decide what part of the tag should be incremented
|
||||||
|
bumpType := btoi(internal.Major)*4 + btoi(internal.Minor)*2 + btoi(internal.Patch)
|
||||||
|
if bumpType != 0 {
|
||||||
|
// a bitwise check if the number is a power of 2
|
||||||
|
if (bumpType & (bumpType - 1)) != 0 {
|
||||||
|
logrus.Fatal("you can only use one of: --major, --minor, --patch.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := internal.PromptBumpType(tagString); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if internal.TagMessage == "" {
|
||||||
prompt := &survey.Input{
|
prompt := &survey.Input{
|
||||||
Message: "tag message",
|
Message: "tag message",
|
||||||
|
Default: fmt.Sprintf("chore: publish new %s version", internal.GetBumpType()),
|
||||||
}
|
}
|
||||||
if err := survey.AskOne(prompt, &TagMessage); err != nil {
|
if err := survey.AskOne(prompt, &internal.TagMessage); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var createTagOptions git.CreateTagOptions
|
var createTagOptions git.CreateTagOptions
|
||||||
createTagOptions.Message = TagMessage
|
createTagOptions.Message = internal.TagMessage
|
||||||
|
|
||||||
if Commit || (CommitMessage != "") {
|
if !internal.Commit {
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "git commit changes also?",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &internal.Commit); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !internal.Push {
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "git push changes also?",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &internal.Push); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if internal.Commit || internal.CommitMessage != "" {
|
||||||
commitRepo, err := git.PlainOpen(directory)
|
commitRepo, err := git.PlainOpen(directory)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
@ -138,25 +149,31 @@ or a rollback of an app.
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if CommitMessage == "" {
|
if internal.CommitMessage == "" {
|
||||||
prompt := &survey.Input{
|
prompt := &survey.Input{
|
||||||
Message: "commit message",
|
Message: "commit message",
|
||||||
|
Default: fmt.Sprintf("chore: publish new %s version", internal.GetBumpType()),
|
||||||
}
|
}
|
||||||
if err := survey.AskOne(prompt, &CommitMessage); err != nil {
|
if err := survey.AskOne(prompt, &internal.CommitMessage); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = commitWorktree.AddGlob("compose.**yml")
|
err = commitWorktree.AddGlob("compose.**yml")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
logrus.Debug("staged compose.**yml for commit")
|
logrus.Debug("staged compose.**yml for commit")
|
||||||
|
|
||||||
_, err = commitWorktree.Commit(CommitMessage, &git.CommitOptions{})
|
if !internal.Dry {
|
||||||
if err != nil {
|
_, err = commitWorktree.Commit(internal.CommitMessage, &git.CommitOptions{})
|
||||||
logrus.Fatal(err)
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Info("changes commited")
|
||||||
|
} else {
|
||||||
|
logrus.Info("dry run only: NOT committing changes")
|
||||||
}
|
}
|
||||||
logrus.Info("changes commited")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
repo, err := git.PlainOpen(directory)
|
repo, err := git.PlainOpen(directory)
|
||||||
@ -168,20 +185,8 @@ or a rollback of an app.
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// bumpType is used to decide what part of the tag should be incremented
|
if tagString != "" {
|
||||||
bumpType := btoi(Major)*4 + btoi(Minor)*2 + btoi(Patch)
|
tag, err := tagcmp.Parse(tagString)
|
||||||
if bumpType != 0 {
|
|
||||||
// a bitwise check if the number is a power of 2
|
|
||||||
if (bumpType & (bumpType - 1)) != 0 {
|
|
||||||
logrus.Fatal("you can only use one of: --major, --minor, --patch.")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if tagstring != "" {
|
|
||||||
if bumpType > 0 {
|
|
||||||
logrus.Warn("user specified a version number and --major/--minor/--patch at the same time! using version number...")
|
|
||||||
}
|
|
||||||
tag, err := tagcmp.Parse(tagstring)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -193,19 +198,23 @@ or a rollback of an app.
|
|||||||
tag.Patch = "0"
|
tag.Patch = "0"
|
||||||
tag.MissingPatch = false
|
tag.MissingPatch = false
|
||||||
}
|
}
|
||||||
tagstring = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion)
|
tagString = fmt.Sprintf("%s+%s", tag.String(), mainAppVersion)
|
||||||
if Dry {
|
if internal.Dry {
|
||||||
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", tagstring, head.Hash()))
|
hash := abraFormatter.SmallSHA(head.Hash().String())
|
||||||
|
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", tagString, hash))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
repo.CreateTag(tagstring, head.Hash(), &createTagOptions)
|
repo.CreateTag(tagString, head.Hash(), &createTagOptions)
|
||||||
logrus.Info(fmt.Sprintf("created tag %s at %s", tagstring, head.Hash()))
|
hash := abraFormatter.SmallSHA(head.Hash().String())
|
||||||
if Push {
|
logrus.Info(fmt.Sprintf("created tag %s at %s", tagString, hash))
|
||||||
|
if internal.Push && !internal.Dry {
|
||||||
if err := repo.Push(&git.PushOptions{}); err != nil {
|
if err := repo.Push(&git.PushOptions{}); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
logrus.Info(fmt.Sprintf("pushed tag %s to remote", tagstring))
|
logrus.Info(fmt.Sprintf("pushed tag %s to remote", tagString))
|
||||||
|
} else {
|
||||||
|
logrus.Info("dry run only: NOT pushing changes")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@ -236,25 +245,23 @@ or a rollback of an app.
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
fmt.Println(lastGitTag)
|
|
||||||
|
|
||||||
newTag := lastGitTag
|
newTag := lastGitTag
|
||||||
var newTagString string
|
var newtagString string
|
||||||
if bumpType > 0 {
|
if bumpType > 0 {
|
||||||
if Patch {
|
if internal.Patch {
|
||||||
now, err := strconv.Atoi(newTag.Patch)
|
now, err := strconv.Atoi(newTag.Patch)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
newTag.Patch = strconv.Itoa(now + 1)
|
newTag.Patch = strconv.Itoa(now + 1)
|
||||||
} else if Minor {
|
} else if internal.Minor {
|
||||||
now, err := strconv.Atoi(newTag.Minor)
|
now, err := strconv.Atoi(newTag.Minor)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
newTag.Patch = "0"
|
newTag.Patch = "0"
|
||||||
newTag.Minor = strconv.Itoa(now + 1)
|
newTag.Minor = strconv.Itoa(now + 1)
|
||||||
} else if Major {
|
} else if internal.Major {
|
||||||
now, err := strconv.Atoi(newTag.Major)
|
now, err := strconv.Atoi(newTag.Major)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
@ -263,57 +270,70 @@ or a rollback of an app.
|
|||||||
newTag.Minor = "0"
|
newTag.Minor = "0"
|
||||||
newTag.Major = strconv.Itoa(now + 1)
|
newTag.Major = strconv.Itoa(now + 1)
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
logrus.Fatal("we don't support automatic tag generation yet - specify a version or use one of: --major --minor --patch")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
newTag.Metadata = mainAppVersion
|
newTag.Metadata = mainAppVersion
|
||||||
newTagString = newTag.String()
|
newtagString = newTag.String()
|
||||||
if Dry {
|
if internal.Dry {
|
||||||
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", newTagString, head.Hash()))
|
hash := abraFormatter.SmallSHA(head.Hash().String())
|
||||||
|
logrus.Info(fmt.Sprintf("dry run only: NOT creating tag %s at %s", newtagString, hash))
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
repo.CreateTag(newTagString, head.Hash(), &createTagOptions)
|
repo.CreateTag(newtagString, head.Hash(), &createTagOptions)
|
||||||
logrus.Info(fmt.Sprintf("created tag %s at %s", newTagString, head.Hash()))
|
hash := abraFormatter.SmallSHA(head.Hash().String())
|
||||||
if Push {
|
logrus.Info(fmt.Sprintf("created tag %s at %s", newtagString, hash))
|
||||||
|
if internal.Push && !internal.Dry {
|
||||||
if err := repo.Push(&git.PushOptions{}); err != nil {
|
if err := repo.Push(&git.PushOptions{}); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
logrus.Info(fmt.Sprintf("pushed tag %s to remote", newTagString))
|
logrus.Info(fmt.Sprintf("pushed tag %s to remote", newtagString))
|
||||||
|
} else {
|
||||||
|
logrus.Info("gry run only: NOT pushing changes")
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func getImageVersions(recipe recipe.Recipe) map[string]string {
|
// getImageVersions retrieves image versions for a recipe
|
||||||
|
func getImageVersions(recipe recipe.Recipe) (map[string]string, error) {
|
||||||
var services = make(map[string]string)
|
var services = make(map[string]string)
|
||||||
|
|
||||||
for _, service := range recipe.Config.Services {
|
for _, service := range recipe.Config.Services {
|
||||||
if service.Image == "" {
|
if service.Image == "" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
srv := strings.Split(service.Image, ":")
|
|
||||||
services[srv[0]] = srv[1]
|
|
||||||
}
|
|
||||||
|
|
||||||
return services
|
img, err := reference.ParseNormalizedNamed(service.Image)
|
||||||
}
|
if err != nil {
|
||||||
|
return services, err
|
||||||
func getMainApp(recipe recipe.Recipe) string {
|
|
||||||
for _, service := range recipe.Config.Services {
|
|
||||||
name := service.Name
|
|
||||||
if name == "app" {
|
|
||||||
return strings.Split(service.Image, ":")[0]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
path := reference.Path(img)
|
||||||
|
if strings.Contains(path, "library") {
|
||||||
|
path = strings.Split(path, "/")[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
var tag string
|
||||||
|
switch img.(type) {
|
||||||
|
case reference.NamedTagged:
|
||||||
|
tag = img.(reference.NamedTagged).Tag()
|
||||||
|
case reference.Named:
|
||||||
|
logrus.Fatalf("%s service is missing image tag?", path)
|
||||||
|
}
|
||||||
|
|
||||||
|
services[path] = tag
|
||||||
}
|
}
|
||||||
return ""
|
|
||||||
|
return services, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// btoi converts a boolean value into an integer
|
||||||
func btoi(b bool) int {
|
func btoi(b bool) int {
|
||||||
if b {
|
if b {
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,17 @@
|
|||||||
package recipe
|
package recipe
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/tagcmp"
|
||||||
"github.com/AlecAivazis/survey/v2"
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/go-git/go-git/v5"
|
||||||
|
"github.com/go-git/go-git/v5/plumbing"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -15,18 +20,167 @@ var recipeSyncCommand = &cli.Command{
|
|||||||
Name: "sync",
|
Name: "sync",
|
||||||
Usage: "Ensure recipe version labels are up-to-date",
|
Usage: "Ensure recipe version labels are up-to-date",
|
||||||
Aliases: []string{"s"},
|
Aliases: []string{"s"},
|
||||||
ArgsUsage: "<recipe> <version>",
|
ArgsUsage: "<recipe> [<version>]",
|
||||||
|
Flags: []cli.Flag{
|
||||||
|
internal.DryFlag,
|
||||||
|
internal.MajorFlag,
|
||||||
|
internal.MinorFlag,
|
||||||
|
internal.PatchFlag,
|
||||||
|
},
|
||||||
Description: `
|
Description: `
|
||||||
This command will generate labels for the main recipe service (i.e. by
|
This command will generate labels for the main recipe service (i.e. by
|
||||||
convention, typically the service named "app") which corresponds to the
|
convention, the service named "app") which corresponds to the following format:
|
||||||
following format:
|
|
||||||
|
|
||||||
coop-cloud.${STACK_NAME}.version=<version>
|
coop-cloud.${STACK_NAME}.version=<version>
|
||||||
|
|
||||||
The <version> is determined by the recipe maintainer and is specified on the
|
The <version> is determined by the recipe maintainer and is specified on the
|
||||||
command-line. The <recipe> configuration will be updated on the local file
|
command-line. The <recipe> configuration will be updated on the local file
|
||||||
system.
|
system.
|
||||||
|
|
||||||
|
You may invoke this command in "wizard" mode and be prompted for input:
|
||||||
|
|
||||||
|
abra recipe sync
|
||||||
|
|
||||||
`,
|
`,
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
recipe := internal.ValidateRecipeWithPrompt(c)
|
||||||
|
|
||||||
|
mainApp := internal.GetMainApp(recipe)
|
||||||
|
|
||||||
|
imagesTmp, err := getImageVersions(recipe)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
mainAppVersion := imagesTmp[mainApp]
|
||||||
|
|
||||||
|
tags, err := recipe.Tags()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
nextTag := c.Args().Get(1)
|
||||||
|
if len(tags) == 0 && nextTag == "" {
|
||||||
|
logrus.Warnf("no tags found for %s", recipe.Name)
|
||||||
|
var chosenVersion string
|
||||||
|
edPrompt := &survey.Select{
|
||||||
|
Message: "which version do you want to begin with?",
|
||||||
|
Options: []string{"0.1.0", "1.0.0"},
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(edPrompt, &chosenVersion); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
nextTag = fmt.Sprintf("%s+%s", chosenVersion, mainAppVersion)
|
||||||
|
}
|
||||||
|
|
||||||
|
if nextTag == "" && (!internal.Major && !internal.Minor && !internal.Patch) {
|
||||||
|
if err := internal.PromptBumpType(""); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if nextTag == "" {
|
||||||
|
recipeDir := path.Join(config.APPS_DIR, recipe.Name)
|
||||||
|
repo, err := git.PlainOpen(recipeDir)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
var lastGitTag tagcmp.Tag
|
||||||
|
iter, err := repo.Tags()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
if err := iter.ForEach(func(ref *plumbing.Reference) error {
|
||||||
|
obj, err := repo.TagObject(ref.Hash())
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
tagcmpTag, err := tagcmp.Parse(obj.Name)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if (lastGitTag == tagcmp.Tag{}) {
|
||||||
|
lastGitTag = tagcmpTag
|
||||||
|
} else if tagcmpTag.IsGreaterThan(lastGitTag) {
|
||||||
|
lastGitTag = tagcmpTag
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// bumpType is used to decide what part of the tag should be incremented
|
||||||
|
bumpType := btoi(internal.Major)*4 + btoi(internal.Minor)*2 + btoi(internal.Patch)
|
||||||
|
if bumpType != 0 {
|
||||||
|
// a bitwise check if the number is a power of 2
|
||||||
|
if (bumpType & (bumpType - 1)) != 0 {
|
||||||
|
logrus.Fatal("you can only use one of: --major, --minor, --patch.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
newTag := lastGitTag
|
||||||
|
if bumpType > 0 {
|
||||||
|
if internal.Patch {
|
||||||
|
now, err := strconv.Atoi(newTag.Patch)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
newTag.Patch = strconv.Itoa(now + 1)
|
||||||
|
} else if internal.Minor {
|
||||||
|
now, err := strconv.Atoi(newTag.Minor)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
newTag.Patch = "0"
|
||||||
|
newTag.Minor = strconv.Itoa(now + 1)
|
||||||
|
} else if internal.Major {
|
||||||
|
now, err := strconv.Atoi(newTag.Major)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
newTag.Patch = "0"
|
||||||
|
newTag.Minor = "0"
|
||||||
|
newTag.Major = strconv.Itoa(now + 1)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
newTag.Metadata = mainAppVersion
|
||||||
|
logrus.Debugf("choosing %s as new version for %s", newTag.String(), recipe.Name)
|
||||||
|
nextTag = newTag.String()
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := tagcmp.Parse(nextTag); err != nil {
|
||||||
|
logrus.Fatalf("invalid version %s specified", nextTag)
|
||||||
|
}
|
||||||
|
|
||||||
|
mainService := "app"
|
||||||
|
var services []string
|
||||||
|
hasAppService := false
|
||||||
|
for _, service := range recipe.Config.Services {
|
||||||
|
services = append(services, service.Name)
|
||||||
|
if service.Name == "app" {
|
||||||
|
hasAppService = true
|
||||||
|
logrus.Debugf("detected app service in %s", recipe.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if !hasAppService {
|
||||||
|
logrus.Fatalf("%s has no main 'app' service?", recipe.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("selecting %s as the service to sync version label", mainService)
|
||||||
|
|
||||||
|
label := fmt.Sprintf("coop-cloud.${STACK_NAME}.version=%s", nextTag)
|
||||||
|
if !internal.Dry {
|
||||||
|
if err := recipe.UpdateLabel(mainService, label); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Infof("synced label '%s' to service '%s'", label, mainService)
|
||||||
|
} else {
|
||||||
|
logrus.Infof("dry run only: NOT syncing label %s for recipe %s", nextTag, recipe.Name)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
},
|
||||||
BashComplete: func(c *cli.Context) {
|
BashComplete: func(c *cli.Context) {
|
||||||
catl, err := catalogue.ReadRecipeCatalogue()
|
catl, err := catalogue.ReadRecipeCatalogue()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -39,50 +193,4 @@ system.
|
|||||||
fmt.Println(name)
|
fmt.Println(name)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
Action: func(c *cli.Context) error {
|
|
||||||
if c.Args().Len() != 2 {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("missing <recipe>/<version> arguments?"))
|
|
||||||
}
|
|
||||||
|
|
||||||
recipe := internal.ValidateRecipe(c)
|
|
||||||
|
|
||||||
// TODO: validate with tagcmp when new commits come in
|
|
||||||
// See https://git.coopcloud.tech/coop-cloud/abra/pulls/109
|
|
||||||
nextTag := c.Args().Get(1)
|
|
||||||
|
|
||||||
mainService := "app"
|
|
||||||
var services []string
|
|
||||||
hasAppService := false
|
|
||||||
for _, service := range recipe.Config.Services {
|
|
||||||
services = append(services, service.Name)
|
|
||||||
if service.Name == "app" {
|
|
||||||
hasAppService = true
|
|
||||||
logrus.Debugf("detected app service in '%s'", recipe.Name)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if !hasAppService {
|
|
||||||
logrus.Warnf("no 'app' service defined in '%s'", recipe.Name)
|
|
||||||
var chosenService string
|
|
||||||
prompt := &survey.Select{
|
|
||||||
Message: fmt.Sprintf("what is the main service name for '%s'?", recipe.Name),
|
|
||||||
Options: services,
|
|
||||||
}
|
|
||||||
if err := survey.AskOne(prompt, &chosenService); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
mainService = chosenService
|
|
||||||
}
|
|
||||||
|
|
||||||
logrus.Debugf("selecting '%s' as the service to sync version labels", mainService)
|
|
||||||
|
|
||||||
label := fmt.Sprintf("coop-cloud.${STACK_NAME}.version=%s", nextTag)
|
|
||||||
if err := recipe.UpdateLabel(mainService, label); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
logrus.Infof("synced label '%s' to service '%s'", label, mainService)
|
|
||||||
|
|
||||||
return nil
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
package recipe
|
package recipe
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"path"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/catalogue"
|
"coopcloud.tech/abra/pkg/catalogue"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"coopcloud.tech/tagcmp"
|
"coopcloud.tech/tagcmp"
|
||||||
"github.com/AlecAivazis/survey/v2"
|
"github.com/AlecAivazis/survey/v2"
|
||||||
"github.com/docker/distribution/reference"
|
"github.com/docker/distribution/reference"
|
||||||
@ -15,6 +19,11 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
type imgPin struct {
|
||||||
|
image string
|
||||||
|
version tagcmp.Tag
|
||||||
|
}
|
||||||
|
|
||||||
var recipeUpgradeCommand = &cli.Command{
|
var recipeUpgradeCommand = &cli.Command{
|
||||||
Name: "upgrade",
|
Name: "upgrade",
|
||||||
Usage: "Upgrade recipe image tags",
|
Usage: "Upgrade recipe image tags",
|
||||||
@ -27,17 +36,22 @@ update the relevant compose file tags on the local file system.
|
|||||||
Some image tags cannot be parsed because they do not follow some sort of
|
Some image tags cannot be parsed because they do not follow some sort of
|
||||||
semver-like convention. In this case, all possible tags will be listed and it
|
semver-like convention. In this case, all possible tags will be listed and it
|
||||||
is up to the end-user to decide.
|
is up to the end-user to decide.
|
||||||
|
|
||||||
|
You may invoke this command in "wizard" mode and be prompted for input:
|
||||||
|
|
||||||
|
abra recipe upgrade
|
||||||
|
|
||||||
`,
|
`,
|
||||||
ArgsUsage: "<recipe>",
|
ArgsUsage: "<recipe>",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
PatchFlag,
|
internal.PatchFlag,
|
||||||
MinorFlag,
|
internal.MinorFlag,
|
||||||
MajorFlag,
|
internal.MajorFlag,
|
||||||
},
|
},
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
recipe := internal.ValidateRecipe(c)
|
recipe := internal.ValidateRecipeWithPrompt(c)
|
||||||
|
|
||||||
bumpType := btoi(Major)*4 + btoi(Minor)*2 + btoi(Patch)
|
bumpType := btoi(internal.Major)*4 + btoi(internal.Minor)*2 + btoi(internal.Patch)
|
||||||
if bumpType != 0 {
|
if bumpType != 0 {
|
||||||
// a bitwise check if the number is a power of 2
|
// a bitwise check if the number is a power of 2
|
||||||
if (bumpType & (bumpType - 1)) != 0 {
|
if (bumpType & (bumpType - 1)) != 0 {
|
||||||
@ -45,6 +59,43 @@ is up to the end-user to decide.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check for versions file and load pinned versions
|
||||||
|
versionsPresent := false
|
||||||
|
recipeDir := path.Join(config.ABRA_DIR, "apps", recipe.Name)
|
||||||
|
versionsPath := path.Join(recipeDir, "versions")
|
||||||
|
var servicePins = make(map[string]imgPin)
|
||||||
|
if _, err := os.Stat(versionsPath); err == nil {
|
||||||
|
logrus.Debugf("found versions file for %s", recipe.Name)
|
||||||
|
file, err := os.Open(versionsPath)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
scanner := bufio.NewScanner(file)
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
splitLine := strings.Split(line, " ")
|
||||||
|
if splitLine[0] != "pin" || len(splitLine) != 3 {
|
||||||
|
logrus.Fatalf("malformed version pin specification: %s", line)
|
||||||
|
}
|
||||||
|
pinSlice := strings.Split(splitLine[2], ":")
|
||||||
|
pinTag, err := tagcmp.Parse(pinSlice[1])
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
pin := imgPin{
|
||||||
|
image: pinSlice[0],
|
||||||
|
version: pinTag,
|
||||||
|
}
|
||||||
|
servicePins[splitLine[1]] = pin
|
||||||
|
}
|
||||||
|
if err := scanner.Err(); err != nil {
|
||||||
|
logrus.Error(err)
|
||||||
|
}
|
||||||
|
versionsPresent = true
|
||||||
|
} else {
|
||||||
|
logrus.Debugf("did not find versions file for %s", recipe.Name)
|
||||||
|
}
|
||||||
|
|
||||||
for _, service := range recipe.Config.Services {
|
for _, service := range recipe.Config.Services {
|
||||||
catlVersions, err := catalogue.VersionsOfService(recipe.Name, service.Name)
|
catlVersions, err := catalogue.VersionsOfService(recipe.Name, service.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -69,7 +120,6 @@ is up to the end-user to decide.
|
|||||||
// first position of the string
|
// first position of the string
|
||||||
image = strings.Split(image, "/")[1]
|
image = strings.Split(image, "/")[1]
|
||||||
}
|
}
|
||||||
|
|
||||||
semverLikeTag := true
|
semverLikeTag := true
|
||||||
if !tagcmp.IsParsable(img.(reference.NamedTagged).Tag()) {
|
if !tagcmp.IsParsable(img.(reference.NamedTagged).Tag()) {
|
||||||
logrus.Debugf("'%s' not considered semver-like", img.(reference.NamedTagged).Tag())
|
logrus.Debugf("'%s' not considered semver-like", img.(reference.NamedTagged).Tag())
|
||||||
@ -81,7 +131,6 @@ is up to the end-user to decide.
|
|||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
logrus.Debugf("parsed '%s' for '%s'", tag, service.Name)
|
logrus.Debugf("parsed '%s' for '%s'", tag, service.Name)
|
||||||
|
|
||||||
var compatible []tagcmp.Tag
|
var compatible []tagcmp.Tag
|
||||||
for _, regVersion := range regVersions {
|
for _, regVersion := range regVersions {
|
||||||
other, err := tagcmp.Parse(regVersion.Name)
|
other, err := tagcmp.Parse(regVersion.Name)
|
||||||
@ -117,44 +166,69 @@ is up to the end-user to decide.
|
|||||||
}
|
}
|
||||||
|
|
||||||
logrus.Debugf("detected compatible upgradable tags '%s' for '%s'", compatibleStrings, service.Name)
|
logrus.Debugf("detected compatible upgradable tags '%s' for '%s'", compatibleStrings, service.Name)
|
||||||
|
|
||||||
var upgradeTag string
|
var upgradeTag string
|
||||||
if bumpType != 0 {
|
_, ok := servicePins[service.Name]
|
||||||
for _, upTag := range compatible {
|
if versionsPresent && ok {
|
||||||
upElement, err := tag.UpgradeDelta(upTag)
|
pinnedTag := servicePins[service.Name].version
|
||||||
if err != nil {
|
if tag.IsLessThan(pinnedTag) {
|
||||||
return err
|
pinnedTagString := pinnedTag.String()
|
||||||
|
contains := false
|
||||||
|
for _, v := range compatible {
|
||||||
|
if pinnedTag.IsUpgradeCompatible(v) {
|
||||||
|
contains = true
|
||||||
|
upgradeTag = v.String()
|
||||||
|
break
|
||||||
|
}
|
||||||
}
|
}
|
||||||
delta := upElement.UpgradeType()
|
if contains {
|
||||||
if delta <= bumpType {
|
logrus.Infof("Upgrading service %s from %s to %s (pinned tag: %s)", service.Name, tag.String(), upgradeTag, pinnedTagString)
|
||||||
upgradeTag = upTag.String()
|
} else {
|
||||||
break
|
logrus.Infof("service %s, image %s pinned to %s, no compatible upgrade found", service.Name, servicePins[service.Name].image, pinnedTagString)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
}
|
} else {
|
||||||
if upgradeTag == "" {
|
logrus.Fatalf("Service %s is at version %s, but pinned to %s, please correct your compose.yml file manually!", service.Name, tag.String(), pinnedTag.String())
|
||||||
logrus.Warnf("not upgrading from '%s' to '%s' for '%s', because the upgrade type is more serious than what user wants.", tag.String(), compatible[0].String(), image)
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
msg := fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
|
if bumpType != 0 {
|
||||||
if !tagcmp.IsParsable(img.(reference.NamedTagged).Tag()) {
|
for _, upTag := range compatible {
|
||||||
tag := img.(reference.NamedTagged).Tag()
|
upElement, err := tag.UpgradeDelta(upTag)
|
||||||
logrus.Warning(fmt.Sprintf("unable to determine versioning semantics of '%s', listing all tags", tag))
|
if err != nil {
|
||||||
msg = fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
|
return err
|
||||||
compatibleStrings = []string{}
|
}
|
||||||
for _, regVersion := range regVersions {
|
delta := upElement.UpgradeType()
|
||||||
compatibleStrings = append(compatibleStrings, regVersion.Name)
|
if delta <= bumpType {
|
||||||
|
upgradeTag = upTag.String()
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if upgradeTag == "" {
|
||||||
|
logrus.Warnf("not upgrading from '%s' to '%s' for '%s', because the upgrade type is more serious than what user wants.", tag.String(), compatible[0].String(), image)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
msg := fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
|
||||||
|
if !tagcmp.IsParsable(img.(reference.NamedTagged).Tag()) {
|
||||||
|
tag := img.(reference.NamedTagged).Tag()
|
||||||
|
logrus.Warning(fmt.Sprintf("unable to determine versioning semantics of '%s', listing all tags", tag))
|
||||||
|
msg = fmt.Sprintf("upgrade to which tag? (service: %s, tag: %s)", service.Name, tag)
|
||||||
|
compatibleStrings = []string{}
|
||||||
|
for _, regVersion := range regVersions {
|
||||||
|
compatibleStrings = append(compatibleStrings, regVersion.Name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt := &survey.Select{
|
||||||
|
Message: msg,
|
||||||
|
Options: compatibleStrings,
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &upgradeTag); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt := &survey.Select{
|
|
||||||
Message: msg,
|
|
||||||
Options: compatibleStrings,
|
|
||||||
}
|
|
||||||
if err := survey.AskOne(prompt, &upgradeTag); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := recipe.UpdateTag(image, upgradeTag); err != nil {
|
if err := recipe.UpdateTag(image, upgradeTag); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
package domain
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
@ -13,28 +12,32 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// DomainListCommand lists domains.
|
// RecordListCommand lists domains.
|
||||||
var DomainListCommand = &cli.Command{
|
var RecordListCommand = &cli.Command{
|
||||||
Name: "list",
|
Name: "list",
|
||||||
Usage: "List domain name records for a zone",
|
Usage: "List domain name records",
|
||||||
Aliases: []string{"ls"},
|
Aliases: []string{"ls"},
|
||||||
ArgsUsage: "<zone>",
|
ArgsUsage: "<zone>",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
internal.DNSProviderFlag,
|
internal.DNSProviderFlag,
|
||||||
},
|
},
|
||||||
Description: `
|
Description: `
|
||||||
This command lists all domain name records managed by a 3rd party provider.
|
This command lists all domain name records managed by a 3rd party provider for
|
||||||
|
a specific zone.
|
||||||
|
|
||||||
You must specify a zone (e.g. example.com) under which your domain name records
|
You must specify a zone (e.g. example.com) under which your domain name records
|
||||||
are listed. This zone must already be created on your provider account.
|
are listed. This zone must already be created on your provider account.
|
||||||
`,
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
zone := c.Args().First()
|
if err := internal.EnsureDNSProvider(); err != nil {
|
||||||
if zone == "" {
|
logrus.Fatal(err)
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no zone provided"))
|
}
|
||||||
|
|
||||||
|
zone, err := internal.EnsureZoneArgument(c)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
|
||||||
var provider gandi.Provider
|
var provider gandi.Provider
|
||||||
switch internal.DNSProvider {
|
switch internal.DNSProvider {
|
||||||
case "gandi":
|
case "gandi":
|
@ -1,7 +1,6 @@
|
|||||||
package domain
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
@ -15,14 +14,19 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// DomainCreateCommand lists domains.
|
// RecordNewCommand creates a new domain name record.
|
||||||
var DomainCreateCommand = &cli.Command{
|
var RecordNewCommand = &cli.Command{
|
||||||
Name: "create",
|
Name: "new",
|
||||||
Usage: "Create a new domain record",
|
Usage: "Create a new domain record",
|
||||||
Aliases: []string{"c"},
|
Aliases: []string{"n"},
|
||||||
ArgsUsage: "<zone> <type> <name> <value> [<ttl>] [<priority>]",
|
ArgsUsage: "<zone>",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
internal.DNSProviderFlag,
|
internal.DNSProviderFlag,
|
||||||
|
internal.DNSTypeFlag,
|
||||||
|
internal.DNSNameFlag,
|
||||||
|
internal.DNSValueFlag,
|
||||||
|
internal.DNSTTLFlag,
|
||||||
|
internal.DNSPriorityFlag,
|
||||||
},
|
},
|
||||||
Description: `
|
Description: `
|
||||||
This command creates a new domain name record for a specific zone.
|
This command creates a new domain name record for a specific zone.
|
||||||
@ -32,43 +36,22 @@ are listed. This zone must already be created on your provider account.
|
|||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
abra domain create -p gandi foo.com A myapp 192.168.178.44
|
abra record new foo.com -p gandi -t A -n myapp -v 192.168.178.44
|
||||||
|
|
||||||
Which means you can then deploy an app against "myapp.foo.com" successfully.
|
You may also invoke this command in "wizard" mode and be prompted for input
|
||||||
|
|
||||||
|
abra record new
|
||||||
`,
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
zone := c.Args().First()
|
zone, err := internal.EnsureZoneArgument(c)
|
||||||
if zone == "" {
|
if err != nil {
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no zone provided"))
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
recordType := c.Args().Get(1)
|
if err := internal.EnsureDNSProvider(); err != nil {
|
||||||
recordName := c.Args().Get(2)
|
logrus.Fatal(err)
|
||||||
recordValue := c.Args().Get(3)
|
|
||||||
recordTTL := c.Args().Get(4)
|
|
||||||
recordPriority := c.Args().Get(5)
|
|
||||||
|
|
||||||
if recordType == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no type provided"))
|
|
||||||
}
|
|
||||||
if recordName == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no name provided"))
|
|
||||||
}
|
|
||||||
if recordValue == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no value provided"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if recordTTL == "" {
|
|
||||||
recordTTL = "86400"
|
|
||||||
}
|
|
||||||
|
|
||||||
if recordType == "MX" || recordType == "SRV" || recordType == "URI" {
|
|
||||||
if recordPriority == "" {
|
|
||||||
logrus.Fatal("record priority must be set when using MX/SRV/URI records")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var err error
|
|
||||||
var provider gandi.Provider
|
var provider gandi.Provider
|
||||||
switch internal.DNSProvider {
|
switch internal.DNSProvider {
|
||||||
case "gandi":
|
case "gandi":
|
||||||
@ -80,24 +63,27 @@ Which means you can then deploy an app against "myapp.foo.com" successfully.
|
|||||||
logrus.Fatalf("'%s' is not a supported DNS provider", internal.DNSProvider)
|
logrus.Fatalf("'%s' is not a supported DNS provider", internal.DNSProvider)
|
||||||
}
|
}
|
||||||
|
|
||||||
ttl, err := strconv.Atoi(recordTTL)
|
if err := internal.EnsureDNSTypeFlag(c); err != nil {
|
||||||
if err != nil {
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := internal.EnsureDNSNameFlag(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := internal.EnsureDNSValueFlag(c); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
record := libdns.Record{
|
record := libdns.Record{
|
||||||
Type: recordType,
|
Type: internal.DNSType,
|
||||||
Name: recordName,
|
Name: internal.DNSName,
|
||||||
Value: recordValue,
|
Value: internal.DNSValue,
|
||||||
TTL: time.Duration(ttl),
|
TTL: time.Duration(internal.DNSTTL),
|
||||||
}
|
}
|
||||||
|
|
||||||
if recordType == "MX" || recordType == "SRV" || recordType == "URI" {
|
if internal.DNSType == "MX" || internal.DNSType == "SRV" || internal.DNSType == "URI" {
|
||||||
priority, err := strconv.Atoi(recordPriority)
|
record.Priority = internal.DNSPriority
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
record.Priority = priority
|
|
||||||
}
|
}
|
||||||
|
|
||||||
records, err := provider.GetRecords(c.Context, zone)
|
records, err := provider.GetRecords(c.Context, zone)
|
||||||
@ -120,7 +106,7 @@ Which means you can then deploy an app against "myapp.foo.com" successfully.
|
|||||||
)
|
)
|
||||||
|
|
||||||
if len(createdRecords) == 0 {
|
if len(createdRecords) == 0 {
|
||||||
logrus.Fatal("provider library reports no record created?")
|
logrus.Fatal("provider library reports that no record was created?")
|
||||||
}
|
}
|
||||||
|
|
||||||
createdRecord := createdRecords[0]
|
createdRecord := createdRecords[0]
|
@ -1,15 +1,15 @@
|
|||||||
package domain
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// DomainCommand supports managing DNS entries.
|
// RecordCommand supports managing DNS entries.
|
||||||
var DomainCommand = &cli.Command{
|
var RecordCommand = &cli.Command{
|
||||||
Name: "domain",
|
Name: "record",
|
||||||
Usage: "Manage domains via 3rd party providers",
|
Usage: "Manage domain name records via 3rd party providers",
|
||||||
Aliases: []string{"d"},
|
Aliases: []string{"rc"},
|
||||||
ArgsUsage: "<domain>",
|
ArgsUsage: "<record>",
|
||||||
Description: `
|
Description: `
|
||||||
This command supports managing domain name records via 3rd party providers such
|
This command supports managing domain name records via 3rd party providers such
|
||||||
as Gandi DNS. It supports listing, creating and removing all types of records
|
as Gandi DNS. It supports listing, creating and removing all types of records
|
||||||
@ -23,16 +23,16 @@ You need an account with such a provider already. Typically, you need to
|
|||||||
provide an API token on the Abra command-line when using these commands so that
|
provide an API token on the Abra command-line when using these commands so that
|
||||||
you can authenticate with your provider account.
|
you can authenticate with your provider account.
|
||||||
|
|
||||||
Any new provider can be integrated, we welcome change sets. See the underlying
|
New providers can be integrated, we welcome change sets. See the underlying DNS
|
||||||
DNS library documentation for more. It supports many existing providers and
|
library documentation for more. It supports many existing providers and allows
|
||||||
allows to implement new provider support easily.
|
to implement new provider support easily.
|
||||||
|
|
||||||
https://pkg.go.dev/github.com/libdns/libdns
|
https://pkg.go.dev/github.com/libdns/libdns
|
||||||
|
|
||||||
`,
|
`,
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
DomainListCommand,
|
RecordListCommand,
|
||||||
DomainCreateCommand,
|
RecordNewCommand,
|
||||||
DomainRemoveCommand,
|
RecordRemoveCommand,
|
||||||
},
|
},
|
||||||
}
|
}
|
@ -1,7 +1,6 @@
|
|||||||
package domain
|
package record
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
@ -15,47 +14,43 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
// DomainRemoveCommand lists domains.
|
// RecordRemoveCommand lists domains.
|
||||||
var DomainRemoveCommand = &cli.Command{
|
var RecordRemoveCommand = &cli.Command{
|
||||||
Name: "remove",
|
Name: "remove",
|
||||||
Usage: "Remove domain name records for a zone",
|
Usage: "Remove a domain name record",
|
||||||
Aliases: []string{"rm"},
|
Aliases: []string{"rm"},
|
||||||
ArgsUsage: "<zone> <type> <name>",
|
ArgsUsage: "<zone>",
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
internal.DNSProviderFlag,
|
internal.DNSProviderFlag,
|
||||||
|
internal.DNSTypeFlag,
|
||||||
|
internal.DNSNameFlag,
|
||||||
},
|
},
|
||||||
Description: `
|
Description: `
|
||||||
This command removes a new domain name record for a specific zone.
|
This command removes a domain name record for a specific zone.
|
||||||
|
|
||||||
You must specify a zone (e.g. example.com) under which your domain name records
|
It uses the type of record and name to match existing records and choose one
|
||||||
are listed. This zone must already be created on your provider account.
|
for deletion. You must specify a zone (e.g. example.com) under which your
|
||||||
|
domain name records are listed. This zone must already be created on your
|
||||||
The "<id>" can be retrieved by running "abra domain list <zone>". This can be
|
provider account.
|
||||||
used then in this command for deletion of the record.
|
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
abra domain remove -p gandi foo.com A myapp
|
abra record remove foo.com -p gandi -t A -n myapp
|
||||||
|
|
||||||
Which means that the domain name record of type A for myapp.foo.com will be deleted.
|
You may also invoke this command in "wizard" mode and be prompted for input
|
||||||
|
|
||||||
|
abra record rm
|
||||||
`,
|
`,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
zone := c.Args().First()
|
zone, err := internal.EnsureZoneArgument(c)
|
||||||
if zone == "" {
|
if err != nil {
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no zone provided"))
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
recordType := c.Args().Get(1)
|
if err := internal.EnsureDNSProvider(); err != nil {
|
||||||
recordName := c.Args().Get(2)
|
logrus.Fatal(err)
|
||||||
|
|
||||||
if recordType == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no type provided"))
|
|
||||||
}
|
|
||||||
if recordName == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no name provided"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var err error
|
|
||||||
var provider gandi.Provider
|
var provider gandi.Provider
|
||||||
switch internal.DNSProvider {
|
switch internal.DNSProvider {
|
||||||
case "gandi":
|
case "gandi":
|
||||||
@ -67,6 +62,14 @@ Which means that the domain name record of type A for myapp.foo.com will be dele
|
|||||||
logrus.Fatalf("'%s' is not a supported DNS provider", internal.DNSProvider)
|
logrus.Fatalf("'%s' is not a supported DNS provider", internal.DNSProvider)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := internal.EnsureDNSTypeFlag(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := internal.EnsureDNSNameFlag(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
records, err := provider.GetRecords(c.Context, zone)
|
records, err := provider.GetRecords(c.Context, zone)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
@ -74,7 +77,7 @@ Which means that the domain name record of type A for myapp.foo.com will be dele
|
|||||||
|
|
||||||
var toDelete libdns.Record
|
var toDelete libdns.Record
|
||||||
for _, record := range records {
|
for _, record := range records {
|
||||||
if record.Type == recordType && record.Name == recordName {
|
if record.Type == internal.DNSType && record.Name == internal.DNSName {
|
||||||
toDelete = record
|
toDelete = record
|
||||||
break
|
break
|
||||||
}
|
}
|
@ -1,36 +1,374 @@
|
|||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"os/user"
|
"os/user"
|
||||||
|
"path"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
abraFormatter "coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
contextPkg "coopcloud.tech/abra/pkg/context"
|
||||||
|
"coopcloud.tech/abra/pkg/dns"
|
||||||
"coopcloud.tech/abra/pkg/server"
|
"coopcloud.tech/abra/pkg/server"
|
||||||
|
"coopcloud.tech/abra/pkg/ssh"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/docker/docker/api/types"
|
||||||
|
"github.com/docker/docker/api/types/swarm"
|
||||||
|
dockerClient "github.com/docker/docker/client"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
dockerInstallMsg = `
|
||||||
|
A docker installation cannot be found on %s. This is a required system
|
||||||
|
dependency for running Co-op Cloud on your server. If you would like, Abra can
|
||||||
|
attempt to install Docker for you using the upstream non-interactive
|
||||||
|
installation script.
|
||||||
|
|
||||||
|
See the following documentation for more:
|
||||||
|
|
||||||
|
https://docs.docker.com/engine/install/debian/#install-using-the-convenience-script
|
||||||
|
|
||||||
|
N.B Docker doesn't recommend it for production environments but many use it for
|
||||||
|
such purposes. Docker stable is now installed by default by this script. The
|
||||||
|
source for this script can be seen here:
|
||||||
|
|
||||||
|
https://github.com/docker/docker-install
|
||||||
|
|
||||||
|
`
|
||||||
|
)
|
||||||
|
|
||||||
var local bool
|
var local bool
|
||||||
var localFlag = &cli.BoolFlag{
|
var localFlag = &cli.BoolFlag{
|
||||||
Name: "local",
|
Name: "local",
|
||||||
Aliases: []string{"L"},
|
Aliases: []string{"l"},
|
||||||
Value: false,
|
Value: false,
|
||||||
Usage: "Set up the local server",
|
Usage: "Use local server",
|
||||||
Destination: &local,
|
Destination: &local,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var provision bool
|
||||||
|
var provisionFlag = &cli.BoolFlag{
|
||||||
|
Name: "provision",
|
||||||
|
Aliases: []string{"p"},
|
||||||
|
Value: false,
|
||||||
|
Usage: "Provision server so it can deploy apps",
|
||||||
|
Destination: &provision,
|
||||||
|
}
|
||||||
|
|
||||||
|
var sshAuth string
|
||||||
|
var sshAuthFlag = &cli.StringFlag{
|
||||||
|
Name: "ssh-auth",
|
||||||
|
Aliases: []string{"sh"},
|
||||||
|
Value: "identity-file",
|
||||||
|
Usage: "Select SSH authentication method (identity-file, password)",
|
||||||
|
Destination: &sshAuth,
|
||||||
|
}
|
||||||
|
|
||||||
|
var askSudoPass bool
|
||||||
|
var askSudoPassFlag = &cli.BoolFlag{
|
||||||
|
Name: "ask-sudo-pass",
|
||||||
|
Aliases: []string{"as"},
|
||||||
|
Value: false,
|
||||||
|
Usage: "Ask for sudo password",
|
||||||
|
Destination: &askSudoPass,
|
||||||
|
}
|
||||||
|
|
||||||
|
var traefik bool
|
||||||
|
var traefikFlag = &cli.BoolFlag{
|
||||||
|
Name: "traefik",
|
||||||
|
Aliases: []string{"t"},
|
||||||
|
Value: false,
|
||||||
|
Usage: "Deploy traefik",
|
||||||
|
Destination: &traefik,
|
||||||
|
}
|
||||||
|
|
||||||
|
func cleanUp(domainName string) {
|
||||||
|
logrus.Warnf("cleaning up context for %s", domainName)
|
||||||
|
if err := client.DeleteContext(domainName); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Warnf("cleaning up server directory for %s", domainName)
|
||||||
|
if err := os.RemoveAll(filepath.Join(config.ABRA_SERVER_FOLDER, domainName)); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func installDockerLocal(c *cli.Context) error {
|
||||||
|
fmt.Println(fmt.Sprintf(dockerInstallMsg, "this local server"))
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: fmt.Sprintf("attempt install docker on local server?"),
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
cmd := exec.Command("bash", "-c", "curl -s https://get.docker.com | bash")
|
||||||
|
if err := internal.RunCmd(cmd); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newLocalServer(c *cli.Context, domainName string) error {
|
||||||
|
if err := createServerDir(domainName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
cl, err := newClient(c, domainName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if provision {
|
||||||
|
out, err := exec.Command("which", "docker").Output()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if string(out) == "" {
|
||||||
|
if err := installDockerLocal(c); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err := initSwarmLocal(c, cl, domainName); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "proxy already exists") {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if traefik {
|
||||||
|
if err := deployTraefik(c, cl, domainName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Info("local server has been added")
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newContext(c *cli.Context, domainName, username, port string) error {
|
||||||
|
store := contextPkg.NewDefaultDockerContextStore()
|
||||||
|
contexts, err := store.Store.List()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, context := range contexts {
|
||||||
|
if context.Name == domainName {
|
||||||
|
logrus.Debugf("context for %s already exists", domainName)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("creating context with domain %s, username %s and port %s", domainName, username, port)
|
||||||
|
|
||||||
|
if err := client.CreateContext(domainName, username, port); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newClient(c *cli.Context, domainName string) (*dockerClient.Client, error) {
|
||||||
|
cl, err := client.New(domainName)
|
||||||
|
if err != nil {
|
||||||
|
return &dockerClient.Client{}, err
|
||||||
|
}
|
||||||
|
return cl, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func installDocker(c *cli.Context, cl *dockerClient.Client, sshCl *ssh.Client, domainName string) error {
|
||||||
|
result, err := sshCl.Exec("which docker")
|
||||||
|
if err != nil && string(result) != "" {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if string(result) == "" {
|
||||||
|
fmt.Println(fmt.Sprintf(dockerInstallMsg, domainName))
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: fmt.Sprintf("attempt install docker on %s?", domainName),
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
cmd := "curl -s https://get.docker.com | bash"
|
||||||
|
|
||||||
|
var sudoPass string
|
||||||
|
if askSudoPass {
|
||||||
|
prompt := &survey.Password{
|
||||||
|
Message: "sudo password?",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &sudoPass); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Debugf("running '%s' on %s now with sudo password", cmd, domainName)
|
||||||
|
if err := ssh.RunSudoCmd(cmd, sudoPass, sshCl); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logrus.Debugf("running '%s' on %s now without sudo password", cmd, domainName)
|
||||||
|
if err := ssh.Exec(cmd, sshCl); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("docker is installed on %s", domainName)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func initSwarmLocal(c *cli.Context, cl *dockerClient.Client, domainName string) error {
|
||||||
|
initReq := swarm.InitRequest{ListenAddr: "0.0.0.0:2377"}
|
||||||
|
if _, err := cl.SwarmInit(c.Context, initReq); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "is already part of a swarm") {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Info("swarm mode already initialised on local server")
|
||||||
|
} else {
|
||||||
|
logrus.Infof("initialised swarm mode on local server")
|
||||||
|
}
|
||||||
|
|
||||||
|
netOpts := types.NetworkCreate{Driver: "overlay", Scope: "swarm"}
|
||||||
|
if _, err := cl.NetworkCreate(c.Context, "proxy", netOpts); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "proxy already exists") {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Info("swarm overlay network already created on local server")
|
||||||
|
} else {
|
||||||
|
logrus.Infof("swarm overlay network created on local server")
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func initSwarm(c *cli.Context, cl *dockerClient.Client, domainName string) error {
|
||||||
|
ipv4, err := dns.EnsureIPv4(domainName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
initReq := swarm.InitRequest{
|
||||||
|
ListenAddr: "0.0.0.0:2377",
|
||||||
|
AdvertiseAddr: ipv4,
|
||||||
|
}
|
||||||
|
if _, err := cl.SwarmInit(c.Context, initReq); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "is already part of a swarm") {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Infof("swarm mode already initialised on %s", domainName)
|
||||||
|
} else {
|
||||||
|
logrus.Infof("initialised swarm mode on %s", domainName)
|
||||||
|
}
|
||||||
|
|
||||||
|
netOpts := types.NetworkCreate{Driver: "overlay", Scope: "swarm"}
|
||||||
|
if _, err := cl.NetworkCreate(c.Context, "proxy", netOpts); err != nil {
|
||||||
|
if !strings.Contains(err.Error(), "proxy already exists") {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Infof("swarm overlay network already created on %s", domainName)
|
||||||
|
} else {
|
||||||
|
logrus.Infof("swarm overlay network created on %s", domainName)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func createServerDir(domainName string) error {
|
||||||
|
if err := server.CreateServerDir(domainName); err != nil {
|
||||||
|
if !os.IsExist(err) {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Debugf("server dir for %s already created", domainName)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func deployTraefik(c *cli.Context, cl *dockerClient.Client, domainName string) error {
|
||||||
|
internal.NoInput = true
|
||||||
|
|
||||||
|
internal.RecipeName = "traefik"
|
||||||
|
internal.NewAppServer = domainName
|
||||||
|
internal.Domain = fmt.Sprintf("%s.%s", "traefik", domainName)
|
||||||
|
internal.NewAppName = fmt.Sprintf("%s_%s", "traefik", config.SanitiseAppName(domainName))
|
||||||
|
|
||||||
|
appEnvPath := path.Join(config.ABRA_DIR, "servers", internal.Domain, fmt.Sprintf("%s.env", internal.NewAppName))
|
||||||
|
if _, err := os.Stat(appEnvPath); !os.IsNotExist(err) {
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
You specified "--traefik/-t" and that means that Abra will now try to
|
||||||
|
automatically create a new Traefik app on %s.
|
||||||
|
`, internal.NewAppServer))
|
||||||
|
|
||||||
|
tableCol := []string{"recipe", "domain", "server", "name"}
|
||||||
|
table := abraFormatter.CreateTable(tableCol)
|
||||||
|
table.Append([]string{internal.RecipeName, internal.Domain, internal.NewAppServer, internal.NewAppName})
|
||||||
|
|
||||||
|
if err := internal.NewAction(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logrus.Infof("%s already exists, not creating again", appEnvPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
internal.AppName = internal.NewAppName
|
||||||
|
if err := internal.DeployAction(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var serverAddCommand = &cli.Command{
|
var serverAddCommand = &cli.Command{
|
||||||
Name: "add",
|
Name: "add",
|
||||||
Usage: "Add a new server",
|
Usage: "Add a server to your configuration",
|
||||||
Description: `
|
Description: `
|
||||||
This command adds a new server that abra will communicate with, to deploy apps.
|
This command adds a new server to your configuration so that it can be managed
|
||||||
|
by Abra. This can be useful when you already have a server provisioned and want
|
||||||
|
to start running Abra commands against it.
|
||||||
|
|
||||||
|
This command can also provision your server ("--provision/-p") so that it is
|
||||||
|
capable of hosting Co-op Cloud apps. Abra will default to expecting that you
|
||||||
|
have a running ssh-agent and are using SSH keys to connect to your new server.
|
||||||
|
Abra will also read your SSH config (matching "Host" as <domain>). SSH
|
||||||
|
connection details precedence follows as such: command-line > SSH config >
|
||||||
|
guessed defaults.
|
||||||
|
|
||||||
|
If you have no SSH key configured for this host and are instead using password
|
||||||
|
authentication, you may pass "--ssh-auth password" to have Abra ask you for the
|
||||||
|
password. "--ask-sudo-pass" may be passed if you run your provisioning commands
|
||||||
|
via sudo privilege escalation.
|
||||||
|
|
||||||
If "--local" is passed, then Abra assumes that the current local server is
|
If "--local" is passed, then Abra assumes that the current local server is
|
||||||
intended as the target server.
|
intended as the target server. This is useful when you want to have your entire
|
||||||
|
Co-op Cloud config located on the server itself, and not on your local
|
||||||
|
developer machine.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
abra server add --local
|
||||||
|
|
||||||
Otherwise, you may specify a remote server. The <domain> argument must be a
|
Otherwise, you may specify a remote server. The <domain> argument must be a
|
||||||
publicy accessible domain name which points to your server. You should have SSH
|
publicy accessible domain name which points to your server. You should have SSH
|
||||||
@ -38,113 +376,110 @@ access to this server, Abra will assume port 22 and will use your current
|
|||||||
system username to make an initial connection. You can use the <user> and
|
system username to make an initial connection. You can use the <user> and
|
||||||
<port> arguments to adjust this.
|
<port> arguments to adjust this.
|
||||||
|
|
||||||
For example:
|
Example:
|
||||||
|
|
||||||
abra server add varia.zone glodemodem 12345
|
abra server add --provision --traefik varia.zone glodemodem 12345
|
||||||
|
|
||||||
Abra will construct the following SSH connection string then:
|
Abra will construct the following SSH connection and Docker context:
|
||||||
|
|
||||||
ssh://globemodem@varia.zone:12345
|
ssh://globemodem@varia.zone:12345
|
||||||
|
|
||||||
All communication between Abra and the server will use this SSH connection.
|
All communication between Abra and the server will use this SSH connection.
|
||||||
|
|
||||||
|
In this example, Abra will run the following operations:
|
||||||
|
|
||||||
|
1. Install Docker
|
||||||
|
2. Initialise Swarm mode
|
||||||
|
3. Deploy Traefik (core web proxy)
|
||||||
|
|
||||||
|
You may omit flags to avoid performing this provisioning logic.
|
||||||
`,
|
`,
|
||||||
Aliases: []string{"a"},
|
Aliases: []string{"a"},
|
||||||
Flags: []cli.Flag{
|
Flags: []cli.Flag{
|
||||||
localFlag,
|
localFlag,
|
||||||
|
provisionFlag,
|
||||||
|
sshAuthFlag,
|
||||||
|
askSudoPassFlag,
|
||||||
|
traefikFlag,
|
||||||
},
|
},
|
||||||
ArgsUsage: "<domain> [<user>] [<port>]",
|
ArgsUsage: "<domain> [<user>] [<port>]",
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
|
if c.Args().Len() > 0 && local || !internal.ValidateSubCmdFlags(c) {
|
||||||
if c.Args().Len() == 2 && !local {
|
|
||||||
err := errors.New("missing arguments <domain> or '--local'")
|
|
||||||
internal.ShowSubcommandHelpAndError(c, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if c.Args().Get(2) != "" && local {
|
|
||||||
err := errors.New("cannot use '<domain>' and '--local' together")
|
err := errors.New("cannot use '<domain>' and '--local' together")
|
||||||
internal.ShowSubcommandHelpAndError(c, err)
|
internal.ShowSubcommandHelpAndError(c, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
domainName := "default"
|
if sshAuth != "password" && sshAuth != "identity-file" {
|
||||||
|
err := errors.New("--ssh-auth only accepts 'identity-file' or 'password'")
|
||||||
|
internal.ShowSubcommandHelpAndError(c, err)
|
||||||
|
}
|
||||||
|
|
||||||
if local {
|
if local {
|
||||||
if err := server.CreateServerDir(domainName); err != nil {
|
if err := newLocalServer(c, "default"); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
if _, err := exec.LookPath("docker"); err != nil {
|
|
||||||
return errors.New("docker command not found on $PATH, is it installed?")
|
|
||||||
}
|
|
||||||
logrus.Info("local server has been added")
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
domainName = internal.ValidateDomain(c)
|
domainName, err := internal.ValidateDomain(c)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
var username string
|
username := c.Args().Get(1)
|
||||||
var port string
|
|
||||||
|
|
||||||
username = c.Args().Get(1)
|
|
||||||
if username == "" {
|
if username == "" {
|
||||||
systemUser, err := user.Current()
|
systemUser, err := user.Current()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
username = systemUser.Username
|
username = systemUser.Username
|
||||||
}
|
}
|
||||||
|
|
||||||
port = c.Args().Get(2)
|
port := c.Args().Get(2)
|
||||||
if port == "" {
|
if port == "" {
|
||||||
port = "22"
|
port = "22"
|
||||||
}
|
}
|
||||||
|
|
||||||
store := client.NewDefaultDockerContextStore()
|
if err := createServerDir(domainName); err != nil {
|
||||||
contexts, err := store.Store.List()
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := newContext(c, domainName, username, port); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cl, err := newClient(c, domainName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, context := range contexts {
|
if provision {
|
||||||
if context.Name == domainName {
|
logrus.Debugf("attempting to construct SSH client for %s", domainName)
|
||||||
logrus.Fatalf("server at '%s' already exists?", domainName)
|
sshCl, err := ssh.New(domainName, sshAuth, username, port)
|
||||||
}
|
if err != nil {
|
||||||
}
|
|
||||||
|
|
||||||
logrus.Debugf("creating context with domain '%s', username '%s' and port '%s'", domainName, username, port)
|
|
||||||
|
|
||||||
if err := client.CreateContext(domainName, username, port); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx := context.Background()
|
|
||||||
cl, err := client.New(domainName)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Warn("cleaning up context due to connection failure")
|
|
||||||
if err := client.DeleteContext(domainName); err != nil {
|
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
logrus.Fatal(err)
|
defer sshCl.Close()
|
||||||
}
|
logrus.Debugf("successfully created SSH client for %s", domainName)
|
||||||
|
|
||||||
if _, err := cl.Info(ctx); err != nil {
|
if err := installDocker(c, cl, sshCl, domainName); err != nil {
|
||||||
if strings.Contains(err.Error(), "command not found") {
|
logrus.Fatal(err)
|
||||||
logrus.Fatalf("docker is not installed on '%s'?", domainName)
|
}
|
||||||
} else {
|
if err := initSwarm(c, cl, domainName); err != nil {
|
||||||
logrus.Warn("cleaning up context due to connection failure")
|
logrus.Fatal(err)
|
||||||
if err := client.DeleteContext(domainName); err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
logrus.Fatalf("unable to make a connection to '%s'?", domainName)
|
|
||||||
}
|
}
|
||||||
logrus.Debug(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Debugf("remote connection to '%s' is definitely up", domainName)
|
if _, err := cl.Info(c.Context); err != nil {
|
||||||
|
cleanUp(domainName)
|
||||||
if err := server.CreateServerDir(domainName); err != nil {
|
logrus.Fatalf("couldn't make a remote docker connection to %s? use --provision/-p to attempt to install", domainName)
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("server at '%s' has been added", domainName)
|
if traefik {
|
||||||
|
if err := deployTraefik(c, cl, domainName); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
@ -1,81 +0,0 @@
|
|||||||
package server
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"fmt"
|
|
||||||
"net"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/internal"
|
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
"github.com/docker/docker/api/types"
|
|
||||||
"github.com/docker/docker/api/types/swarm"
|
|
||||||
"github.com/sirupsen/logrus"
|
|
||||||
"github.com/urfave/cli/v2"
|
|
||||||
)
|
|
||||||
|
|
||||||
var serverInitCommand = &cli.Command{
|
|
||||||
Name: "init",
|
|
||||||
Usage: "Initialise server for deploying apps",
|
|
||||||
Aliases: []string{"i"},
|
|
||||||
HideHelp: true,
|
|
||||||
ArgsUsage: "<domain>",
|
|
||||||
Description: `
|
|
||||||
Initialise swarm mode on the target <domain>.
|
|
||||||
|
|
||||||
This initialisation explicitly chooses the "single host swarm" mode which uses
|
|
||||||
the default IPv4 address as the advertising address. This can be re-configured
|
|
||||||
later for more advanced use cases.
|
|
||||||
`,
|
|
||||||
Action: func(c *cli.Context) error {
|
|
||||||
domainName := internal.ValidateDomain(c)
|
|
||||||
|
|
||||||
cl, err := client.New(domainName)
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// https://www.privacy-handbuch.de/handbuch_93d.htm
|
|
||||||
freifunkDNS := "5.1.66.255:53"
|
|
||||||
|
|
||||||
resolver := &net.Resolver{
|
|
||||||
PreferGo: false,
|
|
||||||
Dial: func(ctx context.Context, network, address string) (net.Conn, error) {
|
|
||||||
d := net.Dialer{
|
|
||||||
Timeout: time.Millisecond * time.Duration(10000),
|
|
||||||
}
|
|
||||||
// comrade librehosters DNS resolver https://snopyta.org/service/dns/
|
|
||||||
return d.DialContext(ctx, "udp", freifunkDNS)
|
|
||||||
},
|
|
||||||
}
|
|
||||||
logrus.Debugf("created DNS resolver via '%s'", freifunkDNS)
|
|
||||||
|
|
||||||
ctx := context.Background()
|
|
||||||
ips, err := resolver.LookupIPAddr(ctx, domainName)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(ips) == 0 {
|
|
||||||
return fmt.Errorf("unable to retrieve ipv4 address for %s", domainName)
|
|
||||||
}
|
|
||||||
ipv4 := ips[0].IP.To4().String()
|
|
||||||
|
|
||||||
initReq := swarm.InitRequest{
|
|
||||||
ListenAddr: "0.0.0.0:2377",
|
|
||||||
AdvertiseAddr: ipv4,
|
|
||||||
}
|
|
||||||
if _, err := cl.SwarmInit(ctx, initReq); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
logrus.Debugf("initialised swarm on '%s'", domainName)
|
|
||||||
|
|
||||||
netOpts := types.NetworkCreate{Driver: "overlay", Scope: "swarm"}
|
|
||||||
if _, err := cl.NetworkCreate(ctx, "proxy", netOpts); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
logrus.Debug("swarm overlay network 'proxy' created")
|
|
||||||
|
|
||||||
return nil
|
|
||||||
},
|
|
||||||
}
|
|
@ -4,8 +4,9 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/formatter"
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/context"
|
||||||
|
"github.com/docker/cli/cli/connhelper/ssh"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
@ -17,13 +18,13 @@ var serverListCommand = &cli.Command{
|
|||||||
ArgsUsage: " ",
|
ArgsUsage: " ",
|
||||||
HideHelp: true,
|
HideHelp: true,
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
dockerContextStore := client.NewDefaultDockerContextStore()
|
dockerContextStore := context.NewDefaultDockerContextStore()
|
||||||
contexts, err := dockerContextStore.Store.List()
|
contexts, err := dockerContextStore.Store.List()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
tableColumns := []string{"Name", "Connection"}
|
tableColumns := []string{"name", "host", "user", "port"}
|
||||||
table := formatter.CreateTable(tableColumns)
|
table := formatter.CreateTable(tableColumns)
|
||||||
defer table.Render()
|
defer table.Render()
|
||||||
|
|
||||||
@ -35,20 +36,24 @@ var serverListCommand = &cli.Command{
|
|||||||
for _, serverName := range serverNames {
|
for _, serverName := range serverNames {
|
||||||
var row []string
|
var row []string
|
||||||
for _, ctx := range contexts {
|
for _, ctx := range contexts {
|
||||||
endpoint, err := client.GetContextEndpoint(ctx)
|
endpoint, err := context.GetContextEndpoint(ctx)
|
||||||
if err != nil && strings.Contains(err.Error(), "does not exist") {
|
if err != nil && strings.Contains(err.Error(), "does not exist") {
|
||||||
// No local context found, we can continue safely
|
// No local context found, we can continue safely
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if ctx.Name == serverName {
|
if ctx.Name == serverName {
|
||||||
row = []string{serverName, endpoint}
|
sp, err := ssh.ParseURL(endpoint)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
row = []string{serverName, sp.Host, sp.User, sp.Port}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(row) == 0 {
|
if len(row) == 0 {
|
||||||
if serverName == "default" {
|
if serverName == "default" {
|
||||||
row = []string{serverName, "local"}
|
row = []string{serverName, "local", "n/a", "n/a"}
|
||||||
} else {
|
} else {
|
||||||
row = []string{serverName, "unknown"}
|
row = []string{serverName, "unknown", "unknown", "unknown"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
table.Append(row)
|
table.Append(row)
|
||||||
|
@ -1,207 +1,177 @@
|
|||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/formatter"
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/libcapsul"
|
"coopcloud.tech/libcapsul"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
"github.com/hetznercloud/hcloud-go/hcloud"
|
"github.com/hetznercloud/hcloud-go/hcloud"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var hetznerCloudType string
|
func newHetznerCloudVPS(c *cli.Context) error {
|
||||||
var hetznerCloudImage string
|
if err := internal.EnsureNewHetznerCloudVPSFlags(c); err != nil {
|
||||||
var hetznerCloudSSHKeys cli.StringSlice
|
return err
|
||||||
var hetznerCloudLocation string
|
}
|
||||||
var hetznerCloudAPIToken string
|
|
||||||
var serverNewHetznerCloudCommand = &cli.Command{
|
|
||||||
Name: "hetzner",
|
|
||||||
Usage: "Create a new Hetzner virtual server",
|
|
||||||
ArgsUsage: "<name>",
|
|
||||||
Description: `
|
|
||||||
Create a new Hetzner virtual server.
|
|
||||||
|
|
||||||
This command uses the uses the Hetzner Cloud API bindings to send a server
|
client := hcloud.NewClient(hcloud.WithToken(internal.HetznerCloudAPIToken))
|
||||||
creation request. You must already have a Hetzner Cloud account and an account
|
|
||||||
API token before using this command.
|
|
||||||
|
|
||||||
Your token can be loaded from the environment using the HCLOUD_TOKEN
|
var sshKeysRaw []string
|
||||||
environment variable or otherwise passing the "--env/-e" flag.
|
var sshKeys []*hcloud.SSHKey
|
||||||
`,
|
for _, sshKey := range c.StringSlice("hetzner-ssh-keys") {
|
||||||
Flags: []cli.Flag{
|
if sshKey == "" {
|
||||||
&cli.StringFlag{
|
continue
|
||||||
Name: "type",
|
|
||||||
Aliases: []string{"t"},
|
|
||||||
Usage: "Server type",
|
|
||||||
Destination: &hetznerCloudType,
|
|
||||||
Value: "cx11",
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "image",
|
|
||||||
Aliases: []string{"i"},
|
|
||||||
Usage: "Image type",
|
|
||||||
Value: "debian-10",
|
|
||||||
Destination: &hetznerCloudImage,
|
|
||||||
},
|
|
||||||
&cli.StringSliceFlag{
|
|
||||||
Name: "ssh-keys",
|
|
||||||
Aliases: []string{"s"},
|
|
||||||
Usage: "SSH keys",
|
|
||||||
Destination: &hetznerCloudSSHKeys,
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "location",
|
|
||||||
Aliases: []string{"l"},
|
|
||||||
Usage: "Server location",
|
|
||||||
Value: "hel1",
|
|
||||||
Destination: &hetznerCloudLocation,
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "token",
|
|
||||||
Aliases: []string{"T"},
|
|
||||||
Usage: "Hetzner Cloud API token",
|
|
||||||
EnvVars: []string{"HCLOUD_TOKEN"},
|
|
||||||
Destination: &hetznerCloudAPIToken,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Action: func(c *cli.Context) error {
|
|
||||||
name := c.Args().First()
|
|
||||||
if name == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no name provided"))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if hetznerCloudAPIToken == "" {
|
sshKey, _, err := client.SSHKey.GetByName(c.Context, sshKey)
|
||||||
logrus.Fatal("Hetzner Cloud API token is missing")
|
|
||||||
}
|
|
||||||
|
|
||||||
ctx := context.Background()
|
|
||||||
client := hcloud.NewClient(hcloud.WithToken(hetznerCloudAPIToken))
|
|
||||||
|
|
||||||
logrus.Debugf("successfully created hetzner cloud API client")
|
|
||||||
|
|
||||||
var sshKeys []*hcloud.SSHKey
|
|
||||||
for _, sshKey := range c.StringSlice("ssh-keys") {
|
|
||||||
sshKey, _, err := client.SSHKey.GetByName(ctx, sshKey)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
sshKeys = append(sshKeys, sshKey)
|
|
||||||
}
|
|
||||||
|
|
||||||
serverOpts := hcloud.ServerCreateOpts{
|
|
||||||
Name: name,
|
|
||||||
ServerType: &hcloud.ServerType{Name: hetznerCloudType},
|
|
||||||
Image: &hcloud.Image{Name: hetznerCloudImage},
|
|
||||||
SSHKeys: sshKeys,
|
|
||||||
Location: &hcloud.Location{Name: hetznerCloudLocation},
|
|
||||||
}
|
|
||||||
res, _, err := client.Server.Create(ctx, serverOpts)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
sshKeys = append(sshKeys, sshKey)
|
||||||
|
sshKeysRaw = append(sshKeysRaw, sshKey.Name)
|
||||||
|
}
|
||||||
|
|
||||||
logrus.Debugf("new server '%s' created", name)
|
serverOpts := hcloud.ServerCreateOpts{
|
||||||
|
Name: internal.HetznerCloudName,
|
||||||
|
ServerType: &hcloud.ServerType{Name: internal.HetznerCloudType},
|
||||||
|
Image: &hcloud.Image{Name: internal.HetznerCloudImage},
|
||||||
|
SSHKeys: sshKeys,
|
||||||
|
Location: &hcloud.Location{Name: internal.HetznerCloudLocation},
|
||||||
|
}
|
||||||
|
|
||||||
tableColumns := []string{"Name", "IPv4", "Root Password"}
|
tableColumns := []string{"name", "type", "image", "ssh-keys", "location"}
|
||||||
table := formatter.CreateTable(tableColumns)
|
table := formatter.CreateTable(tableColumns)
|
||||||
|
table.Append([]string{
|
||||||
|
internal.HetznerCloudName,
|
||||||
|
internal.HetznerCloudType,
|
||||||
|
internal.HetznerCloudImage,
|
||||||
|
strings.Join(sshKeysRaw, "\n"),
|
||||||
|
internal.HetznerCloudLocation,
|
||||||
|
})
|
||||||
|
table.Render()
|
||||||
|
|
||||||
if len(sshKeys) > 0 {
|
response := false
|
||||||
table.Append([]string{name, res.Server.PublicNet.IPv4.IP.String(), "N/A (using SSH keys)"})
|
prompt := &survey.Confirm{
|
||||||
} else {
|
Message: "continue with hetzner cloud VPS creation?",
|
||||||
table.Append([]string{name, res.Server.PublicNet.IPv4.IP.String(), res.RootPassword})
|
}
|
||||||
}
|
|
||||||
|
|
||||||
table.Render()
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
if !response {
|
||||||
},
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
res, _, err := client.Server.Create(c.Context, serverOpts)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
var rootPassword string
|
||||||
|
if len(sshKeys) > 0 {
|
||||||
|
rootPassword = "N/A (using SSH keys)"
|
||||||
|
} else {
|
||||||
|
rootPassword = res.RootPassword
|
||||||
|
}
|
||||||
|
|
||||||
|
ip := res.Server.PublicNet.IPv4.IP.String()
|
||||||
|
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
Your new Hetzner Cloud VPS has successfully been created! Here are the details:
|
||||||
|
|
||||||
|
name: %s
|
||||||
|
IP address: %s
|
||||||
|
root password: %s
|
||||||
|
|
||||||
|
You can access this new VPS via SSH using the following command:
|
||||||
|
|
||||||
|
ssh root@%s
|
||||||
|
|
||||||
|
Please note, this server is not managed by Abra yet (i.e. "abra server ls" will
|
||||||
|
not list this server)! You will need to assign a domain name record ("abra
|
||||||
|
record new") and add the server to your Abra configuration ("abra server add")
|
||||||
|
to have a working server that you can deploy Co-op Cloud apps to.
|
||||||
|
`,
|
||||||
|
internal.HetznerCloudName, ip, rootPassword,
|
||||||
|
ip,
|
||||||
|
))
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var capsulInstance string
|
func newCapsulVPS(c *cli.Context) error {
|
||||||
var capsulType string
|
if err := internal.EnsureNewCapsulVPSFlags(c); err != nil {
|
||||||
var capsulImage string
|
return err
|
||||||
var capsulSSHKey string
|
}
|
||||||
var capsulAPIToken string
|
|
||||||
var serverNewCapsulCommand = &cli.Command{
|
|
||||||
Name: "capsul",
|
|
||||||
Usage: "Create a new Capsul virtual server",
|
|
||||||
ArgsUsage: "<name>",
|
|
||||||
Description: `
|
|
||||||
Create a new Capsul virtual server.
|
|
||||||
|
|
||||||
This command uses the uses the Capsul API bindings of your chosen instance to
|
capsulCreateURL := fmt.Sprintf("https://%s/api/capsul/create", internal.CapsulInstanceURL)
|
||||||
send a server creation request. You must already have an account on your chosen
|
|
||||||
Capsul instance before using this command.
|
|
||||||
|
|
||||||
Your token can be loaded from the environment using the CAPSUL_TOKEN
|
var sshKeys []string
|
||||||
environment variable or otherwise passing the "--env/-e" flag.
|
for _, sshKey := range c.StringSlice("capsul-ssh-keys") {
|
||||||
`,
|
if sshKey == "" {
|
||||||
Flags: []cli.Flag{
|
continue
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "instance",
|
|
||||||
Aliases: []string{"I"},
|
|
||||||
Usage: "Capsul instance",
|
|
||||||
Destination: &capsulInstance,
|
|
||||||
Value: "yolo.servers.coop",
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "type",
|
|
||||||
Aliases: []string{"t"},
|
|
||||||
Usage: "Server type",
|
|
||||||
Value: "f1-xs",
|
|
||||||
Destination: &capsulType,
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "image",
|
|
||||||
Aliases: []string{"i"},
|
|
||||||
Usage: "Image type",
|
|
||||||
Value: "debian10",
|
|
||||||
Destination: &capsulImage,
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "ssh-key",
|
|
||||||
Aliases: []string{"s"},
|
|
||||||
Usage: "SSH key",
|
|
||||||
Value: "",
|
|
||||||
Destination: &capsulSSHKey,
|
|
||||||
},
|
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "token",
|
|
||||||
Aliases: []string{"T"},
|
|
||||||
Usage: "Capsul instance API token",
|
|
||||||
EnvVars: []string{"CAPSUL_TOKEN"},
|
|
||||||
Destination: &capsulAPIToken,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Action: func(c *cli.Context) error {
|
|
||||||
capsulName := c.Args().First()
|
|
||||||
if capsulName == "" {
|
|
||||||
internal.ShowSubcommandHelpAndError(c, errors.New("no name provided"))
|
|
||||||
}
|
}
|
||||||
|
sshKeys = append(sshKeys, sshKey)
|
||||||
|
}
|
||||||
|
|
||||||
if capsulAPIToken == "" {
|
tableColumns := []string{"instance", "name", "type", "image", "ssh-keys"}
|
||||||
logrus.Fatal("Capsul API token is missing")
|
table := formatter.CreateTable(tableColumns)
|
||||||
}
|
table.Append([]string{
|
||||||
|
internal.CapsulInstanceURL,
|
||||||
|
internal.CapsulName,
|
||||||
|
internal.CapsulType,
|
||||||
|
internal.CapsulImage,
|
||||||
|
strings.Join(sshKeys, "\n"),
|
||||||
|
})
|
||||||
|
table.Render()
|
||||||
|
|
||||||
capsulCreateURL := fmt.Sprintf("https://%s/api/capsul/create", capsulInstance)
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "continue with capsul creation?",
|
||||||
|
}
|
||||||
|
|
||||||
capsulClient := libcapsul.New(capsulCreateURL, capsulAPIToken)
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
resp, err := capsulClient.Create(capsulName, capsulType, capsulImage, capsulSSHKey)
|
return err
|
||||||
if err != nil {
|
}
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
tableColumns := []string{"Name", "ID"}
|
if !response {
|
||||||
table := formatter.CreateTable(tableColumns)
|
logrus.Fatal("exiting as requested")
|
||||||
table.Append([]string{capsulName, resp.ID})
|
}
|
||||||
table.Render()
|
|
||||||
|
|
||||||
return nil
|
capsulClient := libcapsul.New(capsulCreateURL, internal.CapsulAPIToken)
|
||||||
},
|
resp, err := capsulClient.Create(
|
||||||
|
internal.CapsulName,
|
||||||
|
internal.CapsulType,
|
||||||
|
internal.CapsulImage,
|
||||||
|
sshKeys,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
Your new Capsul has successfully been created! Here are the details:
|
||||||
|
|
||||||
|
Capsul name: %s
|
||||||
|
Capsul ID: %v
|
||||||
|
|
||||||
|
You will need to log into your Capsul instance web interface to retrieve the IP
|
||||||
|
address. You can learn all about how to get SSH access to your new Capsul on:
|
||||||
|
|
||||||
|
%s/about-ssh
|
||||||
|
|
||||||
|
Please note, this server is not managed by Abra yet (i.e. "abra server ls" will
|
||||||
|
not list this server)! You will need to assign a domain name record ("abra
|
||||||
|
record new") and add the server to your Abra configuration ("abra server add")
|
||||||
|
to have a working server that you can deploy Co-op Cloud apps to.
|
||||||
|
`, internal.CapsulName, resp.ID, internal.CapsulInstanceURL))
|
||||||
|
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
var serverNewCommand = &cli.Command{
|
var serverNewCommand = &cli.Command{
|
||||||
@ -209,12 +179,58 @@ var serverNewCommand = &cli.Command{
|
|||||||
Aliases: []string{"n"},
|
Aliases: []string{"n"},
|
||||||
Usage: "Create a new server using a 3rd party provider",
|
Usage: "Create a new server using a 3rd party provider",
|
||||||
Description: `
|
Description: `
|
||||||
Use a provider plugin to create a new server which can then be used to house a
|
This command creates a new server via a 3rd party provider.
|
||||||
new Co-op Cloud installation.
|
|
||||||
|
The following providers are supported:
|
||||||
|
|
||||||
|
Capsul https://git.cyberia.club/Cyberia/capsul-flask
|
||||||
|
Hetzner Cloud https://docs.hetzner.com/cloud
|
||||||
|
|
||||||
|
You may invoke this command in "wizard" mode and be prompted for input:
|
||||||
|
|
||||||
|
abra record new
|
||||||
|
|
||||||
|
API tokens are read from the environment if specified, e.g.
|
||||||
|
|
||||||
|
export HCLOUD_TOKEN=...
|
||||||
|
|
||||||
|
Where "$provider_TOKEN" is the expected env var format.
|
||||||
`,
|
`,
|
||||||
ArgsUsage: "<provider>",
|
ArgsUsage: "<provider>",
|
||||||
Subcommands: []*cli.Command{
|
Flags: []cli.Flag{
|
||||||
serverNewHetznerCloudCommand,
|
internal.ServerProviderFlag,
|
||||||
serverNewCapsulCommand,
|
|
||||||
|
// Capsul
|
||||||
|
internal.CapsulInstanceURLFlag,
|
||||||
|
internal.CapsulTypeFlag,
|
||||||
|
internal.CapsulImageFlag,
|
||||||
|
internal.CapsulSSHKeysFlag,
|
||||||
|
internal.CapsulAPITokenFlag,
|
||||||
|
|
||||||
|
// Hetzner
|
||||||
|
internal.HetznerCloudNameFlag,
|
||||||
|
internal.HetznerCloudTypeFlag,
|
||||||
|
internal.HetznerCloudImageFlag,
|
||||||
|
internal.HetznerCloudSSHKeysFlag,
|
||||||
|
internal.HetznerCloudLocationFlag,
|
||||||
|
internal.HetznerCloudAPITokenFlag,
|
||||||
|
},
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
if err := internal.EnsureServerProvider(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
switch internal.ServerProvider {
|
||||||
|
case "capsul":
|
||||||
|
if err := newCapsulVPS(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
case "hetzner-cloud":
|
||||||
|
if err := newHetznerCloudVPS(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -1,29 +1,158 @@
|
|||||||
package server
|
package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/cli/internal"
|
"coopcloud.tech/abra/cli/internal"
|
||||||
"coopcloud.tech/abra/pkg/client"
|
"coopcloud.tech/abra/pkg/client"
|
||||||
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
"github.com/hetznercloud/hcloud-go/hcloud"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var serverRemoveCommand = &cli.Command{
|
var rmServer bool
|
||||||
Name: "remove",
|
var rmServerFlag = &cli.BoolFlag{
|
||||||
Aliases: []string{"rm"},
|
Name: "server",
|
||||||
Usage: "Remove a server",
|
Aliases: []string{"s"},
|
||||||
Description: `
|
Value: false,
|
||||||
This does not destroy the actual server. It simply removes it from Abra
|
Usage: "remove the actual server also",
|
||||||
internal bookkeeping so that it is not managed any more.
|
Destination: &rmServer,
|
||||||
`,
|
}
|
||||||
HideHelp: true,
|
|
||||||
Action: func(c *cli.Context) error {
|
|
||||||
domainName := internal.ValidateDomain(c)
|
|
||||||
|
|
||||||
if err := client.DeleteContext(domainName); err != nil {
|
func rmHetznerCloudVPS(c *cli.Context) error {
|
||||||
|
if internal.HetznerCloudName == "" && !internal.NoInput {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud VPS name",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &internal.HetznerCloudName); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if internal.HetznerCloudAPIToken == "" && !internal.NoInput {
|
||||||
|
token, ok := os.LookupEnv("HCLOUD_TOKEN")
|
||||||
|
if !ok {
|
||||||
|
prompt := &survey.Input{
|
||||||
|
Message: "specify hetzner cloud API token",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &internal.HetznerCloudAPIToken); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
internal.HetznerCloudAPIToken = token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
client := hcloud.NewClient(hcloud.WithToken(internal.HetznerCloudAPIToken))
|
||||||
|
|
||||||
|
server, _, err := client.Server.Get(c.Context, internal.HetznerCloudName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if server == nil {
|
||||||
|
logrus.Fatalf("library provider reports that %s doesn't exist?", internal.HetznerCloudName)
|
||||||
|
}
|
||||||
|
|
||||||
|
fmt.Println(fmt.Sprintf(`
|
||||||
|
You have requested that Abra delete the following server (%s). Please be
|
||||||
|
absolutely sure that this is indeed the server that you would like to have
|
||||||
|
removed. There will be no going back once you confirm, the server will be
|
||||||
|
destroyed.
|
||||||
|
`, server.Name))
|
||||||
|
|
||||||
|
tableColumns := []string{"name", "type", "image", "location"}
|
||||||
|
table := formatter.CreateTable(tableColumns)
|
||||||
|
table.Append([]string{
|
||||||
|
server.Name,
|
||||||
|
server.ServerType.Name,
|
||||||
|
server.Image.Name,
|
||||||
|
server.Datacenter.Name,
|
||||||
|
})
|
||||||
|
table.Render()
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "continue with hetzner cloud VPS removal?",
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = client.Server.Delete(c.Context, server)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("%s has been deleted from your hetzner cloud account", internal.HetznerCloudName)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
var serverRemoveCommand = &cli.Command{
|
||||||
|
Name: "remove",
|
||||||
|
Aliases: []string{"rm"},
|
||||||
|
ArgsUsage: "<server>",
|
||||||
|
Usage: "Remove a managed server",
|
||||||
|
Description: `
|
||||||
|
This command removes a server from Abra management.
|
||||||
|
|
||||||
|
Depending on whether you used a 3rd party provider to create this server ("abra
|
||||||
|
server new"), you can also destroy the virtual server as well. Pass
|
||||||
|
"--server/-s" to tell Abra to try to delete this VPS.
|
||||||
|
|
||||||
|
Otherwise, Abra will remove the internal bookkeeping (~/.abra/servers/...) and
|
||||||
|
underlying client connection context. This server will then be lost in time,
|
||||||
|
like tears in rain.
|
||||||
|
`,
|
||||||
|
Flags: []cli.Flag{
|
||||||
|
rmServerFlag,
|
||||||
|
|
||||||
|
// Hetzner
|
||||||
|
internal.HetznerCloudNameFlag,
|
||||||
|
internal.HetznerCloudAPITokenFlag,
|
||||||
|
},
|
||||||
|
Action: func(c *cli.Context) error {
|
||||||
|
serverName, err := internal.ValidateServer(c)
|
||||||
|
if err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("server at '%s' has been forgotten", domainName)
|
if rmServer {
|
||||||
|
if err := internal.EnsureServerProvider(); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
switch internal.ServerProvider {
|
||||||
|
case "capsul":
|
||||||
|
logrus.Warn("capsul provider does not support automatic removal yet, sorry!")
|
||||||
|
case "hetzner-cloud":
|
||||||
|
if err := rmHetznerCloudVPS(c); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := client.DeleteContext(serverName); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := os.RemoveAll(filepath.Join(config.ABRA_SERVER_FOLDER, serverName)); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("server at '%s' has been lost in time, like tears in rain", serverName)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
},
|
},
|
||||||
|
@ -10,15 +10,16 @@ var ServerCommand = &cli.Command{
|
|||||||
Aliases: []string{"s"},
|
Aliases: []string{"s"},
|
||||||
Usage: "Manage servers via 3rd party providers",
|
Usage: "Manage servers via 3rd party providers",
|
||||||
Description: `
|
Description: `
|
||||||
Manage the lifecycle of a server.
|
These commands support creating, managing and removing servers using 3rd party
|
||||||
|
integrations.
|
||||||
|
|
||||||
These commands support creating new servers using 3rd party integrations,
|
Servers can be created from scratch using the "abra server new" command. If you
|
||||||
initialising existing servers to support Co-op Cloud deployments and managing
|
already have a server, you can add it to your configuration using "abra server
|
||||||
the connections to those servers.
|
add". Abra can provision servers so that they are ready to deploy Co-op Cloud
|
||||||
|
apps, see available flags on "server add" for more.
|
||||||
`,
|
`,
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
serverNewCommand,
|
serverNewCommand,
|
||||||
serverInitCommand,
|
|
||||||
serverAddCommand,
|
serverAddCommand,
|
||||||
serverListCommand,
|
serverListCommand,
|
||||||
serverRemoveCommand,
|
serverRemoveCommand,
|
||||||
|
@ -8,12 +8,24 @@ import (
|
|||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var RC bool
|
||||||
|
var RCFlag = &cli.BoolFlag{
|
||||||
|
Name: "rc",
|
||||||
|
Value: false,
|
||||||
|
Destination: &RC,
|
||||||
|
Usage: "Insatll the latest Release Candidate",
|
||||||
|
}
|
||||||
|
|
||||||
// UpgradeCommand upgrades abra in-place.
|
// UpgradeCommand upgrades abra in-place.
|
||||||
var UpgradeCommand = &cli.Command{
|
var UpgradeCommand = &cli.Command{
|
||||||
Name: "upgrade",
|
Name: "upgrade",
|
||||||
Usage: "Upgrade abra",
|
Usage: "Upgrade abra",
|
||||||
|
Flags: []cli.Flag{RCFlag},
|
||||||
Action: func(c *cli.Context) error {
|
Action: func(c *cli.Context) error {
|
||||||
cmd := exec.Command("bash", "-c", "curl -s https://install.abra.coopcloud.tech | bash")
|
cmd := exec.Command("bash", "-c", "curl -s https://install.abra.coopcloud.tech | bash")
|
||||||
|
if RC {
|
||||||
|
cmd = exec.Command("bash", "-c", "curl -s https://git.coopcloud.tech/coop-cloud/abra/raw/branch/main/scripts/installer/installer | bash -s -- --rc")
|
||||||
|
}
|
||||||
logrus.Debugf("attempting to run '%s'", cmd)
|
logrus.Debugf("attempting to run '%s'", cmd)
|
||||||
if err := internal.RunCmd(cmd); err != nil {
|
if err := internal.RunCmd(cmd); err != nil {
|
||||||
logrus.Fatal(err)
|
logrus.Fatal(err)
|
||||||
|
19
go.mod
19
go.mod
@ -3,17 +3,17 @@ module coopcloud.tech/abra
|
|||||||
go 1.16
|
go 1.16
|
||||||
|
|
||||||
require (
|
require (
|
||||||
coopcloud.tech/tagcmp v0.0.0-20211011140827-4f27c74467eb
|
coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52
|
||||||
github.com/AlecAivazis/survey/v2 v2.3.1
|
github.com/AlecAivazis/survey/v2 v2.3.2
|
||||||
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4
|
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4
|
||||||
github.com/Gurpartap/logrus-stack v0.0.0-20170710170904-89c00d8a28f4
|
github.com/Gurpartap/logrus-stack v0.0.0-20170710170904-89c00d8a28f4
|
||||||
github.com/docker/cli v20.10.8+incompatible
|
github.com/docker/cli v20.10.11+incompatible
|
||||||
github.com/docker/distribution v2.7.1+incompatible
|
github.com/docker/distribution v2.7.1+incompatible
|
||||||
github.com/docker/docker v20.10.8+incompatible
|
github.com/docker/docker v20.10.11+incompatible
|
||||||
github.com/docker/go-units v0.4.0
|
github.com/docker/go-units v0.4.0
|
||||||
github.com/go-git/go-git/v5 v5.4.2
|
github.com/go-git/go-git/v5 v5.4.2
|
||||||
github.com/hetznercloud/hcloud-go v1.32.0
|
github.com/hetznercloud/hcloud-go v1.33.1
|
||||||
github.com/moby/sys/signal v0.5.0
|
github.com/moby/sys/signal v0.6.0
|
||||||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6
|
||||||
github.com/olekukonko/tablewriter v0.0.5
|
github.com/olekukonko/tablewriter v0.0.5
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
@ -25,14 +25,16 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
coopcloud.tech/libcapsul v0.0.0-20211020153234-f1386b5cf79d
|
coopcloud.tech/libcapsul v0.0.0-20211022074848-c35e78fe3f3e
|
||||||
github.com/Microsoft/hcsshim v0.8.21 // indirect
|
github.com/Microsoft/hcsshim v0.8.21 // indirect
|
||||||
github.com/containerd/containerd v1.5.5 // indirect
|
github.com/containerd/containerd v1.5.5 // indirect
|
||||||
github.com/docker/docker-credential-helpers v0.6.4 // indirect
|
github.com/docker/docker-credential-helpers v0.6.4 // indirect
|
||||||
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
|
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
|
||||||
github.com/fvbommel/sortorder v1.0.2 // indirect
|
github.com/fvbommel/sortorder v1.0.2 // indirect
|
||||||
|
github.com/gliderlabs/ssh v0.3.3
|
||||||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
|
||||||
github.com/gorilla/mux v1.8.0 // indirect
|
github.com/gorilla/mux v1.8.0 // indirect
|
||||||
|
github.com/kevinburke/ssh_config v1.1.0
|
||||||
github.com/libdns/gandi v1.0.2
|
github.com/libdns/gandi v1.0.2
|
||||||
github.com/libdns/libdns v0.2.1
|
github.com/libdns/libdns v0.2.1
|
||||||
github.com/moby/sys/mount v0.2.0 // indirect
|
github.com/moby/sys/mount v0.2.0 // indirect
|
||||||
@ -40,5 +42,6 @@ require (
|
|||||||
github.com/opencontainers/runc v1.0.2 // indirect
|
github.com/opencontainers/runc v1.0.2 // indirect
|
||||||
github.com/theupdateframework/notary v0.7.0 // indirect
|
github.com/theupdateframework/notary v0.7.0 // indirect
|
||||||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
|
||||||
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
|
||||||
|
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359
|
||||||
)
|
)
|
||||||
|
41
go.sum
41
go.sum
@ -21,13 +21,13 @@ cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIA
|
|||||||
cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
|
cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw=
|
||||||
cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=
|
cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos=
|
||||||
cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
|
cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
|
||||||
coopcloud.tech/libcapsul v0.0.0-20211020153234-f1386b5cf79d h1:5A69AFx2BP5J43Y9SaB9LlAIMLr2SWqbzfgjUh8sgKM=
|
coopcloud.tech/libcapsul v0.0.0-20211022074848-c35e78fe3f3e h1:o5OZInc5b9esiN4hlfjZY6u0r+qB2iSv/11jnMGuR38=
|
||||||
coopcloud.tech/libcapsul v0.0.0-20211020153234-f1386b5cf79d/go.mod h1:HEQ9pSJRsDKabMxPfYCCzpVpAreLoC4Gh4SkVyOaKvk=
|
coopcloud.tech/libcapsul v0.0.0-20211022074848-c35e78fe3f3e/go.mod h1:HEQ9pSJRsDKabMxPfYCCzpVpAreLoC4Gh4SkVyOaKvk=
|
||||||
coopcloud.tech/tagcmp v0.0.0-20211011140827-4f27c74467eb h1:Jf+Dnna2kXcNQvcA5JMp6d2Uyvg2pIVJfip9+X5FrH0=
|
coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52 h1:cyFFOl0tKe+dVHt8saejG8xoff33eQiHxFCVzRpPUjM=
|
||||||
coopcloud.tech/tagcmp v0.0.0-20211011140827-4f27c74467eb/go.mod h1:ESVm0wQKcbcFi06jItF3rI7enf4Jt2PvbkWpDDHk1DQ=
|
coopcloud.tech/tagcmp v0.0.0-20211103052201-885b22f77d52/go.mod h1:ESVm0wQKcbcFi06jItF3rI7enf4Jt2PvbkWpDDHk1DQ=
|
||||||
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
|
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
|
||||||
github.com/AlecAivazis/survey/v2 v2.3.1 h1:lzkuHA60pER7L4eYL8qQJor4bUWlJe4V0gqAT19tdOA=
|
github.com/AlecAivazis/survey/v2 v2.3.2 h1:TqTB+aDDCLYhf9/bD2TwSO8u8jDSmMUd2SUVO4gCnU8=
|
||||||
github.com/AlecAivazis/survey/v2 v2.3.1/go.mod h1:TH2kPCDU3Kqq7pLbnCWwZXDBjnhZtmsCle5EiYDJ2fg=
|
github.com/AlecAivazis/survey/v2 v2.3.2/go.mod h1:TH2kPCDU3Kqq7pLbnCWwZXDBjnhZtmsCle5EiYDJ2fg=
|
||||||
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4 h1:aYUdiI42a4fWfPoUr25XlaJrFEICv24+o/gWhqYS/jk=
|
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4 h1:aYUdiI42a4fWfPoUr25XlaJrFEICv24+o/gWhqYS/jk=
|
||||||
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4/go.mod h1:oZRCMMRS318l07ei4DTqbZoOawfJlJ4yyo8juk2v4Rk=
|
github.com/Autonomic-Cooperative/godotenv v1.3.1-0.20210731170023-c37c0920d1a4/go.mod h1:oZRCMMRS318l07ei4DTqbZoOawfJlJ4yyo8juk2v4Rk=
|
||||||
github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc=
|
github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc=
|
||||||
@ -88,8 +88,9 @@ github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRF
|
|||||||
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
|
github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
|
||||||
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
|
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
|
||||||
github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0=
|
github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0=
|
||||||
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239 h1:kFOfPq6dUM1hTo4JG6LR5AXSUEsOjtdm0kw0FtQtMJA=
|
|
||||||
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
|
github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c=
|
||||||
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=
|
||||||
|
github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4=
|
||||||
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
|
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
|
||||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
|
||||||
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
|
||||||
@ -259,14 +260,14 @@ github.com/dgrijalva/jwt-go v0.0.0-20170104182250-a601269ab70c/go.mod h1:E3ru+11
|
|||||||
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
|
||||||
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
|
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no=
|
||||||
github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E=
|
github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E=
|
||||||
github.com/docker/cli v20.10.8+incompatible h1:/zO/6y9IOpcehE49yMRTV9ea0nBpb8OeqSskXLNfH1E=
|
github.com/docker/cli v20.10.11+incompatible h1:tXU1ezXcruZQRrMP8RN2z9N91h+6egZTS1gsPsKantc=
|
||||||
github.com/docker/cli v20.10.8+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
|
github.com/docker/cli v20.10.11+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
|
||||||
github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY=
|
github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY=
|
||||||
github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/distribution v2.7.1+incompatible h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=
|
github.com/docker/distribution v2.7.1+incompatible h1:a5mlkVzth6W5A4fOsS3D2EO5BUmsJpcB+cRlLU7cSug=
|
||||||
github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w=
|
||||||
github.com/docker/docker v20.10.8+incompatible h1:RVqD337BgQicVCzYrrlhLDWhq6OAD2PJDUg2LsEUvKM=
|
github.com/docker/docker v20.10.11+incompatible h1:OqzI/g/W54LczvhnccGqniFoQghHx3pklbLuhfXpqGo=
|
||||||
github.com/docker/docker v20.10.8+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
|
github.com/docker/docker v20.10.11+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
|
||||||
github.com/docker/docker-credential-helpers v0.6.4 h1:axCks+yV+2MR3/kZhAmy07yC56WZ2Pwu/fKWtKuZB0o=
|
github.com/docker/docker-credential-helpers v0.6.4 h1:axCks+yV+2MR3/kZhAmy07yC56WZ2Pwu/fKWtKuZB0o=
|
||||||
github.com/docker/docker-credential-helpers v0.6.4/go.mod h1:ofX3UI0Gz1TteYBjtgs07O36Pyasyp66D2uKT7H8W1c=
|
github.com/docker/docker-credential-helpers v0.6.4/go.mod h1:ofX3UI0Gz1TteYBjtgs07O36Pyasyp66D2uKT7H8W1c=
|
||||||
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0=
|
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c h1:lzqkGL9b3znc+ZUgi7FlLnqjQhcXxkNM/quxIjBVMD0=
|
||||||
@ -314,8 +315,9 @@ github.com/fvbommel/sortorder v1.0.2/go.mod h1:uk88iVf1ovNn1iLfgUVU2F9o5eO30ui72
|
|||||||
github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY=
|
github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY=
|
||||||
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
|
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
|
||||||
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
|
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
|
||||||
github.com/gliderlabs/ssh v0.2.2 h1:6zsha5zo/TWhRhwqCD3+EarCAgZ2yN28ipRnGPnwkI0=
|
|
||||||
github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0=
|
github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0=
|
||||||
|
github.com/gliderlabs/ssh v0.3.3 h1:mBQ8NiOgDkINJrZtoizkC3nDNYgSaWtxyem6S2XHBtA=
|
||||||
|
github.com/gliderlabs/ssh v0.3.3/go.mod h1:ZSS+CUoKHDrqVakTfTWUlKSr9MtMFkC4UvtQKD7O914=
|
||||||
github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4=
|
github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4=
|
||||||
github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E=
|
github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E=
|
||||||
github.com/go-git/go-billy/v5 v5.2.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0=
|
github.com/go-git/go-billy/v5 v5.2.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0=
|
||||||
@ -448,8 +450,8 @@ github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ
|
|||||||
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
|
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
|
||||||
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
|
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
|
||||||
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
|
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
|
||||||
github.com/hetznercloud/hcloud-go v1.32.0 h1:7zyN2V7hMlhm3HZdxOarmOtvzKvkcYKjM0hcwYMQZz0=
|
github.com/hetznercloud/hcloud-go v1.33.1 h1:W1HdO2bRLTKU4WsyqAasDSpt54fYO4WNckWYfH5AuCQ=
|
||||||
github.com/hetznercloud/hcloud-go v1.32.0/go.mod h1:XX/TQub3ge0yWR2yHWmnDVIrB+MQbda1pHxkUmDlUME=
|
github.com/hetznercloud/hcloud-go v1.33.1/go.mod h1:XX/TQub3ge0yWR2yHWmnDVIrB+MQbda1pHxkUmDlUME=
|
||||||
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174 h1:WlZsjVhE8Af9IcZDGgJGQpNflI3+MJSBhsgT5PCtzBQ=
|
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174 h1:WlZsjVhE8Af9IcZDGgJGQpNflI3+MJSBhsgT5PCtzBQ=
|
||||||
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174/go.mod h1:DqJ97dSdRW1W22yXSB90986pcOyQ7r45iio1KN2ez1A=
|
github.com/hinshun/vt10x v0.0.0-20180616224451-1954e6464174/go.mod h1:DqJ97dSdRW1W22yXSB90986pcOyQ7r45iio1KN2ez1A=
|
||||||
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
|
||||||
@ -488,8 +490,9 @@ github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8
|
|||||||
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw=
|
github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw=
|
||||||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs=
|
||||||
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
|
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8=
|
||||||
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 h1:DowS9hvgyYSX4TO5NpyC606/Z4SxnNYbT+WX27or6Ck=
|
|
||||||
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
|
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
|
||||||
|
github.com/kevinburke/ssh_config v1.1.0 h1:pH/t1WS9NzT8go394IqZeJTMHVm6Cr6ZJ6AQ+mdNo/o=
|
||||||
|
github.com/kevinburke/ssh_config v1.1.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
|
||||||
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
|
github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
|
||||||
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
|
github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
|
||||||
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
||||||
@ -562,8 +565,8 @@ github.com/moby/sys/mount v0.2.0/go.mod h1:aAivFE2LB3W4bACsUXChRHQ0qKWsetY4Y9V7s
|
|||||||
github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A=
|
github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A=
|
||||||
github.com/moby/sys/mountinfo v0.4.1 h1:1O+1cHA1aujwEwwVMa2Xm2l+gIpUHyd3+D+d7LZh1kM=
|
github.com/moby/sys/mountinfo v0.4.1 h1:1O+1cHA1aujwEwwVMa2Xm2l+gIpUHyd3+D+d7LZh1kM=
|
||||||
github.com/moby/sys/mountinfo v0.4.1/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A=
|
github.com/moby/sys/mountinfo v0.4.1/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A=
|
||||||
github.com/moby/sys/signal v0.5.0 h1:MzpEFrMxugDynb1gkTIThU1O3wEmrAkOY+G9dHcHnCc=
|
github.com/moby/sys/signal v0.6.0 h1:aDpY94H8VlhTGa9sNYUFCFsMZIUh5wm0B6XkIoJj/iY=
|
||||||
github.com/moby/sys/signal v0.5.0/go.mod h1:JwObcMnOrUy2VTP5swPKWwywH0Mbgk8Y5qua9iwtIRM=
|
github.com/moby/sys/signal v0.6.0/go.mod h1:GQ6ObYZfqacOwTtlXvcmh9A26dVRul/hbOZn88Kg8Tg=
|
||||||
github.com/moby/sys/symlink v0.1.0/go.mod h1:GGDODQmbFOjFsXvfLVn3+ZRxkch54RkSiGqsZeMYowQ=
|
github.com/moby/sys/symlink v0.1.0/go.mod h1:GGDODQmbFOjFsXvfLVn3+ZRxkch54RkSiGqsZeMYowQ=
|
||||||
github.com/moby/term v0.0.0-20200312100748-672ec06f55cd/go.mod h1:DdlQx2hp0Ss5/fLikoLlEeIYiATotOjgB//nb973jeo=
|
github.com/moby/term v0.0.0-20200312100748-672ec06f55cd/go.mod h1:DdlQx2hp0Ss5/fLikoLlEeIYiATotOjgB//nb973jeo=
|
||||||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 h1:dcztxKSvZ4Id8iPpHERQBbIJfabdt4wUm5qy3wOL2Zc=
|
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 h1:dcztxKSvZ4Id8iPpHERQBbIJfabdt4wUm5qy3wOL2Zc=
|
||||||
@ -819,6 +822,7 @@ golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPh
|
|||||||
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
||||||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
||||||
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
||||||
|
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ=
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 h1:HWj/xjIHfjYU5nVXpTM0s39J9CbLn7Cc5a7IC5rwsMQ=
|
||||||
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||||
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
|
||||||
@ -971,8 +975,9 @@ golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBc
|
|||||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0 h1:xrCZDmdtoloIiooiA9q0OQb9r8HejIHYoHGhGCe1pGg=
|
|
||||||
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 h1:2B5p2L5IfGiD7+b9BOoRMC6DgObAVZV+Fsp050NqXik=
|
||||||
|
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||||
golang.org/x/term v0.0.0-20210503060354-a79de5458b56/go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY=
|
golang.org/x/term v0.0.0-20210503060354-a79de5458b56/go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY=
|
||||||
|
@ -5,8 +5,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
apiclient "github.com/docker/docker/client"
|
apiclient "github.com/docker/docker/client"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
IMPORTANT POINT ABOUT CONTEXTS
|
|
||||||
|
|
||||||
Please use context names starting with `testContext` for testing purposes to ensure that no data is lost. such as `testContext`, `testContext2`, `testContextFail` etc
|
|
||||||
|
|
@ -6,7 +6,8 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/docker/cli/cli/connhelper"
|
contextPkg "coopcloud.tech/abra/pkg/context"
|
||||||
|
commandconnPkg "coopcloud.tech/abra/pkg/upstream/commandconn"
|
||||||
"github.com/docker/docker/client"
|
"github.com/docker/docker/client"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
@ -15,24 +16,23 @@ import (
|
|||||||
func New(contextName string) (*client.Client, error) {
|
func New(contextName string) (*client.Client, error) {
|
||||||
var clientOpts []client.Opt
|
var clientOpts []client.Opt
|
||||||
|
|
||||||
clientOpts = append(clientOpts, client.WithTimeout(3*time.Second))
|
|
||||||
|
|
||||||
if contextName != "default" {
|
if contextName != "default" {
|
||||||
context, err := GetContext(contextName)
|
context, err := GetContext(contextName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
ctxEndpoint, err := GetContextEndpoint(context)
|
ctxEndpoint, err := contextPkg.GetContextEndpoint(context)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
helper := newConnectionHelper(ctxEndpoint)
|
helper := commandconnPkg.NewConnectionHelper(ctxEndpoint)
|
||||||
httpClient := &http.Client{
|
httpClient := &http.Client{
|
||||||
// No tls, no proxy
|
// No tls, no proxy
|
||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
DialContext: helper.Dialer,
|
DialContext: helper.Dialer,
|
||||||
|
IdleConnTimeout: 30 * time.Second,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -59,11 +59,3 @@ func New(contextName string) (*client.Client, error) {
|
|||||||
|
|
||||||
return cl, nil
|
return cl, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func newConnectionHelper(daemonURL string) *connhelper.ConnectionHelper {
|
|
||||||
helper, err := connhelper.GetConnectionHelper(daemonURL)
|
|
||||||
if err != nil {
|
|
||||||
logrus.Fatal(err)
|
|
||||||
}
|
|
||||||
return helper
|
|
||||||
}
|
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
package client_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
)
|
|
||||||
|
|
||||||
// use at the start to ensure testContext[0, 1, ..., amnt-1] exist and
|
|
||||||
// testContextFail[0, 1, ..., failAmnt-1] don't exist
|
|
||||||
func ensureTestState(amnt, failAmnt int) error {
|
|
||||||
for i := 0; i < amnt; i++ {
|
|
||||||
err := client.CreateContext(fmt.Sprintf("testContext%d", i), "", "")
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for i := 0; i < failAmnt; i++ {
|
|
||||||
if _, er := client.GetContext(fmt.Sprintf("testContextFail%d", i)); er == nil {
|
|
||||||
err := client.DeleteContext(fmt.Sprintf("testContextFail%d", i))
|
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestNew(t *testing.T) {
|
|
||||||
err := ensureTestState(1, 1)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Couldn't ensure existence/nonexistence of contexts: %s", err)
|
|
||||||
}
|
|
||||||
contextName := "testContext0"
|
|
||||||
_, err = client.New(contextName)
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("couldn't initialise a new client with context %s: %s", contextName, err)
|
|
||||||
}
|
|
||||||
contextName = "testContextFail0"
|
|
||||||
_, err = client.New(contextName)
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("client.New(\"testContextFail0\") should have failed but didn't return an error")
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,191 +0,0 @@
|
|||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
https://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
Copyright 2013-2017 Docker, Inc.
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
https://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.
|
|
@ -1,7 +0,0 @@
|
|||||||
# github.com/docker/cli/cli/command/container
|
|
||||||
|
|
||||||
Due to this literally just being copy-pasted from the lib, the Apache license
|
|
||||||
will be posted in this folder. Small edits to the source code have been to
|
|
||||||
function names and parts we don't need deleted.
|
|
||||||
|
|
||||||
Same vibe as [../convert](../convert).
|
|
@ -4,15 +4,11 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
command "github.com/docker/cli/cli/command"
|
"coopcloud.tech/abra/pkg/context"
|
||||||
|
commandconnPkg "coopcloud.tech/abra/pkg/upstream/commandconn"
|
||||||
dConfig "github.com/docker/cli/cli/config"
|
dConfig "github.com/docker/cli/cli/config"
|
||||||
context "github.com/docker/cli/cli/context"
|
|
||||||
"github.com/docker/cli/cli/context/docker"
|
"github.com/docker/cli/cli/context/docker"
|
||||||
contextStore "github.com/docker/cli/cli/context/store"
|
contextStore "github.com/docker/cli/cli/context/store"
|
||||||
dCliContextStore "github.com/docker/cli/cli/context/store"
|
|
||||||
cliflags "github.com/docker/cli/cli/flags"
|
|
||||||
dClient "github.com/docker/docker/client"
|
|
||||||
"github.com/moby/term"
|
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -36,7 +32,7 @@ func CreateContext(contextName string, user string, port string) error {
|
|||||||
|
|
||||||
// createContext interacts with Docker Context to create a Docker context config
|
// createContext interacts with Docker Context to create a Docker context config
|
||||||
func createContext(name string, host string) error {
|
func createContext(name string, host string) error {
|
||||||
s := NewDefaultDockerContextStore()
|
s := context.NewDefaultDockerContextStore()
|
||||||
contextMetadata := contextStore.Metadata{
|
contextMetadata := contextStore.Metadata{
|
||||||
Endpoints: make(map[string]interface{}),
|
Endpoints: make(map[string]interface{}),
|
||||||
Name: name,
|
Name: name,
|
||||||
@ -46,7 +42,7 @@ func createContext(name string, host string) error {
|
|||||||
Endpoints: make(map[string]contextStore.EndpointTLSData),
|
Endpoints: make(map[string]contextStore.EndpointTLSData),
|
||||||
}
|
}
|
||||||
|
|
||||||
dockerEP, dockerTLS, err := getDockerEndpointMetadataAndTLS(host)
|
dockerEP, dockerTLS, err := commandconnPkg.GetDockerEndpointMetadataAndTLS(host)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -84,73 +80,14 @@ func DeleteContext(name string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return NewDefaultDockerContextStore().Remove(name)
|
return context.NewDefaultDockerContextStore().Remove(name)
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetContext(contextName string) (contextStore.Metadata, error) {
|
func GetContext(contextName string) (contextStore.Metadata, error) {
|
||||||
ctx, err := NewDefaultDockerContextStore().GetMetadata(contextName)
|
ctx, err := context.NewDefaultDockerContextStore().GetMetadata(contextName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return contextStore.Metadata{}, err
|
return contextStore.Metadata{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return ctx, nil
|
return ctx, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetContextEndpoint(ctx contextStore.Metadata) (string, error) {
|
|
||||||
endpointmeta, ok := ctx.Endpoints["docker"].(context.EndpointMetaBase)
|
|
||||||
if !ok {
|
|
||||||
err := errors.New("context lacks Docker endpoint")
|
|
||||||
return "", err
|
|
||||||
}
|
|
||||||
return endpointmeta.Host, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func newContextStore(dir string, config contextStore.Config) contextStore.Store {
|
|
||||||
return contextStore.New(dir, config)
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewDefaultDockerContextStore() *command.ContextStoreWithDefault {
|
|
||||||
_, _, stderr := term.StdStreams()
|
|
||||||
dockerConfig := dConfig.LoadDefaultConfigFile(stderr)
|
|
||||||
contextDir := dConfig.ContextStoreDir()
|
|
||||||
storeConfig := command.DefaultContextStoreConfig()
|
|
||||||
store := newContextStore(contextDir, storeConfig)
|
|
||||||
|
|
||||||
opts := &cliflags.CommonOptions{Context: "default"}
|
|
||||||
|
|
||||||
dockerContextStore := &command.ContextStoreWithDefault{
|
|
||||||
Store: store,
|
|
||||||
Resolver: func() (*command.DefaultContext, error) {
|
|
||||||
return command.ResolveDefaultContext(opts, dockerConfig, storeConfig, stderr)
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
return dockerContextStore
|
|
||||||
}
|
|
||||||
|
|
||||||
func getDockerEndpointMetadataAndTLS(host string) (docker.EndpointMeta, *dCliContextStore.EndpointTLSData, error) {
|
|
||||||
ep, err := getDockerEndpoint(host)
|
|
||||||
if err != nil {
|
|
||||||
return docker.EndpointMeta{}, nil, err
|
|
||||||
}
|
|
||||||
return ep.EndpointMeta, ep.TLSData.ToStoreTLSData(), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func getDockerEndpoint(host string) (docker.Endpoint, error) {
|
|
||||||
skipTLSVerify := false
|
|
||||||
ep := docker.Endpoint{
|
|
||||||
EndpointMeta: docker.EndpointMeta{
|
|
||||||
Host: host,
|
|
||||||
SkipTLSVerify: skipTLSVerify,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
// try to resolve a docker client, validating the configuration
|
|
||||||
opts, err := ep.ClientOpts()
|
|
||||||
if err != nil {
|
|
||||||
return docker.Endpoint{}, err
|
|
||||||
}
|
|
||||||
if _, err := dClient.NewClientWithOpts(opts...); err != nil {
|
|
||||||
return docker.Endpoint{}, err
|
|
||||||
}
|
|
||||||
return ep, nil
|
|
||||||
}
|
|
||||||
|
@ -1,80 +0,0 @@
|
|||||||
package client_test
|
|
||||||
|
|
||||||
import (
|
|
||||||
"testing"
|
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/client"
|
|
||||||
dContext "github.com/docker/cli/cli/context"
|
|
||||||
dCliContextStore "github.com/docker/cli/cli/context/store"
|
|
||||||
)
|
|
||||||
|
|
||||||
type TestContext struct {
|
|
||||||
context dCliContextStore.Metadata
|
|
||||||
expected_endpoint string
|
|
||||||
}
|
|
||||||
|
|
||||||
func dockerContext(host, key string) TestContext {
|
|
||||||
dockerContext := dCliContextStore.Metadata{
|
|
||||||
Name: "foo",
|
|
||||||
Metadata: nil,
|
|
||||||
Endpoints: map[string]interface{}{
|
|
||||||
key: dContext.EndpointMetaBase{
|
|
||||||
Host: host,
|
|
||||||
SkipTLSVerify: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
return TestContext{
|
|
||||||
context: dockerContext,
|
|
||||||
expected_endpoint: host,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCreateContext(t *testing.T) {
|
|
||||||
err := client.CreateContext("testContext0", "wronguser", "wrongport")
|
|
||||||
if err == nil {
|
|
||||||
t.Error("client.CreateContext(\"testContextCreate\", \"wronguser\", \"wrongport\") should have failed but didn't return an error")
|
|
||||||
}
|
|
||||||
err = client.CreateContext("testContext0", "", "")
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("Couldn't create context: %s", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestDeleteContext(t *testing.T) {
|
|
||||||
ensureTestState(1, 1)
|
|
||||||
err := client.DeleteContext("default")
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("client.DeleteContext(\"default\") should have failed but didn't return an error")
|
|
||||||
}
|
|
||||||
|
|
||||||
err = client.DeleteContext("testContext0")
|
|
||||||
if err != nil {
|
|
||||||
t.Errorf("client.DeleteContext(\"testContext0\") failed: %s", err)
|
|
||||||
}
|
|
||||||
err = client.DeleteContext("testContextFail0")
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("client.DeleteContext(\"testContextFail0\") should have failed (attempt to delete non-existent context) but didn't return an error")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestGetContextEndpoint(t *testing.T) {
|
|
||||||
var testDockerContexts = []TestContext{
|
|
||||||
dockerContext("ssh://foobar", "docker"),
|
|
||||||
dockerContext("ssh://foobar", "k8"),
|
|
||||||
}
|
|
||||||
for _, context := range testDockerContexts {
|
|
||||||
endpoint, err := client.GetContextEndpoint(context.context)
|
|
||||||
if err != nil {
|
|
||||||
if err.Error() != "context lacks Docker endpoint" {
|
|
||||||
t.Error(err)
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if endpoint != context.expected_endpoint {
|
|
||||||
t.Errorf("did not get correct context endpoint. Expected: %s, received: %s", context.expected_endpoint, endpoint)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,191 +0,0 @@
|
|||||||
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
https://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
Copyright 2013-2017 Docker, Inc.
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
https://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.
|
|
@ -1,10 +0,0 @@
|
|||||||
# github.com/docker/cli/cli/compose/convert
|
|
||||||
|
|
||||||
DISCLAIMER: This is like the entire `github.com/docker/cli/cli/compose/convert`
|
|
||||||
package. This should be an easy import but importing it creates DEPENDENCY
|
|
||||||
HELL. I tried for an hour to fix it but it would work. TRY TO FIX AT YOUR OWN
|
|
||||||
RISK!!!
|
|
||||||
|
|
||||||
Due to this literally just being copy-pasted from the lib, the Apache license
|
|
||||||
will be posted in this folder. Small edits to the source code have been to
|
|
||||||
function names and parts we don't need deleted.
|
|
@ -7,9 +7,9 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
loader "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
|
loader "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
composetypes "github.com/docker/cli/cli/compose/types"
|
composetypes "github.com/docker/cli/cli/compose/types"
|
||||||
"github.com/docker/distribution/reference"
|
"github.com/docker/distribution/reference"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
@ -117,8 +117,11 @@ func UpdateLabel(pattern, serviceName, label, recipeName string) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
discovered := false
|
||||||
for oldLabel, value := range service.Deploy.Labels {
|
for oldLabel, value := range service.Deploy.Labels {
|
||||||
if strings.HasPrefix(oldLabel, "coop-cloud") {
|
if strings.HasPrefix(oldLabel, "coop-cloud") {
|
||||||
|
discovered = true
|
||||||
|
|
||||||
bytes, err := ioutil.ReadFile(composeFile)
|
bytes, err := ioutil.ReadFile(composeFile)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -127,13 +130,19 @@ func UpdateLabel(pattern, serviceName, label, recipeName string) error {
|
|||||||
old := fmt.Sprintf("coop-cloud.${STACK_NAME}.version=%s", value)
|
old := fmt.Sprintf("coop-cloud.${STACK_NAME}.version=%s", value)
|
||||||
replacedBytes := strings.Replace(string(bytes), old, label, -1)
|
replacedBytes := strings.Replace(string(bytes), old, label, -1)
|
||||||
|
|
||||||
logrus.Debugf("updating '%s' to '%s' in '%s'", old, label, compose.Filename)
|
logrus.Debugf("updating %s to %s in %s", old, label, compose.Filename)
|
||||||
|
|
||||||
if err := ioutil.WriteFile(compose.Filename, []byte(replacedBytes), 0644); err != nil {
|
if err := ioutil.WriteFile(compose.Filename, []byte(replacedBytes), 0644); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !discovered {
|
||||||
|
logrus.Warn("no existing label found, cannot continue...")
|
||||||
|
logrus.Fatalf("add '%s' manually, automagic insertion not supported yet", label)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
@ -9,9 +9,9 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/cli/formatter"
|
"coopcloud.tech/abra/cli/formatter"
|
||||||
"coopcloud.tech/abra/pkg/client/convert"
|
"coopcloud.tech/abra/pkg/upstream/convert"
|
||||||
loader "coopcloud.tech/abra/pkg/client/stack"
|
loader "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
stack "coopcloud.tech/abra/pkg/client/stack"
|
stack "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
composetypes "github.com/docker/cli/cli/compose/types"
|
composetypes "github.com/docker/cli/cli/compose/types"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
44
pkg/context/context.go
Normal file
44
pkg/context/context.go
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
package context
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
|
||||||
|
"github.com/docker/cli/cli/command"
|
||||||
|
dConfig "github.com/docker/cli/cli/config"
|
||||||
|
"github.com/docker/cli/cli/context"
|
||||||
|
contextStore "github.com/docker/cli/cli/context/store"
|
||||||
|
cliflags "github.com/docker/cli/cli/flags"
|
||||||
|
"github.com/moby/term"
|
||||||
|
)
|
||||||
|
|
||||||
|
func NewDefaultDockerContextStore() *command.ContextStoreWithDefault {
|
||||||
|
_, _, stderr := term.StdStreams()
|
||||||
|
dockerConfig := dConfig.LoadDefaultConfigFile(stderr)
|
||||||
|
contextDir := dConfig.ContextStoreDir()
|
||||||
|
storeConfig := command.DefaultContextStoreConfig()
|
||||||
|
store := newContextStore(contextDir, storeConfig)
|
||||||
|
|
||||||
|
opts := &cliflags.CommonOptions{Context: "default"}
|
||||||
|
|
||||||
|
dockerContextStore := &command.ContextStoreWithDefault{
|
||||||
|
Store: store,
|
||||||
|
Resolver: func() (*command.DefaultContext, error) {
|
||||||
|
return command.ResolveDefaultContext(opts, dockerConfig, storeConfig, stderr)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
return dockerContextStore
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetContextEndpoint(ctx contextStore.Metadata) (string, error) {
|
||||||
|
endpointmeta, ok := ctx.Endpoints["docker"].(context.EndpointMetaBase)
|
||||||
|
if !ok {
|
||||||
|
err := errors.New("context lacks Docker endpoint")
|
||||||
|
return "", err
|
||||||
|
}
|
||||||
|
return endpointmeta.Host, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newContextStore(dir string, config contextStore.Config) contextStore.Store {
|
||||||
|
return contextStore.New(dir, config)
|
||||||
|
}
|
@ -1,8 +1,11 @@
|
|||||||
package dns
|
package dns
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"net"
|
||||||
"os"
|
"os"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/AlecAivazis/survey/v2"
|
"github.com/AlecAivazis/survey/v2"
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
@ -26,3 +29,68 @@ func NewToken(provider, providerTokenEnvVar string) (string, error) {
|
|||||||
|
|
||||||
return token, nil
|
return token, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EnsureIPv4 ensures that an ipv4 address is set for a domain name
|
||||||
|
func EnsureIPv4(domainName string) (string, error) {
|
||||||
|
var ipv4 string
|
||||||
|
|
||||||
|
// comrade librehosters DNS resolver -> https://www.privacy-handbuch.de/handbuch_93d.htm
|
||||||
|
freifunkDNS := "5.1.66.255:53"
|
||||||
|
|
||||||
|
resolver := &net.Resolver{
|
||||||
|
PreferGo: false,
|
||||||
|
Dial: func(ctx context.Context, network, address string) (net.Conn, error) {
|
||||||
|
d := net.Dialer{
|
||||||
|
Timeout: time.Millisecond * time.Duration(10000),
|
||||||
|
}
|
||||||
|
return d.DialContext(ctx, "udp", freifunkDNS)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("created DNS resolver via '%s'", freifunkDNS)
|
||||||
|
|
||||||
|
ctx := context.Background()
|
||||||
|
ips, err := resolver.LookupIPAddr(ctx, domainName)
|
||||||
|
if err != nil {
|
||||||
|
return ipv4, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(ips) == 0 {
|
||||||
|
return ipv4, fmt.Errorf("unable to retrieve ipv4 address for %s", domainName)
|
||||||
|
}
|
||||||
|
|
||||||
|
ipv4 = ips[0].IP.To4().String()
|
||||||
|
logrus.Debugf("discovered the following ipv4 addr: %s", ipv4)
|
||||||
|
|
||||||
|
return ipv4, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureDomainsResolveSameIPv4 ensures that domains resolve to the same ipv4 address
|
||||||
|
func EnsureDomainsResolveSameIPv4(domainName, server string) (string, error) {
|
||||||
|
var ipv4 string
|
||||||
|
|
||||||
|
domainIPv4, err := EnsureIPv4(domainName)
|
||||||
|
if err != nil {
|
||||||
|
return ipv4, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if domainIPv4 == "" {
|
||||||
|
return ipv4, fmt.Errorf("cannot resolve ipv4 for %s?", domainName)
|
||||||
|
}
|
||||||
|
|
||||||
|
serverIPv4, err := EnsureIPv4(server)
|
||||||
|
if err != nil {
|
||||||
|
return ipv4, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if serverIPv4 == "" {
|
||||||
|
return ipv4, fmt.Errorf("cannot resolve ipv4 for %s?", server)
|
||||||
|
}
|
||||||
|
|
||||||
|
if domainIPv4 != serverIPv4 {
|
||||||
|
err := "app domain %s (%s) does not appear to resolve to app server %s (%s)?"
|
||||||
|
return ipv4, fmt.Errorf(err, domainName, domainIPv4, server, serverIPv4)
|
||||||
|
}
|
||||||
|
|
||||||
|
return ipv4, nil
|
||||||
|
}
|
||||||
|
@ -3,6 +3,7 @@ package git
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/go-git/go-git/v5"
|
"github.com/go-git/go-git/v5"
|
||||||
@ -24,6 +25,10 @@ func Clone(dir, url string) error {
|
|||||||
ReferenceName: plumbing.ReferenceName("refs/heads/main"),
|
ReferenceName: plumbing.ReferenceName("refs/heads/main"),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if strings.Contains(err.Error(), "authentication required") {
|
||||||
|
name := filepath.Base(dir)
|
||||||
|
return fmt.Errorf("unable to clone %s, does %s exist?", name, url)
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
14
pkg/git/common.go
Normal file
14
pkg/git/common.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package git
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"os"
|
||||||
|
)
|
||||||
|
|
||||||
|
// EnsureGitRepo ensures a git repo .git folder exists
|
||||||
|
func EnsureGitRepo(repoPath string) error {
|
||||||
|
if _, err := os.Stat(repoPath); os.IsNotExist(err) {
|
||||||
|
return fmt.Errorf("no .git directory in %s?", repoPath)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
38
pkg/git/init.go
Normal file
38
pkg/git/init.go
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
package git
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/go-git/go-git/v5"
|
||||||
|
gitPkg "github.com/go-git/go-git/v5"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Init inits a new repo and commits all the stuff if you want
|
||||||
|
func Init(repoPath string, commit bool) error {
|
||||||
|
if _, err := gitPkg.PlainInit(repoPath, false); err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
logrus.Debugf("initialised new git repo in %s", repoPath)
|
||||||
|
|
||||||
|
if commit {
|
||||||
|
commitRepo, err := git.PlainOpen(repoPath)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
commitWorktree, err := commitRepo.Worktree()
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := commitWorktree.AddGlob("**"); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err = commitWorktree.Commit("init", &git.CommitOptions{}); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Debugf("init committed all files for new git repo in %s", repoPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -6,6 +6,7 @@ import (
|
|||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
"github.com/go-git/go-git/v5"
|
"github.com/go-git/go-git/v5"
|
||||||
"github.com/go-git/go-git/v5/plumbing"
|
"github.com/go-git/go-git/v5/plumbing"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
// GetRecipeHead retrieves latest HEAD metadata.
|
// GetRecipeHead retrieves latest HEAD metadata.
|
||||||
@ -44,5 +45,11 @@ func IsClean(recipeName string) (bool, error) {
|
|||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if status.String() != "" {
|
||||||
|
logrus.Debugf("discovered git status for %s repository: %s", recipeName, status.String())
|
||||||
|
} else {
|
||||||
|
logrus.Debugf("discovered clean git status for %s repository", recipeName)
|
||||||
|
}
|
||||||
|
|
||||||
return status.IsClean(), nil
|
return status.IsClean(), nil
|
||||||
}
|
}
|
||||||
|
20
pkg/limit/limit.go
Normal file
20
pkg/limit/limit.go
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
package limit // https://github.com/tidwall/limiter
|
||||||
|
|
||||||
|
// Limiter is for limiting the number of concurrent operations. This
|
||||||
|
type Limiter struct{ sem chan struct{} }
|
||||||
|
|
||||||
|
// New returns a new Limiter. The limit param is the maximum number of
|
||||||
|
// concurrent operations.
|
||||||
|
func New(limit int) *Limiter {
|
||||||
|
return &Limiter{make(chan struct{}, limit)}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Begin an operation.
|
||||||
|
func (l *Limiter) Begin() {
|
||||||
|
l.sem <- struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// End the operation.
|
||||||
|
func (l *Limiter) End() {
|
||||||
|
<-l.sem
|
||||||
|
}
|
@ -2,15 +2,16 @@ package recipe
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
loader "coopcloud.tech/abra/pkg/client/stack"
|
|
||||||
"coopcloud.tech/abra/pkg/compose"
|
"coopcloud.tech/abra/pkg/compose"
|
||||||
"coopcloud.tech/abra/pkg/config"
|
"coopcloud.tech/abra/pkg/config"
|
||||||
gitPkg "coopcloud.tech/abra/pkg/git"
|
gitPkg "coopcloud.tech/abra/pkg/git"
|
||||||
|
"coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
|
loader "coopcloud.tech/abra/pkg/upstream/stack"
|
||||||
composetypes "github.com/docker/cli/cli/compose/types"
|
composetypes "github.com/docker/cli/cli/compose/types"
|
||||||
"github.com/go-git/go-git/v5"
|
"github.com/go-git/go-git/v5"
|
||||||
"github.com/go-git/go-git/v5/plumbing"
|
"github.com/go-git/go-git/v5/plumbing"
|
||||||
@ -95,13 +96,22 @@ func Get(recipeName string) (Recipe, error) {
|
|||||||
return Recipe{Name: recipeName, Config: config}, nil
|
return Recipe{Name: recipeName, Config: config}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// EnsureExists checks whether a recipe has been cloned locally or not.
|
// EnsureExists ensures that a recipe is locally cloned
|
||||||
func EnsureExists(recipe string) error {
|
func EnsureExists(recipe string) error {
|
||||||
recipeDir := path.Join(config.ABRA_DIR, "apps", strings.ToLower(recipe))
|
recipeDir := path.Join(config.ABRA_DIR, "apps", strings.ToLower(recipe))
|
||||||
url := fmt.Sprintf("%s/%s.git", config.REPOS_BASE_URL, recipe)
|
|
||||||
if err := gitPkg.Clone(recipeDir, url); err != nil {
|
if _, err := os.Stat(recipeDir); os.IsNotExist(err) {
|
||||||
|
logrus.Debugf("%s does not exist, attemmpting to clone", recipeDir)
|
||||||
|
url := fmt.Sprintf("%s/%s.git", config.REPOS_BASE_URL, recipe)
|
||||||
|
if err := gitPkg.Clone(recipeDir, url); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := gitPkg.EnsureGitRepo(recipeDir); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,6 +128,10 @@ func EnsureVersion(recipeName, version string) error {
|
|||||||
return fmt.Errorf("'%s' has locally unstaged changes", recipeName)
|
return fmt.Errorf("'%s' has locally unstaged changes", recipeName)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := gitPkg.EnsureGitRepo(recipeDir); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
repo, err := git.PlainOpen(recipeDir)
|
repo, err := git.PlainOpen(recipeDir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@ -169,6 +183,19 @@ func EnsureVersion(recipeName, version string) error {
|
|||||||
func EnsureLatest(recipeName string) error {
|
func EnsureLatest(recipeName string) error {
|
||||||
recipeDir := path.Join(config.ABRA_DIR, "apps", recipeName)
|
recipeDir := path.Join(config.ABRA_DIR, "apps", recipeName)
|
||||||
|
|
||||||
|
isClean, err := gitPkg.IsClean(recipeName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !isClean {
|
||||||
|
return fmt.Errorf("'%s' has locally unstaged changes", recipeName)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := gitPkg.EnsureGitRepo(recipeDir); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
logrus.Debugf("attempting to open git repository in '%s'", recipeDir)
|
logrus.Debugf("attempting to open git repository in '%s'", recipeDir)
|
||||||
|
|
||||||
repo, err := git.PlainOpen(recipeDir)
|
repo, err := git.PlainOpen(recipeDir)
|
||||||
|
@ -17,8 +17,11 @@ func CreateServerDir(serverName string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
logrus.Infof("'%s' already exists, moving on...", serverPath)
|
logrus.Infof("%s already exists", serverPath)
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logrus.Infof("successfully created %s", serverPath)
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
604
pkg/ssh/ssh.go
Normal file
604
pkg/ssh/ssh.go
Normal file
@ -0,0 +1,604 @@
|
|||||||
|
package ssh
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bufio"
|
||||||
|
"bytes"
|
||||||
|
"crypto/sha256"
|
||||||
|
"encoding/base64"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
"os"
|
||||||
|
"os/user"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"coopcloud.tech/abra/pkg/context"
|
||||||
|
"github.com/AlecAivazis/survey/v2"
|
||||||
|
dockerSSHPkg "github.com/docker/cli/cli/connhelper/ssh"
|
||||||
|
sshPkg "github.com/gliderlabs/ssh"
|
||||||
|
"github.com/kevinburke/ssh_config"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
"golang.org/x/crypto/ssh"
|
||||||
|
"golang.org/x/crypto/ssh/agent"
|
||||||
|
"golang.org/x/crypto/ssh/knownhosts"
|
||||||
|
)
|
||||||
|
|
||||||
|
var KnownHostsPath = filepath.Join(os.Getenv("HOME"), ".ssh", "known_hosts")
|
||||||
|
|
||||||
|
type Client struct {
|
||||||
|
SSHClient *ssh.Client
|
||||||
|
}
|
||||||
|
|
||||||
|
// HostConfig is a SSH host config.
|
||||||
|
type HostConfig struct {
|
||||||
|
Host string
|
||||||
|
IdentityFile string
|
||||||
|
Port string
|
||||||
|
User string
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exec cmd on the remote host and return stderr and stdout
|
||||||
|
func (c *Client) Exec(cmd string) ([]byte, error) {
|
||||||
|
session, err := c.SSHClient.NewSession()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer session.Close()
|
||||||
|
|
||||||
|
return session.CombinedOutput(cmd)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Close the underlying SSH connection
|
||||||
|
func (c *Client) Close() error {
|
||||||
|
return c.SSHClient.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
// New creates a new SSH client connection.
|
||||||
|
func New(domainName, sshAuth, username, port string) (*Client, error) {
|
||||||
|
var client *Client
|
||||||
|
|
||||||
|
ctxConnDetails, err := GetContextConnDetails(domainName)
|
||||||
|
if err != nil {
|
||||||
|
return client, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if sshAuth == "identity-file" {
|
||||||
|
var err error
|
||||||
|
client, err = connectWithAgentTimeout(
|
||||||
|
ctxConnDetails.Host,
|
||||||
|
ctxConnDetails.User,
|
||||||
|
ctxConnDetails.Port,
|
||||||
|
5*time.Second,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return client, err
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
password := ""
|
||||||
|
prompt := &survey.Password{
|
||||||
|
Message: "SSH password?",
|
||||||
|
}
|
||||||
|
if err := survey.AskOne(prompt, &password); err != nil {
|
||||||
|
return client, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var err error
|
||||||
|
client, err = connectWithPasswordTimeout(
|
||||||
|
ctxConnDetails.Host,
|
||||||
|
ctxConnDetails.User,
|
||||||
|
ctxConnDetails.Port,
|
||||||
|
password,
|
||||||
|
5*time.Second,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return client, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return client, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// sudoWriter supports sudo command handling
|
||||||
|
type sudoWriter struct {
|
||||||
|
b bytes.Buffer
|
||||||
|
pw string
|
||||||
|
stdin io.Writer
|
||||||
|
m sync.Mutex
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write satisfies the write interface for sudoWriter
|
||||||
|
func (w *sudoWriter) Write(p []byte) (int, error) {
|
||||||
|
if string(p) == "sudo_password" {
|
||||||
|
w.stdin.Write([]byte(w.pw + "\n"))
|
||||||
|
w.pw = ""
|
||||||
|
return len(p), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
w.m.Lock()
|
||||||
|
defer w.m.Unlock()
|
||||||
|
|
||||||
|
return w.b.Write(p)
|
||||||
|
}
|
||||||
|
|
||||||
|
// RunSudoCmd runs SSH commands and streams output
|
||||||
|
func RunSudoCmd(cmd, passwd string, cl *Client) error {
|
||||||
|
session, err := cl.SSHClient.NewSession()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer session.Close()
|
||||||
|
|
||||||
|
cmd = "sudo -p " + "sudo_password" + " -S " + cmd
|
||||||
|
|
||||||
|
w := &sudoWriter{
|
||||||
|
pw: passwd,
|
||||||
|
}
|
||||||
|
w.stdin, err = session.StdinPipe()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
session.Stdout = w
|
||||||
|
session.Stderr = w
|
||||||
|
|
||||||
|
done := make(chan struct{})
|
||||||
|
scanner := bufio.NewScanner(session.Stdin)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for scanner.Scan() {
|
||||||
|
line := scanner.Text()
|
||||||
|
fmt.Println(line)
|
||||||
|
}
|
||||||
|
done <- struct{}{}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if err := session.Start(cmd); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
<-done
|
||||||
|
|
||||||
|
if err := session.Wait(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exec runs a command on a remote and streams output
|
||||||
|
func Exec(cmd string, cl *Client) error {
|
||||||
|
session, err := cl.SSHClient.NewSession()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer session.Close()
|
||||||
|
|
||||||
|
stdout, err := session.StdoutPipe()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
stderr, err := session.StdoutPipe()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
stdoutDone := make(chan struct{})
|
||||||
|
stdoutScanner := bufio.NewScanner(stdout)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for stdoutScanner.Scan() {
|
||||||
|
line := stdoutScanner.Text()
|
||||||
|
fmt.Println(line)
|
||||||
|
}
|
||||||
|
stdoutDone <- struct{}{}
|
||||||
|
}()
|
||||||
|
|
||||||
|
stderrDone := make(chan struct{})
|
||||||
|
stderrScanner := bufio.NewScanner(stderr)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
for stderrScanner.Scan() {
|
||||||
|
line := stderrScanner.Text()
|
||||||
|
fmt.Println(line)
|
||||||
|
}
|
||||||
|
stderrDone <- struct{}{}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if err := session.Start(cmd); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
<-stdoutDone
|
||||||
|
<-stderrDone
|
||||||
|
|
||||||
|
if err := session.Wait(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureKnowHostsFiles ensures that ~/.ssh/known_hosts is created
|
||||||
|
func EnsureKnowHostsFiles() error {
|
||||||
|
if _, err := os.Stat(KnownHostsPath); os.IsNotExist(err) {
|
||||||
|
logrus.Debugf("missing %s, creating now", KnownHostsPath)
|
||||||
|
file, err := os.OpenFile(KnownHostsPath, os.O_CREATE, 0600)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
file.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetHostKey checks if a host key is registered in the ~/.ssh/known_hosts file
|
||||||
|
func GetHostKey(hostname string) (bool, sshPkg.PublicKey, error) {
|
||||||
|
var hostKey sshPkg.PublicKey
|
||||||
|
|
||||||
|
ctxConnDetails, err := GetContextConnDetails(hostname)
|
||||||
|
if err != nil {
|
||||||
|
return false, hostKey, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := EnsureKnowHostsFiles(); err != nil {
|
||||||
|
return false, hostKey, err
|
||||||
|
}
|
||||||
|
|
||||||
|
file, err := os.Open(KnownHostsPath)
|
||||||
|
if err != nil {
|
||||||
|
return false, hostKey, err
|
||||||
|
}
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
|
scanner := bufio.NewScanner(file)
|
||||||
|
for scanner.Scan() {
|
||||||
|
fields := strings.Split(scanner.Text(), " ")
|
||||||
|
if len(fields) != 3 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
hostnameAndPort := fmt.Sprintf("%s:%s", ctxConnDetails.Host, ctxConnDetails.Port)
|
||||||
|
hashed := knownhosts.Normalize(hostnameAndPort)
|
||||||
|
|
||||||
|
if strings.Contains(fields[0], hashed) {
|
||||||
|
var err error
|
||||||
|
hostKey, _, _, _, err = ssh.ParseAuthorizedKey(scanner.Bytes())
|
||||||
|
if err != nil {
|
||||||
|
return false, hostKey, fmt.Errorf("error parsing server SSH host key %q: %v", fields[2], err)
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if hostKey != nil {
|
||||||
|
logrus.Debugf("server SSH host key present in ~/.ssh/known_hosts for %s", hostname)
|
||||||
|
return true, hostKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return false, hostKey, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// InsertHostKey adds a new host key to the ~/.ssh/known_hosts file
|
||||||
|
func InsertHostKey(hostname string, remote net.Addr, pubKey ssh.PublicKey) error {
|
||||||
|
file, err := os.OpenFile(KnownHostsPath, os.O_APPEND|os.O_WRONLY, 0600)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
defer file.Close()
|
||||||
|
|
||||||
|
hashedHostname := knownhosts.Normalize(hostname)
|
||||||
|
lineHostname := knownhosts.Line([]string{hashedHostname}, pubKey)
|
||||||
|
_, err = file.WriteString(fmt.Sprintf("%s\n", lineHostname))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
hashedRemote := knownhosts.Normalize(remote.String())
|
||||||
|
lineRemote := knownhosts.Line([]string{hashedRemote}, pubKey)
|
||||||
|
_, err = file.WriteString(fmt.Sprintf("%s\n", lineRemote))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("SSH host key generated: %s", lineHostname)
|
||||||
|
logrus.Debugf("SSH host key generated: %s", lineRemote)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// HostKeyAddCallback ensures server ssh host keys are handled
|
||||||
|
func HostKeyAddCallback(hostnameAndPort string, remote net.Addr, pubKey ssh.PublicKey) error {
|
||||||
|
exists, _, err := GetHostKey(hostnameAndPort)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if exists {
|
||||||
|
hostname := strings.Split(hostnameAndPort, ":")[0]
|
||||||
|
logrus.Debugf("server SSH host key found for %s, moving on", hostname)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
if !exists {
|
||||||
|
hostname := strings.Split(hostnameAndPort, ":")[0]
|
||||||
|
parsedPubKey := FingerprintSHA256(pubKey)
|
||||||
|
|
||||||
|
fmt.Printf(fmt.Sprintf(`
|
||||||
|
You are attempting to make an SSH connection to a server but there is no entry
|
||||||
|
in your ~/.ssh/known_hosts file which confirms that this is indeed the server
|
||||||
|
you want to connect to. Please take a moment to validate the following SSH host
|
||||||
|
key, it is important.
|
||||||
|
|
||||||
|
Host: %s
|
||||||
|
Fingerprint: %s
|
||||||
|
|
||||||
|
If this is confusing to you, you can read the article below and learn how to
|
||||||
|
validate this fingerprint safely. Thanks to the comrades at cyberia.club for
|
||||||
|
writing this extensive guide <3
|
||||||
|
|
||||||
|
https://sequentialread.com/understanding-the-secure-shell-protocol-ssh/
|
||||||
|
|
||||||
|
`, hostname, parsedPubKey))
|
||||||
|
|
||||||
|
response := false
|
||||||
|
prompt := &survey.Confirm{
|
||||||
|
Message: "are you sure you trust this host key?",
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := survey.AskOne(prompt, &response); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
if !response {
|
||||||
|
logrus.Fatal("exiting as requested")
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("attempting to insert server SSH host key for %s, %s", hostnameAndPort, remote)
|
||||||
|
|
||||||
|
if err := InsertHostKey(hostnameAndPort, remote, pubKey); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Infof("successfully added server SSH host key for %s", hostname)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// connect makes the SSH connection
|
||||||
|
func connect(username, host, port string, authMethod ssh.AuthMethod, timeout time.Duration) (*Client, error) {
|
||||||
|
config := &ssh.ClientConfig{
|
||||||
|
User: username,
|
||||||
|
Auth: []ssh.AuthMethod{authMethod},
|
||||||
|
HostKeyCallback: HostKeyAddCallback, // the main reason why we fork
|
||||||
|
}
|
||||||
|
|
||||||
|
hostnameAndPort := fmt.Sprintf("%s:%s", host, port)
|
||||||
|
|
||||||
|
logrus.Debugf("tcp dialing %s", hostnameAndPort)
|
||||||
|
|
||||||
|
var conn net.Conn
|
||||||
|
var err error
|
||||||
|
conn, err = net.DialTimeout("tcp", hostnameAndPort, timeout)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Debugf("tcp dialing %s failed, trying via ~/.ssh/config", hostnameAndPort)
|
||||||
|
hostConfig, err := GetHostConfig(host, username, port)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
conn, err = net.DialTimeout("tcp", fmt.Sprintf("%s:%s", hostConfig.Host, hostConfig.Port), timeout)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sshConn, chans, reqs, err := ssh.NewClientConn(conn, hostnameAndPort, config)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
client := ssh.NewClient(sshConn, chans, reqs)
|
||||||
|
c := &Client{SSHClient: client}
|
||||||
|
|
||||||
|
return c, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func connectWithAgentTimeout(host, username, port string, timeout time.Duration) (*Client, error) {
|
||||||
|
logrus.Debugf("using ssh-agent to make an SSH connection for %s", host)
|
||||||
|
|
||||||
|
sshAgent, err := net.Dial("unix", os.Getenv("SSH_AUTH_SOCK"))
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
agentCl := agent.NewClient(sshAgent)
|
||||||
|
authMethod := ssh.PublicKeysCallback(agentCl.Signers)
|
||||||
|
|
||||||
|
loadedKeys, err := agentCl.List()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
var convertedKeys []string
|
||||||
|
for _, key := range loadedKeys {
|
||||||
|
convertedKeys = append(convertedKeys, key.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(convertedKeys) > 0 {
|
||||||
|
logrus.Debugf("ssh-agent has these keys loaded: %s", strings.Join(convertedKeys, ","))
|
||||||
|
} else {
|
||||||
|
logrus.Debug("ssh-agent has no keys loaded")
|
||||||
|
}
|
||||||
|
|
||||||
|
return connect(username, host, port, authMethod, timeout)
|
||||||
|
}
|
||||||
|
|
||||||
|
func connectWithPasswordTimeout(host, username, port, pass string, timeout time.Duration) (*Client, error) {
|
||||||
|
authMethod := ssh.Password(pass)
|
||||||
|
|
||||||
|
return connect(username, host, port, authMethod, timeout)
|
||||||
|
}
|
||||||
|
|
||||||
|
// EnsureHostKey ensures that a host key trusted and added to the ~/.ssh/known_hosts file
|
||||||
|
func EnsureHostKey(hostname string) error {
|
||||||
|
if hostname == "default" || hostname == "local" {
|
||||||
|
logrus.Debugf("not checking server SSH host key against local/default target")
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
exists, _, err := GetHostKey(hostname)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if exists {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
ctxConnDetails, err := GetContextConnDetails(hostname)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = connectWithAgentTimeout(
|
||||||
|
ctxConnDetails.Host,
|
||||||
|
ctxConnDetails.User,
|
||||||
|
ctxConnDetails.Port,
|
||||||
|
5*time.Second,
|
||||||
|
)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// FingerprintSHA256 generates the SHA256 fingerprint for a server SSH host key
|
||||||
|
func FingerprintSHA256(key ssh.PublicKey) string {
|
||||||
|
hash := sha256.Sum256(key.Marshal())
|
||||||
|
b64hash := base64.StdEncoding.EncodeToString(hash[:])
|
||||||
|
trimmed := strings.TrimRight(b64hash, "=")
|
||||||
|
return fmt.Sprintf("SHA256:%s", trimmed)
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetContextConnDetails retrieves SSH connection details from a docker context endpoint
|
||||||
|
func GetContextConnDetails(serverName string) (*dockerSSHPkg.Spec, error) {
|
||||||
|
dockerContextStore := context.NewDefaultDockerContextStore()
|
||||||
|
contexts, err := dockerContextStore.Store.List()
|
||||||
|
if err != nil {
|
||||||
|
return &dockerSSHPkg.Spec{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(serverName, ":") {
|
||||||
|
serverName = strings.Split(serverName, ":")[0]
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, ctx := range contexts {
|
||||||
|
endpoint, err := context.GetContextEndpoint(ctx)
|
||||||
|
if err != nil && strings.Contains(err.Error(), "does not exist") {
|
||||||
|
// No local context found, we can continue safely
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if ctx.Name == serverName {
|
||||||
|
ctxConnDetails, err := dockerSSHPkg.ParseURL(endpoint)
|
||||||
|
if err != nil {
|
||||||
|
return &dockerSSHPkg.Spec{}, err
|
||||||
|
}
|
||||||
|
logrus.Debugf("found context connection details %v for %s", ctxConnDetails, serverName)
|
||||||
|
return ctxConnDetails, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hostConfig, err := GetHostConfig(serverName, "", "")
|
||||||
|
if err != nil {
|
||||||
|
return &dockerSSHPkg.Spec{}, err
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("couldn't find a docker context matching %s", serverName)
|
||||||
|
logrus.Debugf("searching ~/.ssh/config for a Host entry for %s", serverName)
|
||||||
|
|
||||||
|
connDetails := &dockerSSHPkg.Spec{
|
||||||
|
Host: hostConfig.Host,
|
||||||
|
User: hostConfig.User,
|
||||||
|
Port: hostConfig.Port,
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("using %v from ~/.ssh/config for connection details", connDetails)
|
||||||
|
|
||||||
|
return connDetails, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetHostConfig retrieves a ~/.ssh/config config for a host.
|
||||||
|
func GetHostConfig(hostname, username, port string) (HostConfig, error) {
|
||||||
|
var hostConfig HostConfig
|
||||||
|
|
||||||
|
var host, idf string
|
||||||
|
|
||||||
|
if host = ssh_config.Get(hostname, "Hostname"); host == "" {
|
||||||
|
logrus.Debugf("no hostname found in SSH config, assuming %s", hostname)
|
||||||
|
host = hostname
|
||||||
|
}
|
||||||
|
|
||||||
|
if username == "" {
|
||||||
|
if username = ssh_config.Get(hostname, "User"); username == "" {
|
||||||
|
systemUser, err := user.Current()
|
||||||
|
if err != nil {
|
||||||
|
return hostConfig, err
|
||||||
|
}
|
||||||
|
logrus.Debugf("no username found in SSH config or passed on command-line, assuming %s", username)
|
||||||
|
username = systemUser.Username
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if port == "" {
|
||||||
|
if port = ssh_config.Get(hostname, "Port"); port == "" {
|
||||||
|
logrus.Debugf("no port found in SSH config or passed on command-line, assuming 22")
|
||||||
|
port = "22"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
idf = ssh_config.Get(hostname, "IdentityFile")
|
||||||
|
if idf != "" {
|
||||||
|
var err error
|
||||||
|
idf, err = identityFileAbsPath(idf)
|
||||||
|
if err != nil {
|
||||||
|
return hostConfig, err
|
||||||
|
}
|
||||||
|
hostConfig.IdentityFile = idf
|
||||||
|
}
|
||||||
|
|
||||||
|
hostConfig.Host = host
|
||||||
|
hostConfig.Port = port
|
||||||
|
hostConfig.User = username
|
||||||
|
|
||||||
|
logrus.Debugf("constructed SSH config %s for %s", hostConfig, hostname)
|
||||||
|
|
||||||
|
return hostConfig, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func identityFileAbsPath(relPath string) (string, error) {
|
||||||
|
var err error
|
||||||
|
var absPath string
|
||||||
|
|
||||||
|
if strings.HasPrefix(relPath, "~/") {
|
||||||
|
systemUser, err := user.Current()
|
||||||
|
if err != nil {
|
||||||
|
return absPath, err
|
||||||
|
}
|
||||||
|
absPath = filepath.Join(systemUser.HomeDir, relPath[2:])
|
||||||
|
} else {
|
||||||
|
absPath, err = filepath.Abs(relPath)
|
||||||
|
if err != nil {
|
||||||
|
return absPath, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("resolved %s to %s to read the ssh identity file", relPath, absPath)
|
||||||
|
|
||||||
|
return absPath, nil
|
||||||
|
}
|
295
pkg/upstream/commandconn/commandconn.go
Normal file
295
pkg/upstream/commandconn/commandconn.go
Normal file
@ -0,0 +1,295 @@
|
|||||||
|
// Package commandconn provides a net.Conn implementation that can be used for
|
||||||
|
// proxying (or emulating) stream via a custom command.
|
||||||
|
//
|
||||||
|
// For example, to provide an http.Client that can connect to a Docker daemon
|
||||||
|
// running in a Docker container ("DIND"):
|
||||||
|
//
|
||||||
|
// httpClient := &http.Client{
|
||||||
|
// Transport: &http.Transport{
|
||||||
|
// DialContext: func(ctx context.Context, _network, _addr string) (net.Conn, error) {
|
||||||
|
// return commandconn.New(ctx, "docker", "exec", "-it", containerID, "docker", "system", "dial-stdio")
|
||||||
|
// },
|
||||||
|
// },
|
||||||
|
// }
|
||||||
|
|
||||||
|
package commandconn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"net"
|
||||||
|
"os"
|
||||||
|
"runtime"
|
||||||
|
"strings"
|
||||||
|
"sync"
|
||||||
|
"syscall"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
exec "golang.org/x/sys/execabs"
|
||||||
|
)
|
||||||
|
|
||||||
|
func createSession(cmd *exec.Cmd) {
|
||||||
|
// for supporting ssh connection helper with ProxyCommand
|
||||||
|
// https://github.com/docker/cli/issues/1707
|
||||||
|
cmd.SysProcAttr.Setsid = true
|
||||||
|
}
|
||||||
|
|
||||||
|
// New returns net.Conn
|
||||||
|
func New(ctx context.Context, cmd string, args ...string) (net.Conn, error) {
|
||||||
|
var (
|
||||||
|
c commandConn
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
c.cmd = exec.CommandContext(ctx, cmd, args...)
|
||||||
|
// we assume that args never contains sensitive information
|
||||||
|
logrus.Debugf("commandconn: starting %s with %v", cmd, args)
|
||||||
|
c.cmd.Env = os.Environ()
|
||||||
|
c.cmd.SysProcAttr = &syscall.SysProcAttr{}
|
||||||
|
setPdeathsig(c.cmd)
|
||||||
|
createSession(c.cmd)
|
||||||
|
c.stdin, err = c.cmd.StdinPipe()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c.stdout, err = c.cmd.StdoutPipe()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
c.cmd.Stderr = &stderrWriter{
|
||||||
|
stderrMu: &c.stderrMu,
|
||||||
|
stderr: &c.stderr,
|
||||||
|
debugPrefix: fmt.Sprintf("commandconn (%s):", cmd),
|
||||||
|
}
|
||||||
|
c.localAddr = dummyAddr{network: "dummy", s: "dummy-0"}
|
||||||
|
c.remoteAddr = dummyAddr{network: "dummy", s: "dummy-1"}
|
||||||
|
return &c, c.cmd.Start()
|
||||||
|
}
|
||||||
|
|
||||||
|
// commandConn implements net.Conn
|
||||||
|
type commandConn struct {
|
||||||
|
cmd *exec.Cmd
|
||||||
|
cmdExited bool
|
||||||
|
cmdWaitErr error
|
||||||
|
cmdMutex sync.Mutex
|
||||||
|
stdin io.WriteCloser
|
||||||
|
stdout io.ReadCloser
|
||||||
|
stderrMu sync.Mutex
|
||||||
|
stderr bytes.Buffer
|
||||||
|
stdioClosedMu sync.Mutex // for stdinClosed and stdoutClosed
|
||||||
|
stdinClosed bool
|
||||||
|
stdoutClosed bool
|
||||||
|
localAddr net.Addr
|
||||||
|
remoteAddr net.Addr
|
||||||
|
}
|
||||||
|
|
||||||
|
// killIfStdioClosed kills the cmd if both stdin and stdout are closed.
|
||||||
|
func (c *commandConn) killIfStdioClosed() error {
|
||||||
|
c.stdioClosedMu.Lock()
|
||||||
|
stdioClosed := c.stdoutClosed && c.stdinClosed
|
||||||
|
c.stdioClosedMu.Unlock()
|
||||||
|
if !stdioClosed {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return c.kill()
|
||||||
|
}
|
||||||
|
|
||||||
|
// killAndWait tries sending SIGTERM to the process before sending SIGKILL.
|
||||||
|
func killAndWait(cmd *exec.Cmd) error {
|
||||||
|
var werr error
|
||||||
|
if runtime.GOOS != "windows" {
|
||||||
|
werrCh := make(chan error)
|
||||||
|
go func() { werrCh <- cmd.Wait() }()
|
||||||
|
cmd.Process.Signal(syscall.SIGTERM)
|
||||||
|
select {
|
||||||
|
case werr = <-werrCh:
|
||||||
|
case <-time.After(3 * time.Second):
|
||||||
|
cmd.Process.Kill()
|
||||||
|
werr = <-werrCh
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
cmd.Process.Kill()
|
||||||
|
werr = cmd.Wait()
|
||||||
|
}
|
||||||
|
return werr
|
||||||
|
}
|
||||||
|
|
||||||
|
// kill returns nil if the command terminated, regardless to the exit status.
|
||||||
|
func (c *commandConn) kill() error {
|
||||||
|
var werr error
|
||||||
|
c.cmdMutex.Lock()
|
||||||
|
if c.cmdExited {
|
||||||
|
werr = c.cmdWaitErr
|
||||||
|
} else {
|
||||||
|
werr = killAndWait(c.cmd)
|
||||||
|
c.cmdWaitErr = werr
|
||||||
|
c.cmdExited = true
|
||||||
|
}
|
||||||
|
c.cmdMutex.Unlock()
|
||||||
|
if werr == nil {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
wExitErr, ok := werr.(*exec.ExitError)
|
||||||
|
if ok {
|
||||||
|
if wExitErr.ProcessState.Exited() {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return errors.Wrapf(werr, "commandconn: failed to wait")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) onEOF(eof error) error {
|
||||||
|
// when we got EOF, the command is going to be terminated
|
||||||
|
var werr error
|
||||||
|
c.cmdMutex.Lock()
|
||||||
|
if c.cmdExited {
|
||||||
|
werr = c.cmdWaitErr
|
||||||
|
} else {
|
||||||
|
werrCh := make(chan error)
|
||||||
|
go func() { werrCh <- c.cmd.Wait() }()
|
||||||
|
select {
|
||||||
|
case werr = <-werrCh:
|
||||||
|
c.cmdWaitErr = werr
|
||||||
|
c.cmdExited = true
|
||||||
|
case <-time.After(10 * time.Second):
|
||||||
|
c.cmdMutex.Unlock()
|
||||||
|
c.stderrMu.Lock()
|
||||||
|
stderr := c.stderr.String()
|
||||||
|
c.stderrMu.Unlock()
|
||||||
|
return errors.Errorf("command %v did not exit after %v: stderr=%q", c.cmd.Args, eof, stderr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
c.cmdMutex.Unlock()
|
||||||
|
if werr == nil {
|
||||||
|
return eof
|
||||||
|
}
|
||||||
|
c.stderrMu.Lock()
|
||||||
|
stderr := c.stderr.String()
|
||||||
|
c.stderrMu.Unlock()
|
||||||
|
return errors.Errorf("command %v has exited with %v, please make sure the URL is valid, and Docker 18.09 or later is installed on the remote host: stderr=%s", c.cmd.Args, werr, stderr)
|
||||||
|
}
|
||||||
|
|
||||||
|
func ignorableCloseError(err error) bool {
|
||||||
|
errS := err.Error()
|
||||||
|
ss := []string{
|
||||||
|
os.ErrClosed.Error(),
|
||||||
|
}
|
||||||
|
for _, s := range ss {
|
||||||
|
if strings.Contains(errS, s) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) CloseRead() error {
|
||||||
|
// NOTE: maybe already closed here
|
||||||
|
if err := c.stdout.Close(); err != nil && !ignorableCloseError(err) {
|
||||||
|
// TODO: muted because https://github.com/docker/compose/issues/8544
|
||||||
|
// logrus.Warnf("commandConn.CloseRead: %v", err)
|
||||||
|
}
|
||||||
|
c.stdioClosedMu.Lock()
|
||||||
|
c.stdoutClosed = true
|
||||||
|
c.stdioClosedMu.Unlock()
|
||||||
|
if err := c.killIfStdioClosed(); err != nil {
|
||||||
|
// TODO: muted because https://github.com/docker/compose/issues/8544
|
||||||
|
// logrus.Warnf("commandConn.CloseRead: %v", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) Read(p []byte) (int, error) {
|
||||||
|
n, err := c.stdout.Read(p)
|
||||||
|
if err == io.EOF {
|
||||||
|
err = c.onEOF(err)
|
||||||
|
}
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) CloseWrite() error {
|
||||||
|
// NOTE: maybe already closed here
|
||||||
|
if err := c.stdin.Close(); err != nil && !ignorableCloseError(err) {
|
||||||
|
// TODO: muted because https://github.com/docker/compose/issues/8544
|
||||||
|
// logrus.Warnf("commandConn.CloseWrite: %v", err)
|
||||||
|
}
|
||||||
|
c.stdioClosedMu.Lock()
|
||||||
|
c.stdinClosed = true
|
||||||
|
c.stdioClosedMu.Unlock()
|
||||||
|
if err := c.killIfStdioClosed(); err != nil {
|
||||||
|
// TODO: muted because https://github.com/docker/compose/issues/8544
|
||||||
|
// logrus.Warnf("commandConn.CloseWrite: %v", err)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) Write(p []byte) (int, error) {
|
||||||
|
n, err := c.stdin.Write(p)
|
||||||
|
if err == io.EOF {
|
||||||
|
err = c.onEOF(err)
|
||||||
|
}
|
||||||
|
return n, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) Close() error {
|
||||||
|
var err error
|
||||||
|
if err = c.CloseRead(); err != nil {
|
||||||
|
logrus.Warnf("commandConn.Close: CloseRead: %v", err)
|
||||||
|
}
|
||||||
|
if err = c.CloseWrite(); err != nil {
|
||||||
|
// TODO: muted because https://github.com/docker/compose/issues/8544
|
||||||
|
// logrus.Warnf("commandConn.Close: CloseWrite: %v", err)
|
||||||
|
}
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *commandConn) LocalAddr() net.Addr {
|
||||||
|
return c.localAddr
|
||||||
|
}
|
||||||
|
func (c *commandConn) RemoteAddr() net.Addr {
|
||||||
|
return c.remoteAddr
|
||||||
|
}
|
||||||
|
func (c *commandConn) SetDeadline(t time.Time) error {
|
||||||
|
logrus.Debugf("unimplemented call: SetDeadline(%v)", t)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (c *commandConn) SetReadDeadline(t time.Time) error {
|
||||||
|
logrus.Debugf("unimplemented call: SetReadDeadline(%v)", t)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
func (c *commandConn) SetWriteDeadline(t time.Time) error {
|
||||||
|
logrus.Debugf("unimplemented call: SetWriteDeadline(%v)", t)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type dummyAddr struct {
|
||||||
|
network string
|
||||||
|
s string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d dummyAddr) Network() string {
|
||||||
|
return d.network
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d dummyAddr) String() string {
|
||||||
|
return d.s
|
||||||
|
}
|
||||||
|
|
||||||
|
type stderrWriter struct {
|
||||||
|
stderrMu *sync.Mutex
|
||||||
|
stderr *bytes.Buffer
|
||||||
|
debugPrefix string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (w *stderrWriter) Write(p []byte) (int, error) {
|
||||||
|
logrus.Debugf("%s%s", w.debugPrefix, string(p))
|
||||||
|
w.stderrMu.Lock()
|
||||||
|
if w.stderr.Len() > 4096 {
|
||||||
|
w.stderr.Reset()
|
||||||
|
}
|
||||||
|
n, err := w.stderr.Write(p)
|
||||||
|
w.stderrMu.Unlock()
|
||||||
|
return n, err
|
||||||
|
}
|
103
pkg/upstream/commandconn/connection.go
Normal file
103
pkg/upstream/commandconn/connection.go
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
package commandconn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"net"
|
||||||
|
"net/url"
|
||||||
|
|
||||||
|
sshPkg "coopcloud.tech/abra/pkg/ssh"
|
||||||
|
"github.com/docker/cli/cli/connhelper"
|
||||||
|
"github.com/docker/cli/cli/connhelper/ssh"
|
||||||
|
"github.com/docker/cli/cli/context/docker"
|
||||||
|
dCliContextStore "github.com/docker/cli/cli/context/store"
|
||||||
|
dClient "github.com/docker/docker/client"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"github.com/sirupsen/logrus"
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetConnectionHelper returns Docker-specific connection helper for the given URL.
|
||||||
|
// GetConnectionHelper returns nil without error when no helper is registered for the scheme.
|
||||||
|
//
|
||||||
|
// ssh://<user>@<host> URL requires Docker 18.09 or later on the remote host.
|
||||||
|
func GetConnectionHelper(daemonURL string) (*connhelper.ConnectionHelper, error) {
|
||||||
|
return getConnectionHelper(daemonURL, []string{"-o ConnectTimeout=5"})
|
||||||
|
}
|
||||||
|
|
||||||
|
func getConnectionHelper(daemonURL string, sshFlags []string) (*connhelper.ConnectionHelper, error) {
|
||||||
|
url, err := url.Parse(daemonURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
switch scheme := url.Scheme; scheme {
|
||||||
|
case "ssh":
|
||||||
|
ctxConnDetails, err := ssh.ParseURL(daemonURL)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrap(err, "ssh host connection is not valid")
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := sshPkg.EnsureHostKey(ctxConnDetails.Host); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
hostConfig, err := sshPkg.GetHostConfig(
|
||||||
|
ctxConnDetails.Host,
|
||||||
|
ctxConnDetails.User,
|
||||||
|
ctxConnDetails.Port,
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
if hostConfig.IdentityFile != "" {
|
||||||
|
msg := "discovered %s as identity file for %s, using for ssh connection"
|
||||||
|
logrus.Debugf(msg, hostConfig.IdentityFile, ctxConnDetails.Host)
|
||||||
|
sshFlags = append(sshFlags, fmt.Sprintf("-o IdentityFile=%s", hostConfig.IdentityFile))
|
||||||
|
}
|
||||||
|
|
||||||
|
return &connhelper.ConnectionHelper{
|
||||||
|
Dialer: func(ctx context.Context, network, addr string) (net.Conn, error) {
|
||||||
|
return New(ctx, "ssh", append(sshFlags, ctxConnDetails.Args("docker", "system", "dial-stdio")...)...)
|
||||||
|
},
|
||||||
|
Host: "http://docker.example.com",
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
// Future version may support plugins via ~/.docker/config.json. e.g. "dind"
|
||||||
|
// See docker/cli#889 for the previous discussion.
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewConnectionHelper(daemonURL string) *connhelper.ConnectionHelper {
|
||||||
|
helper, err := GetConnectionHelper(daemonURL)
|
||||||
|
if err != nil {
|
||||||
|
logrus.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return helper
|
||||||
|
}
|
||||||
|
|
||||||
|
func getDockerEndpoint(host string) (docker.Endpoint, error) {
|
||||||
|
skipTLSVerify := false
|
||||||
|
ep := docker.Endpoint{
|
||||||
|
EndpointMeta: docker.EndpointMeta{
|
||||||
|
Host: host,
|
||||||
|
SkipTLSVerify: skipTLSVerify,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
// try to resolve a docker client, validating the configuration
|
||||||
|
opts, err := ep.ClientOpts()
|
||||||
|
if err != nil {
|
||||||
|
return docker.Endpoint{}, err
|
||||||
|
}
|
||||||
|
if _, err := dClient.NewClientWithOpts(opts...); err != nil {
|
||||||
|
return docker.Endpoint{}, err
|
||||||
|
}
|
||||||
|
return ep, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetDockerEndpointMetadataAndTLS(host string) (docker.EndpointMeta, *dCliContextStore.EndpointTLSData, error) {
|
||||||
|
ep, err := getDockerEndpoint(host)
|
||||||
|
if err != nil {
|
||||||
|
return docker.EndpointMeta{}, nil, err
|
||||||
|
}
|
||||||
|
return ep.EndpointMeta, ep.TLSData.ToStoreTLSData(), nil
|
||||||
|
}
|
10
pkg/upstream/commandconn/pdeathsig_linux.go
Normal file
10
pkg/upstream/commandconn/pdeathsig_linux.go
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
package commandconn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os/exec"
|
||||||
|
"syscall"
|
||||||
|
)
|
||||||
|
|
||||||
|
func setPdeathsig(cmd *exec.Cmd) {
|
||||||
|
cmd.SysProcAttr.Pdeathsig = syscall.SIGKILL
|
||||||
|
}
|
11
pkg/upstream/commandconn/pdeathsig_nolinux.go
Normal file
11
pkg/upstream/commandconn/pdeathsig_nolinux.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
//go:build !linux
|
||||||
|
// +build !linux
|
||||||
|
|
||||||
|
package commandconn
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os/exec"
|
||||||
|
)
|
||||||
|
|
||||||
|
func setPdeathsig(cmd *exec.Cmd) {
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package container
|
package container // https://github.com/docker/cli/blob/master/cli/command/container/exec.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package container
|
package container // https://github.com/docker/cli/blob/master/cli/command/container/hijack.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package container
|
package container // https://github.com/docker/cli/blob/master/cli/command/container/tty.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/command/container/tty.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/compose/convert/compose_test.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/compose/convert/service.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/compose/convert/service_test.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/compose/convert/volume.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
composetypes "github.com/docker/cli/cli/compose/types"
|
composetypes "github.com/docker/cli/cli/compose/types"
|
@ -1,4 +1,4 @@
|
|||||||
package convert
|
package convert // https://github.com/docker/cli/blob/master/cli/compose/convert/volume_test.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
@ -1,4 +1,4 @@
|
|||||||
package stack
|
package stack // https://github.com/docker/cli/blob/master/cli/command/stack/loader/loader.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
@ -1,4 +1,4 @@
|
|||||||
package stack
|
package stack // https://github.com/docker/cli/blob/master/cli/command/stack/options/opts.go
|
||||||
|
|
||||||
// Deploy holds docker stack deploy options
|
// Deploy holds docker stack deploy options
|
||||||
type Deploy struct {
|
type Deploy struct {
|
@ -1,4 +1,4 @@
|
|||||||
package stack
|
package stack // https://github.com/docker/cli/blob/master/cli/command/stack/remove.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
@ -1,12 +1,16 @@
|
|||||||
package stack
|
package stack // https://github.com/docker/cli/blob/master/cli/command/stack/swarm/common.go
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
|
"io/ioutil"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
abraClient "coopcloud.tech/abra/pkg/client"
|
abraClient "coopcloud.tech/abra/pkg/client"
|
||||||
"coopcloud.tech/abra/pkg/client/convert"
|
"coopcloud.tech/abra/pkg/upstream/convert"
|
||||||
|
"github.com/docker/cli/cli/command/service/progress"
|
||||||
composetypes "github.com/docker/cli/cli/compose/types"
|
composetypes "github.com/docker/cli/cli/compose/types"
|
||||||
"github.com/docker/docker/api/types"
|
"github.com/docker/docker/api/types"
|
||||||
"github.com/docker/docker/api/types/container"
|
"github.com/docker/docker/api/types/container"
|
||||||
@ -346,6 +350,7 @@ func deployServices(
|
|||||||
existingServiceMap[service.Spec.Name] = service
|
existingServiceMap[service.Spec.Name] = service
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var serviceIDs []string
|
||||||
for internalName, serviceSpec := range services {
|
for internalName, serviceSpec := range services {
|
||||||
var (
|
var (
|
||||||
name = namespace.Scope(internalName)
|
name = namespace.Scope(internalName)
|
||||||
@ -405,6 +410,8 @@ func deployServices(
|
|||||||
return errors.Wrapf(err, "failed to update service %s", name)
|
return errors.Wrapf(err, "failed to update service %s", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
serviceIDs = append(serviceIDs, service.ID)
|
||||||
|
|
||||||
for _, warning := range response.Warnings {
|
for _, warning := range response.Warnings {
|
||||||
logrus.Warn(warning)
|
logrus.Warn(warning)
|
||||||
}
|
}
|
||||||
@ -418,11 +425,35 @@ func deployServices(
|
|||||||
createOpts.QueryRegistry = true
|
createOpts.QueryRegistry = true
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, err := cl.ServiceCreate(ctx, serviceSpec, createOpts); err != nil {
|
serviceCreateResponse, err := cl.ServiceCreate(ctx, serviceSpec, createOpts)
|
||||||
|
if err != nil {
|
||||||
return errors.Wrapf(err, "failed to create service %s", name)
|
return errors.Wrapf(err, "failed to create service %s", name)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
serviceIDs = append(serviceIDs, serviceCreateResponse.ID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logrus.Infof("waiting for services to converge: %s", strings.Join(serviceIDs, ", "))
|
||||||
|
|
||||||
|
ch := make(chan error, len(serviceIDs))
|
||||||
|
for _, serviceID := range serviceIDs {
|
||||||
|
logrus.Debugf("waiting on %s to converge", serviceID)
|
||||||
|
go func(s string) {
|
||||||
|
ch <- waitOnService(ctx, cl, s)
|
||||||
|
}(serviceID)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, serviceID := range serviceIDs {
|
||||||
|
err := <-ch
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
logrus.Debugf("assuming %s converged successfully", serviceID)
|
||||||
|
}
|
||||||
|
|
||||||
|
logrus.Info("services converged 👌")
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -437,3 +468,25 @@ func getStackSecrets(ctx context.Context, dockerclient client.APIClient, namespa
|
|||||||
func getStackConfigs(ctx context.Context, dockerclient client.APIClient, namespace string) ([]swarm.Config, error) {
|
func getStackConfigs(ctx context.Context, dockerclient client.APIClient, namespace string) ([]swarm.Config, error) {
|
||||||
return dockerclient.ConfigList(ctx, types.ConfigListOptions{Filters: getStackFilter(namespace)})
|
return dockerclient.ConfigList(ctx, types.ConfigListOptions{Filters: getStackFilter(namespace)})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://github.com/docker/cli/blob/master/cli/command/service/helpers.go
|
||||||
|
// https://github.com/docker/cli/blob/master/cli/command/service/progress/progress.go
|
||||||
|
func waitOnService(ctx context.Context, cl *dockerclient.Client, serviceID string) error {
|
||||||
|
errChan := make(chan error, 1)
|
||||||
|
pipeReader, pipeWriter := io.Pipe()
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
errChan <- progress.ServiceProgress(ctx, cl, serviceID, pipeWriter)
|
||||||
|
}()
|
||||||
|
|
||||||
|
go io.Copy(ioutil.Discard, pipeReader)
|
||||||
|
|
||||||
|
timeout := 60 * time.Second
|
||||||
|
|
||||||
|
select {
|
||||||
|
case err := <-errChan:
|
||||||
|
return err
|
||||||
|
case <-time.After(timeout):
|
||||||
|
return fmt.Errorf("%s has still not converged (%s second timeout)?", serviceID, timeout)
|
||||||
|
}
|
||||||
|
}
|
3
renovate.json
Normal file
3
renovate.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||||
|
}
|
@ -1,7 +1,16 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
ABRA_VERSION="0.2.1-alpha"
|
ABRA_VERSION="0.3.0-alpha"
|
||||||
ABRA_RELEASE_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$ABRA_VERSION"
|
ABRA_RELEASE_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$ABRA_VERSION"
|
||||||
|
RC_VERSION="0.3.1-alpha-rc2"
|
||||||
|
RC_VERSION_URL="https://git.coopcloud.tech/api/v1/repos/coop-cloud/abra/releases/tags/$RC_VERSION"
|
||||||
|
|
||||||
|
for arg in "$@"; do
|
||||||
|
if [ "$arg" == "--rc" ]; then
|
||||||
|
ABRA_VERSION="$RC_VERSION"
|
||||||
|
ABRA_RELEASE_URL="$RC_VERSION_URL"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
function show_banner {
|
function show_banner {
|
||||||
echo ""
|
echo ""
|
||||||
@ -18,6 +27,13 @@ function show_banner {
|
|||||||
echo ""
|
echo ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function print_checksum_error {
|
||||||
|
echo "$(tput setaf 1)ERROR: the checksum of downloaded file doesn't match the checksum in release!!! Either the file was corrupted during download or the file has been changed during transport!$(tput sgr0)"
|
||||||
|
echo "expected checksum: $checksum"
|
||||||
|
echo "checksum of downloaded file: $localsum"
|
||||||
|
echo "abra was NOT installed/upgraded"
|
||||||
|
}
|
||||||
|
|
||||||
function install_abra_release {
|
function install_abra_release {
|
||||||
mkdir -p "$HOME/.local/bin"
|
mkdir -p "$HOME/.local/bin"
|
||||||
|
|
||||||
@ -28,24 +44,52 @@ function install_abra_release {
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if ! type "curl" > /dev/null 2>&1; then
|
|
||||||
error "'python3' is not installed, cannot proceed..."
|
|
||||||
echo "perhaps try installing manually via the releases URL?"
|
|
||||||
echo "https://git.coopcloud.tech/coop-cloud/abra/releases"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# FIXME: support different architectures
|
# FIXME: support different architectures
|
||||||
PLATFORM=$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m)
|
PLATFORM=$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m)
|
||||||
sed_command='s/.*"assets":\[\{[^}]*"name":"abra.*_'"$PLATFORM"'"[^}]*"browser_download_url":"([^"]*)".*\].*/\1/p'
|
FILENAME="abra_"$ABRA_VERSION"_"$PLATFORM""
|
||||||
release_url=$(curl -s $ABRA_RELEASE_URL | sed -En $sed_command)
|
sed_command_rel='s/.*"assets":\[\{[^]]*"name":"'$FILENAME'"[^}]*"browser_download_url":"([^"]*)".*\].*/\1/p'
|
||||||
|
sed_command_checksums='s/.*"assets":\[\{[^\]*"name":"checksums.txt"[^}]*"browser_download_url":"([^"]*)".*\].*/\1/p'
|
||||||
|
|
||||||
|
json=$(curl -s $ABRA_RELEASE_URL)
|
||||||
|
release_url=$(echo $json | sed -En $sed_command_rel)
|
||||||
|
checksums_url=$(echo $json | sed -En $sed_command_checksums)
|
||||||
|
|
||||||
|
checksums=$(curl -s $checksums_url)
|
||||||
|
checksum=$(echo "$checksums" | grep "$FILENAME" - | sed -En 's/([0-9a-f]{64})\s+'"$FILENAME"'.*/\1/p')
|
||||||
|
|
||||||
echo "downloading $ABRA_VERSION $PLATFORM binary release for abra..."
|
echo "downloading $ABRA_VERSION $PLATFORM binary release for abra..."
|
||||||
curl --progress-bar "$release_url" --output "$HOME/.local/bin/abra"
|
curl --progress-bar "$release_url" --output "$HOME/.local/bin/.abra-download"
|
||||||
|
localsum=$(sha256sum $HOME/.local/bin/.abra-download | sed -En 's/([0-9a-f]{64})\s+.*/\1/p')
|
||||||
|
echo "checking if checksums match..."
|
||||||
|
if [[ "$localsum" != "$checksum" ]]; then
|
||||||
|
print_checksum_error
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "$(tput setaf 2)check successful!$(tput sgr0)"
|
||||||
|
mv "$HOME/.local/bin/.abra-download" "$HOME/.local/bin/abra"
|
||||||
chmod +x "$HOME/.local/bin/abra"
|
chmod +x "$HOME/.local/bin/abra"
|
||||||
|
|
||||||
|
x=$(echo $PATH | grep $HOME/.local/bin)
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "$(tput setaf 3)WARNING: $HOME/.local/bin/ is not in \$PATH! If you want to run abra by just typing "abra" you should add it to your \$PATH! To do that run:$(tput sgr0)"
|
||||||
|
p=$HOME/.local/bin
|
||||||
|
com="echo PATH=\$PATH:$p"
|
||||||
|
if [[ $SHELL =~ "bash" ]]; then
|
||||||
|
echo "echo $com >> $HOME/.bashrc"
|
||||||
|
elif [[ $SHELL =~ "fizsh" ]]; then
|
||||||
|
echo "echo $com >> $HOME/.fizsh/.fizshrc"
|
||||||
|
elif [[ $SHELL =~ "zsh" ]]; then
|
||||||
|
echo "echo $com >> $HOME/.zshrc"
|
||||||
|
else
|
||||||
|
echo "echo $com >> $HOME/.profile"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo "abra installed to $HOME/.local/bin/abra"
|
echo "abra installed to $HOME/.local/bin/abra"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function run_installation {
|
function run_installation {
|
||||||
show_banner
|
show_banner
|
||||||
install_abra_release
|
install_abra_release
|
||||||
|
Reference in New Issue
Block a user