Compare commits
110 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
cb225908d0 | ||
|
f2892bad6f | ||
|
480b1453ec | ||
0ab2b3a652 | |||
|
93714a593b | ||
|
57f3f96bbc | ||
|
e1959506c7 | ||
|
7482362af1 | ||
|
e8510c8aeb | ||
|
4042e10985 | ||
|
f7cd0eb54c | ||
|
a571b839a8 | ||
|
fae13d9af8 | ||
|
9c9f7225e7 | ||
352cc0939b | |||
|
2ca7884bbe | ||
fa54705f79 | |||
|
8d802c78aa | ||
1c022fb616 | |||
|
0655c03434 | ||
|
f6bdf596f5 | ||
6c6e6808c9 | |||
|
a3ffd7f239 | ||
|
a019417fd2 | ||
|
743600b94e | ||
|
f4c2da894b | ||
|
4ef433312d | ||
|
9f69532dca | ||
|
3a97358f30 | ||
|
1e19805757 | ||
|
389ad9d049 | ||
|
93ffc633f3 | ||
|
b61c9410a0 | ||
|
bbab900ebc | ||
|
36d4dbc5cf | ||
|
a4ade1463f | ||
|
20af4666c6 | ||
|
d15b031f33 | ||
|
a7f0bbde62 | ||
|
76d5a1026a | ||
|
7b0fb50e7f | ||
|
f92364af80 | ||
|
ca2a3c8b58 | ||
|
a5c5526948 | ||
|
d16eb0e309 | ||
|
3cff8aaada | ||
|
4ff4c83154 | ||
|
f953743a7c | ||
|
e84062e67c | ||
|
e573794367 | ||
|
87f9c16db4 | ||
|
9fadc430a7 | ||
|
53cec2469b | ||
|
a1de7f10cb | ||
|
ece968478d | ||
|
3759bcd641 | ||
|
0ff08b5d34 | ||
|
8b541623ad | ||
|
f24259dbfc | ||
|
40259f5e97 | ||
|
fd471eb3f1 | ||
|
a4633f06bd | ||
|
0d6031fef9 | ||
|
64d578cf91 | ||
|
e216fe290b | ||
|
207278af75 | ||
|
ff309182ea | ||
|
542cf793d2 | ||
|
ad1fe2b8d7 | ||
|
0771d58b69 | ||
|
b24cdce354 | ||
|
499cc46583 | ||
|
0af0ea096f | ||
|
925df196fc | ||
|
efad71c470 | ||
|
cac13fb64e | ||
|
42923ced55 | ||
6a12955649 | |||
|
ceccb28380 | ||
|
b033fe9450 | ||
|
0e29e78144 | ||
|
c92f80cf7e | ||
|
a7f7c965c4 | ||
|
e04c5228de | ||
|
6c9dff0eed | ||
|
c45598d7b4 | ||
|
4e1c3bfe2f | ||
|
615c6b0614 | ||
|
b14219b492 | ||
|
8c93d1ae88 | ||
|
cf2ae05dfd | ||
|
70974690f9 | ||
|
a4f3fc5ce2 | ||
|
8a4f82ba84 | ||
|
a1534a244a | ||
|
fccd7865f5 | ||
|
4e84664310 | ||
|
047c0e6d47 | ||
|
fc2d770099 | ||
|
1b85bf3d37 | ||
2d6a08a671 | |||
316bcd5a68 | |||
1a4cf9be17 | |||
eadb353c2e | |||
|
f374b1bfa1 | ||
|
0e6b0e0879 | ||
|
3a353f4062 | ||
e0258d397b | |||
e8ac353453 | |||
|
552abdd980 |
66
.drone.yml
66
.drone.yml
@ -18,32 +18,60 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- bats tests
|
- bats tests
|
||||||
|
|
||||||
- name: collect code coverage
|
- name: publish image
|
||||||
failure: ignore # until we fix this
|
image: plugins/docker
|
||||||
image: decentral1se/docker-dind-bats-kcov
|
|
||||||
commands:
|
|
||||||
- kcov . bats tests || true
|
|
||||||
|
|
||||||
- name: send code coverage report to codecov
|
|
||||||
failure: ignore # until we fix this
|
|
||||||
image: plugins/codecov
|
|
||||||
settings:
|
settings:
|
||||||
|
auto_tag: true
|
||||||
|
username: thecoopcloud
|
||||||
|
password:
|
||||||
|
from_secret: thecoopcloud_password
|
||||||
|
repo: thecoopcloud/abra
|
||||||
|
tags: latest
|
||||||
|
depends_on:
|
||||||
|
- run shellcheck
|
||||||
|
- run flake8
|
||||||
|
- run unit tests
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
|
- name: trigger downstream builds
|
||||||
|
image: plugins/downstream
|
||||||
|
settings:
|
||||||
|
server: https://drone.autonomic.zone
|
||||||
token:
|
token:
|
||||||
from_secret: codecov_token
|
from_secret: decentral1se_token
|
||||||
required: true
|
fork: true
|
||||||
|
repositories:
|
||||||
|
- coop-cloud/drone-abra
|
||||||
|
depends_on:
|
||||||
|
- run shellcheck
|
||||||
|
- run flake8
|
||||||
|
- run unit tests
|
||||||
|
- publish image
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
|
||||||
- name: notify rocket chat
|
- name: notify on failure
|
||||||
image: plugins/slack
|
image: plugins/matrix
|
||||||
settings:
|
settings:
|
||||||
webhook:
|
homeserver: https://matrix.autonomic.zone
|
||||||
from_secret: rc_builds_url
|
roomid: "IFazIpLtxiScqbHqoa:autonomic.zone"
|
||||||
username: comradebritney
|
userid: "@autono-bot:autonomic.zone"
|
||||||
channel: "internal.builds"
|
accesstoken:
|
||||||
template: "{{repo.owner}}/{{repo.name}} build failed: {{build.link}}"
|
from_secret: autono_bot_access_token
|
||||||
|
depends_on:
|
||||||
|
- run shellcheck
|
||||||
|
- run flake8
|
||||||
|
- run unit tests
|
||||||
|
- publish image
|
||||||
|
- trigger downstream builds
|
||||||
when:
|
when:
|
||||||
status:
|
status:
|
||||||
- failure
|
- failure
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
- main
|
- main
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1,5 @@
|
|||||||
|
*.json
|
||||||
|
*.pyc
|
||||||
/.venv
|
/.venv
|
||||||
|
__pycache__
|
||||||
coverage/
|
coverage/
|
||||||
|
40
CHANGELOG.md
40
CHANGELOG.md
@ -9,9 +9,49 @@
|
|||||||
|
|
||||||
# abra x.x.x (UNRELEASED)
|
# abra x.x.x (UNRELEASED)
|
||||||
|
|
||||||
|
- Add `--bump` to `deploy` command to allow packagers to make minor package related releases ([#173](https://git.autonomic.zone/coop-cloud/abra/issues/173))
|
||||||
|
- Drop `--skip-version-check`/`--no-domain-poll`/`--no-state-poll` in favour of `--fast` ([#169](https://git.autonomic.zone/coop-cloud/abra/issues/169))
|
||||||
|
- Move `abra` image under the new `thecoopcloud/...` namespace ([#1](https://git.autonomic.zone/coop-cloud/auto-apps-json/issues/1))
|
||||||
|
- Add a `--output` flag to the `app-json.py` app generator for the CI environment ([#2](https://git.autonomic.zone/coop-cloud/auto-apps-json/issues/2))
|
||||||
|
- Support logging in as new `thecoopcloud` Docker account via `skopeo` when generating new `apps.json` ([7482362af1](https://git.autonomic.zone/coop-cloud/abra/commit/7482362af1d01cc02828abd45b1222fa643d1f80))
|
||||||
|
- App deployment checks are somewhat more reliable (see [#193](https://git.autonomic.zone/coop-cloud/abra/issues/193) for remaining work) ([#165](https://git.autonomic.zone/coop-cloud/abra/issues/165))
|
||||||
|
|
||||||
|
# abra 9.0.0 (2021-06-10)
|
||||||
|
|
||||||
|
- Add Docker image for `abra` ([64d578cf91](https://git.autonomic.zone/coop-cloud/abra/commit/64d578cf914bd2bad378ea4ef375747d10b33191))
|
||||||
|
- Support unattended mode for recipe releasing ([3759bcd641](https://git.autonomic.zone/coop-cloud/abra/commit/3759bcd641cf60611c13927e83425e773d2bb629))
|
||||||
|
- Add Renovate bot configuraiton script ([9fadc430a7](https://git.autonomic.zone/coop-cloud/abra/commit/9fadc430a7bb2d554c0ee26c0f9b6c51dc5b0475))
|
||||||
|
- Add release automation via [drone-abra](https://git.autonomic.zone/coop-cloud/drone-abra) ([#56](https://git.autonomic.zone/coop-cloud/organising/issues/56))
|
||||||
|
- Move `apps.json` generation to [auto-apps-json](https://git.autonomic.zone/coop-cloud/auto-apps-json) ([#125](https://git.autonomic.zone/coop-cloud/abra/issues/125))
|
||||||
|
- Add Github mirroring script ([4ef433312d](https://git.autonomic.zone/coop-cloud/abra/commit/4ef433312dd0b0ace91b3c285f82f3973093d92d))
|
||||||
|
- Add `--chaos` flag to deploy (always choose latest Git commit) ([#178](https://git.autonomic.zone/coop-cloud/abra/issues/178))
|
||||||
|
|
||||||
|
# abra 8.0.1 (2021-05-31)
|
||||||
|
|
||||||
|
- Fix help for `... app ... volume ls` ([efad71c470](https://git.autonomic.zone/coop-cloud/abra/commits/branch/main))
|
||||||
|
- Only output secrets warnings once ([#143](https://git.autonomic.zone/coop-cloud/abra/issues/143))
|
||||||
|
- Migrate `abra` installation script to `coopcloud.tech` domain ([#150](https://git.autonomic.zone/coop-cloud/abra/issues/150))
|
||||||
|
- Add `--no-state-poll` to avoid success/failure forecasting on deployment ([#165](https://git.autonomic.zone/coop-cloud/abra/issues/165))
|
||||||
|
|
||||||
|
# abra 8.0.0 (2021-05-30)
|
||||||
|
|
||||||
|
- Fix secret length generation ([f537417](https://git.autonomic.zone/coop-cloud/abra/commit/1b85bf3d37280e9632c315d759c0f2d09c039fef))
|
||||||
|
- Fix checking out new apps ([#164](https://git.autonomic.zone/coop-cloud/abra/issues/164)
|
||||||
|
- Give up if YAML is invalid ([#154](https://git.autonomic.zone/coop-cloud/abra/issues/154))
|
||||||
|
- Switch from wget to cURL ([fc0caaa](https://git.autonomic.zone/coop-cloud/abra/commit/fc0caaa))
|
||||||
|
- Add Bash completion for `recipe ..` ([8c93d1a](https://git.autonomic.zone/coop-cloud/abra/commit/8c93d1a))
|
||||||
|
- Tweak README parsing in `app-json.py` ([b14219b](https://git.autonomic.zone/coop-cloud/abra/commit/b14219b))
|
||||||
|
- Add fallback names to `app.json` ([#157](https://git.autonomic.zone/coop-cloud/abra/issues/157))
|
||||||
|
- Remove duplicate message ([#155](https://git.autonomic.zone/coop-cloud/abra/issues/155))
|
||||||
|
- Add `deploy --fast` ([a7f7c96](https://git.autonomic.zone/coop-cloud/abra/commit/a7f7c96))
|
||||||
|
- Add `app .. volume` commands, fix volume deletion with `app .. delete --volumes` ([#161](https://git.autonomic.zone/coop-cloud/abra/issues/161))
|
||||||
|
|
||||||
|
# abra 0.7.4 (2021-05-10)
|
||||||
|
|
||||||
- Sort `apps.json` when publishing ([39a7fc0](https://git.autonomic.zone/coop-cloud/abra/commit/39a7fc04fb5df1a6d78b84f51838530ab3eb76db))
|
- Sort `apps.json` when publishing ([39a7fc0](https://git.autonomic.zone/coop-cloud/abra/commit/39a7fc04fb5df1a6d78b84f51838530ab3eb76db))
|
||||||
- Fix publishing of rating for new apps ([0e28af9](https://git.autonomic.zone/coop-cloud/abra/commit/0e28af9eb1af6c6da705b4614ddd173c60576629))
|
- Fix publishing of rating for new apps ([0e28af9](https://git.autonomic.zone/coop-cloud/abra/commit/0e28af9eb1af6c6da705b4614ddd173c60576629))
|
||||||
- Detect compose filenames in `n+1` release generation ([ffc569e](https://git.autonomic.zone/coop-cloud/abra/commit/ffc569e275df7ca784a4db1a3331e17975fd8c87))
|
- Detect compose filenames in `n+1` release generation ([ffc569e](https://git.autonomic.zone/coop-cloud/abra/commit/ffc569e275df7ca784a4db1a3331e17975fd8c87))
|
||||||
|
- Fix secret generation when specifying length ([3a353f4](https://git.autonomic.zone/coop-cloud/abra/commit/3a353f4062baccde2c9f175b03afb2db6d462ae4))
|
||||||
|
|
||||||
# abra 0.7.3 (2021-04-28)
|
# abra 0.7.3 (2021-04-28)
|
||||||
|
|
||||||
|
33
Dockerfile
Normal file
33
Dockerfile
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
FROM alpine:latest
|
||||||
|
|
||||||
|
RUN apk add --upgrade --no-cache \
|
||||||
|
bash \
|
||||||
|
curl \
|
||||||
|
git \
|
||||||
|
grep \
|
||||||
|
openssh-client \
|
||||||
|
py3-requests \
|
||||||
|
skopeo \
|
||||||
|
util-linux
|
||||||
|
|
||||||
|
RUN mkdir -p ~./local/bin
|
||||||
|
RUN mkdir -p ~/.abra/apps
|
||||||
|
RUN mkdir -p ~/.abra/vendor
|
||||||
|
RUN mkdir -p ~/.ssh/
|
||||||
|
|
||||||
|
RUN ssh-keyscan -p 2222 git.autonomic.zone > ~/.ssh/known_hosts
|
||||||
|
|
||||||
|
RUN curl -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 --output ~/.abra/vendor/jq
|
||||||
|
RUN chmod +x ~/.abra/vendor/jq
|
||||||
|
|
||||||
|
RUN curl -L https://github.com/mikefarah/yq/releases/download/v4.9.3/yq_linux_amd64 --output ~/.abra/vendor/yq
|
||||||
|
RUN chmod +x ~/.abra/vendor/yq
|
||||||
|
|
||||||
|
# Note(decentral1se): it is fine to always use the development branch because
|
||||||
|
# our Drone CI docker auto-tagger will publish official release tags and
|
||||||
|
# otherwise give us the latest abra on the latest tag
|
||||||
|
RUN curl https://install.abra.coopcloud.tech | bash -s -- --dev
|
||||||
|
|
||||||
|
COPY bin/* /root/.local/bin/
|
||||||
|
|
||||||
|
ENTRYPOINT ["/root/.local/bin/abra"]
|
50
README.md
50
README.md
@ -1,11 +1,10 @@
|
|||||||
# abra
|
# abra
|
||||||
|
|
||||||
[![Build Status](https://drone.autonomic.zone/api/badges/coop-cloud/abra/status.svg)](https://drone.autonomic.zone/coop-cloud/abra)
|
[![Build Status](https://drone.autonomic.zone/api/badges/coop-cloud/abra/status.svg)](https://drone.autonomic.zone/coop-cloud/abra)
|
||||||
[![codecov](https://codecov.io/gh/Autonomic-Cooperative/abra/branch/main/graph/badge.svg?token=aX3I5NMRsj)](undefined)
|
|
||||||
|
|
||||||
> https://coopcloud.tech
|
> https://coopcloud.tech
|
||||||
|
|
||||||
The cooperative 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 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.
|
||||||
|
|
||||||
@ -28,19 +27,35 @@ See [CHANGELOG.md](./CHANGELOG.md).
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
|
Requirements:
|
||||||
|
|
||||||
|
- `pwqgen` (optional)
|
||||||
|
- `pwgen` (optional)
|
||||||
|
- `curl`
|
||||||
|
- `docker`
|
||||||
|
- `bash` >= 4
|
||||||
|
|
||||||
Install the latest stable release:
|
Install the latest stable release:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl https://install.abra.autonomic.zone | bash
|
curl https://install.abra.coopcloud.tech | bash
|
||||||
```
|
```
|
||||||
|
|
||||||
or the bleeding-edge development version:
|
or the bleeding-edge development version:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
curl https://install.abra.autonomic.zone | bash -s -- --dev
|
curl https://install.abra.coopcloud.tech | bash -s -- --dev
|
||||||
```
|
```
|
||||||
|
|
||||||
The source for this script is [here](./deploy/install.abra.autonomic.zone/installer).
|
The source for this script is [here](./deploy/install.abra.coopcloud.tech/installer).
|
||||||
|
|
||||||
|
## Container
|
||||||
|
|
||||||
|
An [image](https://hub.docker.com/r/thecoopcloud/abra) is also provided.
|
||||||
|
|
||||||
|
```
|
||||||
|
docker run thecoopcloud/abra app ls
|
||||||
|
```
|
||||||
|
|
||||||
## Update
|
## Update
|
||||||
|
|
||||||
@ -53,41 +68,22 @@ To update the development version, run `abra upgrade --dev`.
|
|||||||
|
|
||||||
It's written in Bash version 4 or greater!
|
It's written in Bash version 4 or greater!
|
||||||
|
|
||||||
Install it via `curl https://install.abra.autonomic.zone | bash -s -- --dev`, then you can hack on the source in `~/.abra/src`.
|
Install it via `curl https://install.abra.coopcloud.tech | bash -s -- --dev`, then you can hack on the source in `~/.abra/src`.
|
||||||
|
|
||||||
The command-line interface is generated via [docopt](http://docopt.org/). If you add arguments then you need to run `make docopt` ro regenerate the parser.
|
The command-line interface is generated via [docopt](http://docopt.org/). If you add arguments then you need to run `make docopt` ro regenerate the parser.
|
||||||
|
|
||||||
Please remember to update the [CHANGELOG](./CHANGELOG.md) when you make a change.
|
Please remember to update the [CHANGELOG](./CHANGELOG.md) when you make a change.
|
||||||
|
|
||||||
## Generating a new apps.json
|
|
||||||
|
|
||||||
You'll need to install the following requirements:
|
|
||||||
|
|
||||||
- [requests](https://docs.python-requests.org/en/master/) (`apt install python3-requests` / `pip install requests`)
|
|
||||||
- [skopeo](https://github.com/containers/skopeo) (check [the install docs](https://github.com/containers/skopeo/blob/master/install.md))
|
|
||||||
- [jq](https://stedolan.github.io/jq/tutorial/) (`sudo apt-get install jq` or see [the install docs](https://stedolan.github.io/jq/download/))
|
|
||||||
- [yq](https://mikefarah.gitbook.io/yq/) (see [the install docs](https://mikefarah.gitbook.io/yq/#install))
|
|
||||||
|
|
||||||
Then run `./bin/app-json.py` ([source](./bin/app-json.py)) and it will spit out the JSON file into [deploy/apps.coopcloud.tech/apps.json](./deploy/apps.coopcloud.tech/apps.json).
|
|
||||||
|
|
||||||
## Releasing
|
## Releasing
|
||||||
|
|
||||||
### `abra`
|
### `abra`
|
||||||
|
|
||||||
> [install.abra.autonomic.zone](https://install.abra.autonomic.zone)
|
> [install.abra.coopcloud.tech](https://install.abra.coopcloud.tech)
|
||||||
|
|
||||||
- Change the `x.x.x` header in [CHANGELOG.md](./CHANGELOG.md) to reflect new version and mark date
|
- Change the `x.x.x` header in [CHANGELOG.md](./CHANGELOG.md) to reflect new version and mark date
|
||||||
- Update the version in [abra](./abra)
|
- Update the version in [abra](./abra)
|
||||||
- Update the version in [deploy/install.abra.autonomic.zone/installer](./deploy/install.abra.autonomic.zone/installer)
|
- Update the version in [deploy/install.abra.coopcloud.tech/installer](./deploy/install.abra.coopcloud.tech/installer)
|
||||||
- `git commit` the above changes and then tag it with `git tag <your-new-version>`
|
- `git commit` the above changes and then tag it with `git tag <your-new-version>`
|
||||||
- `git push` and `git push --tags`
|
- `git push` and `git push --tags`
|
||||||
- Deploy a new installer script `make release-installer`
|
- Deploy a new installer script `make release-installer`
|
||||||
- Tell the world (CoTech forum, Matrix public channel, Autonomic mastodon, etc.)
|
- Tell the world (CoTech forum, Matrix public channel, Autonomic mastodon, etc.)
|
||||||
|
|
||||||
### apps.coopcloud.tech
|
|
||||||
|
|
||||||
> [apps.coopcloud.tech](https://apps.coopcloud.tech)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
$ make release-apps
|
|
||||||
```
|
|
||||||
|
579
abra
579
abra
@ -3,7 +3,7 @@
|
|||||||
GIT_URL="https://git.autonomic.zone/coop-cloud/"
|
GIT_URL="https://git.autonomic.zone/coop-cloud/"
|
||||||
ABRA_APPS_URL="https://apps.coopcloud.tech"
|
ABRA_APPS_URL="https://apps.coopcloud.tech"
|
||||||
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
|
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
|
||||||
ABRA_VERSION="0.7.3"
|
ABRA_VERSION="9.0.0"
|
||||||
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
|
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
|
||||||
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
|
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
|
||||||
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"
|
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"
|
||||||
@ -19,7 +19,7 @@ Usage:
|
|||||||
abra [options] app (list|ls) [--status] [--server=<server>] [--type=<type>]
|
abra [options] app (list|ls) [--status] [--server=<server>] [--type=<type>]
|
||||||
abra [options] app new [--server=<server>] [--domain=<domain>] [--app-name=<app_name>] [--pass] [--secrets] <type>
|
abra [options] app new [--server=<server>] [--domain=<domain>] [--app-name=<app_name>] [--pass] [--secrets] <type>
|
||||||
abra [options] app <app> backup (<service>|--all)
|
abra [options] app <app> backup (<service>|--all)
|
||||||
abra [options] app <app> deploy [--update] [--force] [--skip-version-check] [--no-domain-poll] [<version>]
|
abra [options] app <app> deploy [--update] [--force] [--fast] [--chaos] [<version>]
|
||||||
abra [options] app <app> check
|
abra [options] app <app> check
|
||||||
abra [options] app <app> version
|
abra [options] app <app> version
|
||||||
abra [options] app <app> config
|
abra [options] app <app> config
|
||||||
@ -35,10 +35,12 @@ Usage:
|
|||||||
abra [options] app <app> secret insert <secret> <version> <data> [--pass]
|
abra [options] app <app> secret insert <secret> <version> <data> [--pass]
|
||||||
abra [options] app <app> secret (rm|delete) (<secret>|--all) [--pass]
|
abra [options] app <app> secret (rm|delete) (<secret>|--all) [--pass]
|
||||||
abra [options] app <app> undeploy
|
abra [options] app <app> undeploy
|
||||||
|
abra [options] app <app> volume ls
|
||||||
|
abra [options] app <app> volume (rm|delete) (<volume>|--all)
|
||||||
abra [options] app <app> <command> [<args>...]
|
abra [options] app <app> <command> [<args>...]
|
||||||
abra [options] recipe ls
|
abra [options] recipe ls
|
||||||
abra [options] recipe create <recipe>
|
abra [options] recipe create <recipe>
|
||||||
abra [options] recipe <recipe> release [--force]
|
abra [options] recipe <recipe> release [--force] [--bump]
|
||||||
abra [options] recipe <recipe> versions
|
abra [options] recipe <recipe> versions
|
||||||
abra [options] server add <host> [<user>] [<port>]
|
abra [options] server add <host> [<user>] [<port>]
|
||||||
abra [options] server new <provider> -- <args>
|
abra [options] server new <provider> -- <args>
|
||||||
@ -165,123 +167,127 @@ eval "var_$1+=($value)"; else eval "var_$1=$value"; fi; return 0; fi; done
|
|||||||
return 1; }; stdout() { printf -- "cat <<'EOM'\n%s\nEOM\n" "$1"; }; stderr() {
|
return 1; }; stdout() { printf -- "cat <<'EOM'\n%s\nEOM\n" "$1"; }; stderr() {
|
||||||
printf -- "cat <<'EOM' >&2\n%s\nEOM\n" "$1"; }; error() {
|
printf -- "cat <<'EOM' >&2\n%s\nEOM\n" "$1"; }; error() {
|
||||||
[[ -n $1 ]] && stderr "$1"; stderr "$usage"; _return 1; }; _return() {
|
[[ -n $1 ]] && stderr "$1"; stderr "$usage"; _return 1; }; _return() {
|
||||||
printf -- "exit %d\n" "$1"; exit "$1"; }; set -e; trimmed_doc=${DOC:1:2365}
|
printf -- "exit %d\n" "$1"; exit "$1"; }; set -e; trimmed_doc=${DOC:1:2451}
|
||||||
usage=${DOC:40:1756}; digest=de09c
|
usage=${DOC:40:1842}; digest=c7bae
|
||||||
shorts=(-s -b -d -C -e -n -h -v -U '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '')
|
shorts=(-C -n -U -e -b -d -h -s -v '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '' '')
|
||||||
longs=(--stack --branch --debug --skip-check --env --no-prompt --help --verbose --skip-update --status --server --type --domain --app-name --pass --secrets --all --update --force --skip-version-check --no-domain-poll --volumes --no-tty --user --dev)
|
longs=(--skip-check --no-prompt --skip-update --env --branch --debug --help --stack --verbose --status --server --type --domain --app-name --pass --secrets --all --update --force --fast --chaos --volumes --no-tty --user --bump --dev)
|
||||||
argcounts=(1 1 0 0 1 0 0 0 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0); node_0(){
|
argcounts=(0 0 0 1 1 0 0 1 0 0 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0); node_0(){
|
||||||
value __stack 0; }; node_1(){ value __branch 1; }; node_2(){ switch __debug 2; }
|
switch __skip_check 0; }; node_1(){ switch __no_prompt 1; }; node_2(){
|
||||||
node_3(){ switch __skip_check 3; }; node_4(){ value __env 4; }; node_5(){
|
switch __skip_update 2; }; node_3(){ value __env 3; }; node_4(){
|
||||||
switch __no_prompt 5; }; node_6(){ switch __help 6; }; node_7(){
|
value __branch 4; }; node_5(){ switch __debug 5; }; node_6(){ switch __help 6; }
|
||||||
switch __verbose 7; }; node_8(){ switch __skip_update 8; }; node_9(){
|
node_7(){ value __stack 7; }; node_8(){ switch __verbose 8; }; node_9(){
|
||||||
switch __status 9; }; node_10(){ value __server 10; }; node_11(){
|
switch __status 9; }; node_10(){ value __server 10; }; node_11(){
|
||||||
value __type 11; }; node_12(){ value __domain 12; }; node_13(){
|
value __type 11; }; node_12(){ value __domain 12; }; node_13(){
|
||||||
value __app_name 13; }; node_14(){ switch __pass 14; }; node_15(){
|
value __app_name 13; }; node_14(){ switch __pass 14; }; node_15(){
|
||||||
switch __secrets 15; }; node_16(){ switch __all 16; }; node_17(){
|
switch __secrets 15; }; node_16(){ switch __all 16; }; node_17(){
|
||||||
switch __update 17; }; node_18(){ switch __force 18; }; node_19(){
|
switch __update 17; }; node_18(){ switch __force 18; }; node_19(){
|
||||||
switch __skip_version_check 19; }; node_20(){ switch __no_domain_poll 20; }
|
switch __fast 19; }; node_20(){ switch __chaos 20; }; node_21(){
|
||||||
node_21(){ switch __volumes 21; }; node_22(){ switch __no_tty 22; }; node_23(){
|
switch __volumes 21; }; node_22(){ switch __no_tty 22; }; node_23(){
|
||||||
value __user 23; }; node_24(){ switch __dev 24; }; node_25(){ value _type_ a; }
|
value __user 23; }; node_24(){ switch __bump 24; }; node_25(){ switch __dev 25
|
||||||
node_26(){ value _app_ a; }; node_27(){ value _service_ a; }; node_28(){
|
}; node_26(){ value _type_ a; }; node_27(){ value _app_ a; }; node_28(){
|
||||||
value _version_ a; }; node_29(){ value _src_ a; }; node_30(){ value _dst_ a; }
|
value _service_ a; }; node_29(){ value _version_ a; }; node_30(){ value _src_ a
|
||||||
node_31(){ value _backup_file_ a; }; node_32(){ value _args_ a true; }
|
}; node_31(){ value _dst_ a; }; node_32(){ value _backup_file_ a; }; node_33(){
|
||||||
node_33(){ value _secret_ a; }; node_34(){ value _cmd_ a; }; node_35(){
|
value _args_ a true; }; node_34(){ value _secret_ a; }; node_35(){ value _cmd_ a
|
||||||
value _data_ a; }; node_36(){ value _command_ a; }; node_37(){ value _recipe_ a
|
}; node_36(){ value _data_ a; }; node_37(){ value _volume_ a; }; node_38(){
|
||||||
}; node_38(){ value _host_ a; }; node_39(){ value _user_ a; }; node_40(){
|
value _command_ a; }; node_39(){ value _recipe_ a; }; node_40(){ value _host_ a
|
||||||
value _port_ a; }; node_41(){ value _provider_ a; }; node_42(){
|
}; node_41(){ value _user_ a; }; node_42(){ value _port_ a; }; node_43(){
|
||||||
value _subcommands_ a true; }; node_43(){ _command app; }; node_44(){
|
value _provider_ a; }; node_44(){ value _subcommands_ a true; }; node_45(){
|
||||||
_command list; }; node_45(){ _command ls; }; node_46(){ _command new; }
|
_command app; }; node_46(){ _command list; }; node_47(){ _command ls; }
|
||||||
node_47(){ _command backup; }; node_48(){ _command deploy; }; node_49(){
|
node_48(){ _command new; }; node_49(){ _command backup; }; node_50(){
|
||||||
_command check; }; node_50(){ _command version; }; node_51(){ _command config; }
|
_command deploy; }; node_51(){ _command check; }; node_52(){ _command version; }
|
||||||
node_52(){ _command cp; }; node_53(){ _command logs; }; node_54(){ _command ps
|
node_53(){ _command config; }; node_54(){ _command cp; }; node_55(){
|
||||||
}; node_55(){ _command restore; }; node_56(){ _command rm; }; node_57(){
|
_command logs; }; node_56(){ _command ps; }; node_57(){ _command restore; }
|
||||||
_command delete; }; node_58(){ _command run; }; node_59(){ _command rollback; }
|
node_58(){ _command rm; }; node_59(){ _command delete; }; node_60(){
|
||||||
node_60(){ _command secret; }; node_61(){ _command generate; }; node_62(){
|
_command run; }; node_61(){ _command rollback; }; node_62(){ _command secret; }
|
||||||
_command insert; }; node_63(){ _command undeploy; }; node_64(){ _command recipe
|
node_63(){ _command generate; }; node_64(){ _command insert; }; node_65(){
|
||||||
}; node_65(){ _command create; }; node_66(){ _command release; }; node_67(){
|
_command undeploy; }; node_66(){ _command volume; }; node_67(){ _command recipe
|
||||||
_command versions; }; node_68(){ _command server; }; node_69(){ _command add; }
|
}; node_68(){ _command create; }; node_69(){ _command release; }; node_70(){
|
||||||
node_70(){ _command __ --; }; node_71(){ _command init; }; node_72(){
|
_command versions; }; node_71(){ _command server; }; node_72(){ _command add; }
|
||||||
_command apps; }; node_73(){ _command upgrade; }; node_74(){ _command doctor; }
|
node_73(){ _command __ --; }; node_74(){ _command init; }; node_75(){
|
||||||
node_75(){ _command help; }; node_76(){ optional 0 1 2 3 4 5 6 7 8; }
|
_command apps; }; node_76(){ _command upgrade; }; node_77(){ _command doctor; }
|
||||||
node_77(){ optional 76; }; node_78(){ either 44 45; }; node_79(){ required 78; }
|
node_78(){ _command help; }; node_79(){ optional 0 1 2 3 4 5 6 7 8; }
|
||||||
node_80(){ optional 9; }; node_81(){ optional 10; }; node_82(){ optional 11; }
|
node_80(){ optional 79; }; node_81(){ either 46 47; }; node_82(){ required 81; }
|
||||||
node_83(){ required 77 43 79 80 81 82; }; node_84(){ optional 12; }; node_85(){
|
node_83(){ optional 9; }; node_84(){ optional 10; }; node_85(){ optional 11; }
|
||||||
optional 13; }; node_86(){ optional 14; }; node_87(){ optional 15; }; node_88(){
|
node_86(){ required 80 45 82 83 84 85; }; node_87(){ optional 12; }; node_88(){
|
||||||
required 77 43 46 81 84 85 86 87 25; }; node_89(){ either 27 16; }; node_90(){
|
optional 13; }; node_89(){ optional 14; }; node_90(){ optional 15; }; node_91(){
|
||||||
required 89; }; node_91(){ required 77 43 26 47 90; }; node_92(){ optional 17; }
|
required 80 45 48 84 87 88 89 90 26; }; node_92(){ either 28 16; }; node_93(){
|
||||||
node_93(){ optional 18; }; node_94(){ optional 19; }; node_95(){ optional 20; }
|
required 92; }; node_94(){ required 80 45 27 49 93; }; node_95(){ optional 17; }
|
||||||
node_96(){ optional 28; }; node_97(){ required 77 43 26 48 92 93 94 95 96; }
|
node_96(){ optional 18; }; node_97(){ optional 19; }; node_98(){ optional 20; }
|
||||||
node_98(){ required 77 43 26 49; }; node_99(){ required 77 43 26 50; }
|
node_99(){ optional 29; }; node_100(){ required 80 45 27 50 95 96 97 98 99; }
|
||||||
node_100(){ required 77 43 26 51; }; node_101(){ required 77 43 26 52 29 30; }
|
node_101(){ required 80 45 27 51; }; node_102(){ required 80 45 27 52; }
|
||||||
node_102(){ optional 27; }; node_103(){ required 77 43 26 53 102; }; node_104(){
|
node_103(){ required 80 45 27 53; }; node_104(){ required 80 45 27 54 30 31; }
|
||||||
required 77 43 26 54; }; node_105(){ required 77 43 26 55 90; }; node_106(){
|
node_105(){ optional 28; }; node_106(){ required 80 45 27 55 105; }; node_107(){
|
||||||
either 56 57; }; node_107(){ required 106; }; node_108(){ optional 21; }
|
required 80 45 27 56; }; node_108(){ required 80 45 27 57 93; }; node_109(){
|
||||||
node_109(){ required 77 43 26 107 108 87; }; node_110(){ optional 31; }
|
either 58 59; }; node_110(){ required 109; }; node_111(){ optional 21; }
|
||||||
node_111(){ required 77 43 26 55 27 110; }; node_112(){ optional 22; }
|
node_112(){ required 80 45 27 110 111 90; }; node_113(){ optional 32; }
|
||||||
node_113(){ optional 23; }; node_114(){ oneormore 32; }; node_115(){
|
node_114(){ required 80 45 27 57 28 113; }; node_115(){ optional 22; }
|
||||||
required 77 43 26 58 112 113 27 114; }; node_116(){ required 77 43 26 59 96; }
|
node_116(){ optional 23; }; node_117(){ oneormore 33; }; node_118(){
|
||||||
node_117(){ required 33 28; }; node_118(){ either 117 16; }; node_119(){
|
required 80 45 27 60 115 116 28 117; }; node_119(){ required 80 45 27 61 99; }
|
||||||
required 118; }; node_120(){ optional 34; }; node_121(){
|
node_120(){ required 34 29; }; node_121(){ either 120 16; }; node_122(){
|
||||||
required 77 43 26 60 61 119 120 86; }; node_122(){
|
required 121; }; node_123(){ optional 35; }; node_124(){
|
||||||
required 77 43 26 60 62 33 28 35 86; }; node_123(){ either 33 16; }; node_124(){
|
required 80 45 27 62 63 122 123 89; }; node_125(){
|
||||||
required 123; }; node_125(){ required 77 43 26 60 107 124 86; }; node_126(){
|
required 80 45 27 62 64 34 29 36 89; }; node_126(){ either 34 16; }; node_127(){
|
||||||
required 77 43 26 63; }; node_127(){ optional 114; }; node_128(){
|
required 126; }; node_128(){ required 80 45 27 62 110 127 89; }; node_129(){
|
||||||
required 77 43 26 36 127; }; node_129(){ required 77 64 45; }; node_130(){
|
required 80 45 27 65; }; node_130(){ required 80 45 27 66 47; }; node_131(){
|
||||||
required 77 64 65 37; }; node_131(){ required 77 64 37 66 93; }; node_132(){
|
either 37 16; }; node_132(){ required 131; }; node_133(){
|
||||||
required 77 64 37 67; }; node_133(){ optional 39; }; node_134(){ optional 40; }
|
required 80 45 27 66 110 132; }; node_134(){ optional 117; }; node_135(){
|
||||||
node_135(){ required 77 68 69 38 133 134; }; node_136(){
|
required 80 45 27 38 134; }; node_136(){ required 80 67 47; }; node_137(){
|
||||||
required 77 68 46 41 70 32; }; node_137(){ required 77 68 79; }; node_138(){
|
required 80 67 68 39; }; node_138(){ optional 24; }; node_139(){
|
||||||
required 77 68 38 56; }; node_139(){ required 77 68 38 71; }; node_140(){
|
required 80 67 39 69 96 138; }; node_140(){ required 80 67 39 70; }; node_141(){
|
||||||
required 77 68 38 72 80; }; node_141(){ optional 24; }; node_142(){
|
optional 41; }; node_142(){ optional 42; }; node_143(){
|
||||||
required 77 73 141; }; node_143(){ required 77 50; }; node_144(){ required 77 74
|
required 80 71 72 40 141 142; }; node_144(){ required 80 71 48 43 73 33; }
|
||||||
}; node_145(){ oneormore 42; }; node_146(){ optional 145; }; node_147(){
|
node_145(){ required 80 71 82; }; node_146(){ required 80 71 40 58; }
|
||||||
required 77 75 146; }; node_148(){ required 77; }; node_149(){
|
node_147(){ required 80 71 40 74; }; node_148(){ required 80 71 40 75 83; }
|
||||||
either 83 88 91 97 98 99 100 101 103 104 105 109 111 115 116 121 122 125 126 128 129 130 131 132 135 136 137 138 139 140 142 143 144 147 148
|
node_149(){ optional 25; }; node_150(){ required 80 76 149; }; node_151(){
|
||||||
}; node_150(){ required 149; }; cat <<<' docopt_exit() {
|
required 80 52; }; node_152(){ required 80 77; }; node_153(){ oneormore 44; }
|
||||||
[[ -n $1 ]] && printf "%s\n" "$1" >&2; printf "%s\n" "${DOC:40:1756}" >&2
|
node_154(){ optional 153; }; node_155(){ required 80 78 154; }; node_156(){
|
||||||
exit 1; }'; unset var___stack var___branch var___debug var___skip_check \
|
required 80; }; node_157(){
|
||||||
var___env var___no_prompt var___help var___verbose var___skip_update \
|
either 86 91 94 100 101 102 103 104 106 107 108 112 114 118 119 124 125 128 129 130 133 135 136 137 139 140 143 144 145 146 147 148 150 151 152 155 156
|
||||||
var___status var___server var___type var___domain var___app_name var___pass \
|
}; node_158(){ required 157; }; cat <<<' docopt_exit() {
|
||||||
var___secrets var___all var___update var___force var___skip_version_check \
|
[[ -n $1 ]] && printf "%s\n" "$1" >&2; printf "%s\n" "${DOC:40:1842}" >&2
|
||||||
var___no_domain_poll var___volumes var___no_tty var___user var___dev \
|
exit 1; }'; unset var___skip_check var___no_prompt var___skip_update var___env \
|
||||||
var__type_ var__app_ var__service_ var__version_ var__src_ var__dst_ \
|
var___branch var___debug var___help var___stack var___verbose var___status \
|
||||||
var__backup_file_ var__args_ var__secret_ var__cmd_ var__data_ var__command_ \
|
var___server var___type var___domain var___app_name var___pass var___secrets \
|
||||||
var__recipe_ var__host_ var__user_ var__port_ var__provider_ var__subcommands_ \
|
var___all var___update var___force var___fast var___chaos var___volumes \
|
||||||
var_app var_list var_ls var_new var_backup var_deploy var_check var_version \
|
var___no_tty var___user var___bump var___dev var__type_ var__app_ \
|
||||||
var_config var_cp var_logs var_ps var_restore var_rm var_delete var_run \
|
var__service_ var__version_ var__src_ var__dst_ var__backup_file_ var__args_ \
|
||||||
var_rollback var_secret var_generate var_insert var_undeploy var_recipe \
|
var__secret_ var__cmd_ var__data_ var__volume_ var__command_ var__recipe_ \
|
||||||
|
var__host_ var__user_ var__port_ var__provider_ var__subcommands_ var_app \
|
||||||
|
var_list var_ls var_new var_backup var_deploy var_check var_version var_config \
|
||||||
|
var_cp var_logs var_ps var_restore var_rm var_delete var_run var_rollback \
|
||||||
|
var_secret var_generate var_insert var_undeploy var_volume var_recipe \
|
||||||
var_create var_release var_versions var_server var_add var___ var_init \
|
var_create var_release var_versions var_server var_add var___ var_init \
|
||||||
var_apps var_upgrade var_doctor var_help; parse 150 "$@"
|
var_apps var_upgrade var_doctor var_help; parse 158 "$@"
|
||||||
local prefix=${DOCOPT_PREFIX:-''}; unset "${prefix}__stack" \
|
local prefix=${DOCOPT_PREFIX:-''}; unset "${prefix}__skip_check" \
|
||||||
"${prefix}__branch" "${prefix}__debug" "${prefix}__skip_check" \
|
"${prefix}__no_prompt" "${prefix}__skip_update" "${prefix}__env" \
|
||||||
"${prefix}__env" "${prefix}__no_prompt" "${prefix}__help" "${prefix}__verbose" \
|
"${prefix}__branch" "${prefix}__debug" "${prefix}__help" "${prefix}__stack" \
|
||||||
"${prefix}__skip_update" "${prefix}__status" "${prefix}__server" \
|
"${prefix}__verbose" "${prefix}__status" "${prefix}__server" "${prefix}__type" \
|
||||||
"${prefix}__type" "${prefix}__domain" "${prefix}__app_name" "${prefix}__pass" \
|
"${prefix}__domain" "${prefix}__app_name" "${prefix}__pass" \
|
||||||
"${prefix}__secrets" "${prefix}__all" "${prefix}__update" "${prefix}__force" \
|
"${prefix}__secrets" "${prefix}__all" "${prefix}__update" "${prefix}__force" \
|
||||||
"${prefix}__skip_version_check" "${prefix}__no_domain_poll" \
|
"${prefix}__fast" "${prefix}__chaos" "${prefix}__volumes" "${prefix}__no_tty" \
|
||||||
"${prefix}__volumes" "${prefix}__no_tty" "${prefix}__user" "${prefix}__dev" \
|
"${prefix}__user" "${prefix}__bump" "${prefix}__dev" "${prefix}_type_" \
|
||||||
"${prefix}_type_" "${prefix}_app_" "${prefix}_service_" "${prefix}_version_" \
|
"${prefix}_app_" "${prefix}_service_" "${prefix}_version_" "${prefix}_src_" \
|
||||||
"${prefix}_src_" "${prefix}_dst_" "${prefix}_backup_file_" "${prefix}_args_" \
|
"${prefix}_dst_" "${prefix}_backup_file_" "${prefix}_args_" \
|
||||||
"${prefix}_secret_" "${prefix}_cmd_" "${prefix}_data_" "${prefix}_command_" \
|
"${prefix}_secret_" "${prefix}_cmd_" "${prefix}_data_" "${prefix}_volume_" \
|
||||||
"${prefix}_recipe_" "${prefix}_host_" "${prefix}_user_" "${prefix}_port_" \
|
"${prefix}_command_" "${prefix}_recipe_" "${prefix}_host_" "${prefix}_user_" \
|
||||||
"${prefix}_provider_" "${prefix}_subcommands_" "${prefix}app" "${prefix}list" \
|
"${prefix}_port_" "${prefix}_provider_" "${prefix}_subcommands_" \
|
||||||
"${prefix}ls" "${prefix}new" "${prefix}backup" "${prefix}deploy" \
|
"${prefix}app" "${prefix}list" "${prefix}ls" "${prefix}new" "${prefix}backup" \
|
||||||
"${prefix}check" "${prefix}version" "${prefix}config" "${prefix}cp" \
|
"${prefix}deploy" "${prefix}check" "${prefix}version" "${prefix}config" \
|
||||||
"${prefix}logs" "${prefix}ps" "${prefix}restore" "${prefix}rm" \
|
"${prefix}cp" "${prefix}logs" "${prefix}ps" "${prefix}restore" "${prefix}rm" \
|
||||||
"${prefix}delete" "${prefix}run" "${prefix}rollback" "${prefix}secret" \
|
"${prefix}delete" "${prefix}run" "${prefix}rollback" "${prefix}secret" \
|
||||||
"${prefix}generate" "${prefix}insert" "${prefix}undeploy" "${prefix}recipe" \
|
"${prefix}generate" "${prefix}insert" "${prefix}undeploy" "${prefix}volume" \
|
||||||
"${prefix}create" "${prefix}release" "${prefix}versions" "${prefix}server" \
|
"${prefix}recipe" "${prefix}create" "${prefix}release" "${prefix}versions" \
|
||||||
"${prefix}add" "${prefix}__" "${prefix}init" "${prefix}apps" \
|
"${prefix}server" "${prefix}add" "${prefix}__" "${prefix}init" "${prefix}apps" \
|
||||||
"${prefix}upgrade" "${prefix}doctor" "${prefix}help"
|
"${prefix}upgrade" "${prefix}doctor" "${prefix}help"
|
||||||
eval "${prefix}"'__stack=${var___stack:-}'
|
eval "${prefix}"'__skip_check=${var___skip_check:-false}'
|
||||||
|
eval "${prefix}"'__no_prompt=${var___no_prompt:-false}'
|
||||||
|
eval "${prefix}"'__skip_update=${var___skip_update:-false}'
|
||||||
|
eval "${prefix}"'__env=${var___env:-}'
|
||||||
eval "${prefix}"'__branch=${var___branch:-}'
|
eval "${prefix}"'__branch=${var___branch:-}'
|
||||||
eval "${prefix}"'__debug=${var___debug:-false}'
|
eval "${prefix}"'__debug=${var___debug:-false}'
|
||||||
eval "${prefix}"'__skip_check=${var___skip_check:-false}'
|
|
||||||
eval "${prefix}"'__env=${var___env:-}'
|
|
||||||
eval "${prefix}"'__no_prompt=${var___no_prompt:-false}'
|
|
||||||
eval "${prefix}"'__help=${var___help:-false}'
|
eval "${prefix}"'__help=${var___help:-false}'
|
||||||
|
eval "${prefix}"'__stack=${var___stack:-}'
|
||||||
eval "${prefix}"'__verbose=${var___verbose:-false}'
|
eval "${prefix}"'__verbose=${var___verbose:-false}'
|
||||||
eval "${prefix}"'__skip_update=${var___skip_update:-false}'
|
|
||||||
eval "${prefix}"'__status=${var___status:-false}'
|
eval "${prefix}"'__status=${var___status:-false}'
|
||||||
eval "${prefix}"'__server=${var___server:-}'
|
eval "${prefix}"'__server=${var___server:-}'
|
||||||
eval "${prefix}"'__type=${var___type:-}'
|
eval "${prefix}"'__type=${var___type:-}'
|
||||||
@ -292,11 +298,12 @@ eval "${prefix}"'__secrets=${var___secrets:-false}'
|
|||||||
eval "${prefix}"'__all=${var___all:-false}'
|
eval "${prefix}"'__all=${var___all:-false}'
|
||||||
eval "${prefix}"'__update=${var___update:-false}'
|
eval "${prefix}"'__update=${var___update:-false}'
|
||||||
eval "${prefix}"'__force=${var___force:-false}'
|
eval "${prefix}"'__force=${var___force:-false}'
|
||||||
eval "${prefix}"'__skip_version_check=${var___skip_version_check:-false}'
|
eval "${prefix}"'__fast=${var___fast:-false}'
|
||||||
eval "${prefix}"'__no_domain_poll=${var___no_domain_poll:-false}'
|
eval "${prefix}"'__chaos=${var___chaos:-false}'
|
||||||
eval "${prefix}"'__volumes=${var___volumes:-false}'
|
eval "${prefix}"'__volumes=${var___volumes:-false}'
|
||||||
eval "${prefix}"'__no_tty=${var___no_tty:-false}'
|
eval "${prefix}"'__no_tty=${var___no_tty:-false}'
|
||||||
eval "${prefix}"'__user=${var___user:-}'
|
eval "${prefix}"'__user=${var___user:-}'
|
||||||
|
eval "${prefix}"'__bump=${var___bump:-false}'
|
||||||
eval "${prefix}"'__dev=${var___dev:-false}'
|
eval "${prefix}"'__dev=${var___dev:-false}'
|
||||||
eval "${prefix}"'_type_=${var__type_:-}'; eval "${prefix}"'_app_=${var__app_:-}'
|
eval "${prefix}"'_type_=${var__type_:-}'; eval "${prefix}"'_app_=${var__app_:-}'
|
||||||
eval "${prefix}"'_service_=${var__service_:-}'
|
eval "${prefix}"'_service_=${var__service_:-}'
|
||||||
@ -307,6 +314,7 @@ if declare -p var__args_ >/dev/null 2>&1; then
|
|||||||
eval "${prefix}"'_args_=("${var__args_[@]}")'; else eval "${prefix}"'_args_=()'
|
eval "${prefix}"'_args_=("${var__args_[@]}")'; else eval "${prefix}"'_args_=()'
|
||||||
fi; eval "${prefix}"'_secret_=${var__secret_:-}'
|
fi; eval "${prefix}"'_secret_=${var__secret_:-}'
|
||||||
eval "${prefix}"'_cmd_=${var__cmd_:-}'; eval "${prefix}"'_data_=${var__data_:-}'
|
eval "${prefix}"'_cmd_=${var__cmd_:-}'; eval "${prefix}"'_data_=${var__data_:-}'
|
||||||
|
eval "${prefix}"'_volume_=${var__volume_:-}'
|
||||||
eval "${prefix}"'_command_=${var__command_:-}'
|
eval "${prefix}"'_command_=${var__command_:-}'
|
||||||
eval "${prefix}"'_recipe_=${var__recipe_:-}'
|
eval "${prefix}"'_recipe_=${var__recipe_:-}'
|
||||||
eval "${prefix}"'_host_=${var__host_:-}'
|
eval "${prefix}"'_host_=${var__host_:-}'
|
||||||
@ -334,6 +342,7 @@ eval "${prefix}"'secret=${var_secret:-false}'
|
|||||||
eval "${prefix}"'generate=${var_generate:-false}'
|
eval "${prefix}"'generate=${var_generate:-false}'
|
||||||
eval "${prefix}"'insert=${var_insert:-false}'
|
eval "${prefix}"'insert=${var_insert:-false}'
|
||||||
eval "${prefix}"'undeploy=${var_undeploy:-false}'
|
eval "${prefix}"'undeploy=${var_undeploy:-false}'
|
||||||
|
eval "${prefix}"'volume=${var_volume:-false}'
|
||||||
eval "${prefix}"'recipe=${var_recipe:-false}'
|
eval "${prefix}"'recipe=${var_recipe:-false}'
|
||||||
eval "${prefix}"'create=${var_create:-false}'
|
eval "${prefix}"'create=${var_create:-false}'
|
||||||
eval "${prefix}"'release=${var_release:-false}'
|
eval "${prefix}"'release=${var_release:-false}'
|
||||||
@ -346,27 +355,27 @@ eval "${prefix}"'upgrade=${var_upgrade:-false}'
|
|||||||
eval "${prefix}"'doctor=${var_doctor:-false}'
|
eval "${prefix}"'doctor=${var_doctor:-false}'
|
||||||
eval "${prefix}"'help=${var_help:-false}'; local docopt_i=1
|
eval "${prefix}"'help=${var_help:-false}'; local docopt_i=1
|
||||||
[[ $BASH_VERSION =~ ^4.3 ]] && docopt_i=2; for ((;docopt_i>0;docopt_i--)); do
|
[[ $BASH_VERSION =~ ^4.3 ]] && docopt_i=2; for ((;docopt_i>0;docopt_i--)); do
|
||||||
declare -p "${prefix}__stack" "${prefix}__branch" "${prefix}__debug" \
|
declare -p "${prefix}__skip_check" "${prefix}__no_prompt" \
|
||||||
"${prefix}__skip_check" "${prefix}__env" "${prefix}__no_prompt" \
|
"${prefix}__skip_update" "${prefix}__env" "${prefix}__branch" \
|
||||||
"${prefix}__help" "${prefix}__verbose" "${prefix}__skip_update" \
|
"${prefix}__debug" "${prefix}__help" "${prefix}__stack" "${prefix}__verbose" \
|
||||||
"${prefix}__status" "${prefix}__server" "${prefix}__type" "${prefix}__domain" \
|
"${prefix}__status" "${prefix}__server" "${prefix}__type" "${prefix}__domain" \
|
||||||
"${prefix}__app_name" "${prefix}__pass" "${prefix}__secrets" "${prefix}__all" \
|
"${prefix}__app_name" "${prefix}__pass" "${prefix}__secrets" "${prefix}__all" \
|
||||||
"${prefix}__update" "${prefix}__force" "${prefix}__skip_version_check" \
|
"${prefix}__update" "${prefix}__force" "${prefix}__fast" "${prefix}__chaos" \
|
||||||
"${prefix}__no_domain_poll" "${prefix}__volumes" "${prefix}__no_tty" \
|
"${prefix}__volumes" "${prefix}__no_tty" "${prefix}__user" "${prefix}__bump" \
|
||||||
"${prefix}__user" "${prefix}__dev" "${prefix}_type_" "${prefix}_app_" \
|
"${prefix}__dev" "${prefix}_type_" "${prefix}_app_" "${prefix}_service_" \
|
||||||
"${prefix}_service_" "${prefix}_version_" "${prefix}_src_" "${prefix}_dst_" \
|
"${prefix}_version_" "${prefix}_src_" "${prefix}_dst_" \
|
||||||
"${prefix}_backup_file_" "${prefix}_args_" "${prefix}_secret_" \
|
"${prefix}_backup_file_" "${prefix}_args_" "${prefix}_secret_" \
|
||||||
"${prefix}_cmd_" "${prefix}_data_" "${prefix}_command_" "${prefix}_recipe_" \
|
"${prefix}_cmd_" "${prefix}_data_" "${prefix}_volume_" "${prefix}_command_" \
|
||||||
"${prefix}_host_" "${prefix}_user_" "${prefix}_port_" "${prefix}_provider_" \
|
"${prefix}_recipe_" "${prefix}_host_" "${prefix}_user_" "${prefix}_port_" \
|
||||||
"${prefix}_subcommands_" "${prefix}app" "${prefix}list" "${prefix}ls" \
|
"${prefix}_provider_" "${prefix}_subcommands_" "${prefix}app" "${prefix}list" \
|
||||||
"${prefix}new" "${prefix}backup" "${prefix}deploy" "${prefix}check" \
|
"${prefix}ls" "${prefix}new" "${prefix}backup" "${prefix}deploy" \
|
||||||
"${prefix}version" "${prefix}config" "${prefix}cp" "${prefix}logs" \
|
"${prefix}check" "${prefix}version" "${prefix}config" "${prefix}cp" \
|
||||||
"${prefix}ps" "${prefix}restore" "${prefix}rm" "${prefix}delete" \
|
"${prefix}logs" "${prefix}ps" "${prefix}restore" "${prefix}rm" \
|
||||||
"${prefix}run" "${prefix}rollback" "${prefix}secret" "${prefix}generate" \
|
"${prefix}delete" "${prefix}run" "${prefix}rollback" "${prefix}secret" \
|
||||||
"${prefix}insert" "${prefix}undeploy" "${prefix}recipe" "${prefix}create" \
|
"${prefix}generate" "${prefix}insert" "${prefix}undeploy" "${prefix}volume" \
|
||||||
"${prefix}release" "${prefix}versions" "${prefix}server" "${prefix}add" \
|
"${prefix}recipe" "${prefix}create" "${prefix}release" "${prefix}versions" \
|
||||||
"${prefix}__" "${prefix}init" "${prefix}apps" "${prefix}upgrade" \
|
"${prefix}server" "${prefix}add" "${prefix}__" "${prefix}init" "${prefix}apps" \
|
||||||
"${prefix}doctor" "${prefix}help"; done; }
|
"${prefix}upgrade" "${prefix}doctor" "${prefix}help"; done; }
|
||||||
# docopt parser above, complete command for generating this parser is `docopt.sh abra`
|
# docopt parser above, complete command for generating this parser is `docopt.sh abra`
|
||||||
|
|
||||||
PROGRAM_NAME=$(basename "$0")
|
PROGRAM_NAME=$(basename "$0")
|
||||||
@ -478,6 +487,16 @@ require_docker_version() {
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
require_valid_json() {
|
||||||
|
require_jq
|
||||||
|
$JQ "$1" > /dev/null || error "Invalid JSON '$1'"
|
||||||
|
}
|
||||||
|
|
||||||
|
require_valid_yaml() {
|
||||||
|
require_yq
|
||||||
|
$YQ e "$1" > /dev/null || error "Invalid YAML '$1'"
|
||||||
|
}
|
||||||
|
|
||||||
###### Download and update data
|
###### Download and update data
|
||||||
|
|
||||||
require_apps_json() {
|
require_apps_json() {
|
||||||
@ -496,13 +515,13 @@ require_apps_json() {
|
|||||||
|
|
||||||
if [ "$local_ctime" -lt "$remote_ctime" ]; then
|
if [ "$local_ctime" -lt "$remote_ctime" ]; then
|
||||||
info "Downloading new apps.json"
|
info "Downloading new apps.json"
|
||||||
wget -qO "$ABRA_APPS_JSON" "$ABRA_APPS_URL"
|
curl -sLo "$ABRA_APPS_JSON" "$ABRA_APPS_URL"
|
||||||
else
|
else
|
||||||
debug "No apps.json update needed"
|
debug "No apps.json update needed"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
info "Downloading apps.json"
|
info "Downloading apps.json"
|
||||||
wget -qO "$ABRA_APPS_JSON" "$ABRA_APPS_URL"
|
curl -sLo "$ABRA_APPS_JSON" "$ABRA_APPS_URL"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -545,7 +564,7 @@ require_app (){
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
if ! git clone ${git_extra_args:-} "$GIT_URL/$APP.git" "$ABRA_DIR/apps/$APP" > /dev/null 2>&1 ; then
|
if ! git clone ${git_extra_args:-} "$GIT_URL$APP.git" "$ABRA_DIR/apps/$APP" > /dev/null 2>&1 ; then
|
||||||
error "Could not retrieve app type '$APP', this app type doesn't exist?"
|
error "Could not retrieve app type '$APP', this app type doesn't exist?"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -580,13 +599,16 @@ require_app_version() {
|
|||||||
if [ -z "$VERSION" ]; then
|
if [ -z "$VERSION" ]; then
|
||||||
warning "No version specified, dangerously using latest git 😨"
|
warning "No version specified, dangerously using latest git 😨"
|
||||||
else
|
else
|
||||||
|
if [ "$abra___chaos" = "false" ]; then
|
||||||
git checkout -q "$VERSION" || error "Can't find version $VERSION"
|
git checkout -q "$VERSION" || error "Can't find version $VERSION"
|
||||||
|
else
|
||||||
|
warning "Chaos deploy specified, dangerously using latest git 😨"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
vendor_binary() {
|
vendor_binary() {
|
||||||
require_vendor_dir
|
require_vendor_dir
|
||||||
require_binary wget
|
|
||||||
|
|
||||||
local REPO="$1"
|
local REPO="$1"
|
||||||
local VERSION="$2"
|
local VERSION="$2"
|
||||||
@ -613,7 +635,7 @@ vendor_binary() {
|
|||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
wget -qO "$ABRA_VENDOR_DIR/$BINARY" "$RELEASE_URL"
|
curl -sLo "$ABRA_VENDOR_DIR/$BINARY" "$RELEASE_URL"
|
||||||
chmod +x "$ABRA_VENDOR_DIR/$BINARY"
|
chmod +x "$ABRA_VENDOR_DIR/$BINARY"
|
||||||
success "$BINARY is now vendored ☮"
|
success "$BINARY is now vendored ☮"
|
||||||
}
|
}
|
||||||
@ -660,7 +682,7 @@ get_recipe_versions() {
|
|||||||
get_recipe_version_latest() {
|
get_recipe_version_latest() {
|
||||||
if [ "${#RECIPE_VERSIONS[@]}" = 0 ]; then
|
if [ "${#RECIPE_VERSIONS[@]}" = 0 ]; then
|
||||||
VERSION=""
|
VERSION=""
|
||||||
warning "No version specified, dangerously using latest git 😨"
|
info "No versions found"
|
||||||
else
|
else
|
||||||
VERSION="${RECIPE_VERSIONS[-1]}"
|
VERSION="${RECIPE_VERSIONS[-1]}"
|
||||||
info "Chose version $VERSION"
|
info "Chose version $VERSION"
|
||||||
@ -690,6 +712,7 @@ output_version_summary() {
|
|||||||
|
|
||||||
CONSENT_TO_UPDATE=$abra___update
|
CONSENT_TO_UPDATE=$abra___update
|
||||||
FORCE_DEPLOY=$abra___force
|
FORCE_DEPLOY=$abra___force
|
||||||
|
CHAOS_DEPLOY=$abra___chaos
|
||||||
|
|
||||||
local -a IS_AN_UPDATE="false"
|
local -a IS_AN_UPDATE="false"
|
||||||
local -a UNABLE_TO_DETECT="false"
|
local -a UNABLE_TO_DETECT="false"
|
||||||
@ -702,6 +725,7 @@ output_version_summary() {
|
|||||||
|
|
||||||
IFS=':' read -ra COMPOSE_FILES <<< "$COMPOSE_FILE"
|
IFS=':' read -ra COMPOSE_FILES <<< "$COMPOSE_FILE"
|
||||||
for COMPOSE in "${COMPOSE_FILES[@]}"; do
|
for COMPOSE in "${COMPOSE_FILES[@]}"; do
|
||||||
|
require_valid_yaml "$APP_DIR/$COMPOSE"
|
||||||
SERVICES=$($YQ e '.services | keys | .[]' "${APP_DIR}/${COMPOSE}")
|
SERVICES=$($YQ e '.services | keys | .[]' "${APP_DIR}/${COMPOSE}")
|
||||||
|
|
||||||
for SERVICE in $SERVICES; do
|
for SERVICE in $SERVICES; do
|
||||||
@ -730,8 +754,12 @@ output_version_summary() {
|
|||||||
if [ "$live_version" != "$service_tag" ] || [ "$live_digest" != "$service_digest" ]; then
|
if [ "$live_version" != "$service_tag" ] || [ "$live_digest" != "$service_digest" ]; then
|
||||||
IS_AN_UPDATE="true"
|
IS_AN_UPDATE="true"
|
||||||
fi
|
fi
|
||||||
|
if [ "$abra___chaos" = "true" ]; then
|
||||||
|
echo " to be deployed: $(tput setaf 1)$service_tag ($service_digest) (+ latest git)$(tput sgr0)"
|
||||||
|
else
|
||||||
echo " to be deployed: $(tput setaf 1)$service_tag ($service_digest)$(tput sgr0)"
|
echo " to be deployed: $(tput setaf 1)$service_tag ($service_digest)$(tput sgr0)"
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
if [[ $UNDEPLOYED_STATE == "true" ]]; then
|
if [[ $UNDEPLOYED_STATE == "true" ]]; then
|
||||||
image=$($YQ e ".services.${SERVICE}.image" "${APP_DIR}/${COMPOSE}" | cut -d':' -f1)
|
image=$($YQ e ".services.${SERVICE}.image" "${APP_DIR}/${COMPOSE}" | cut -d':' -f1)
|
||||||
@ -756,69 +784,76 @@ output_version_summary() {
|
|||||||
else
|
else
|
||||||
if [[ $UNABLE_TO_DETECT == "false" ]] && \
|
if [[ $UNABLE_TO_DETECT == "false" ]] && \
|
||||||
[[ $UNDEPLOYED_STATE == "false" ]] && \
|
[[ $UNDEPLOYED_STATE == "false" ]] && \
|
||||||
[[ $FORCE_DEPLOY == "false" ]]; then
|
[[ $FORCE_DEPLOY == "false" ]] && \
|
||||||
|
[[ $CHAOS_DEPLOY = "false" ]]; then
|
||||||
success "Nothing to deploy, you're on latest (use --force to re-deploy anyway)"
|
success "Nothing to deploy, you're on latest (use --force to re-deploy anyway)"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Note(decentral1se): inspired by https://github.com/vitalets/docker-stack-wait-deploy
|
|
||||||
ensure_stack_deployed() {
|
ensure_stack_deployed() {
|
||||||
STACK_NAME=$1
|
local -a HEALTHY # mapping
|
||||||
|
local -a MISSING # mapping
|
||||||
|
|
||||||
info "Waiting for deployment to succeed"
|
TIMEOUT=60
|
||||||
|
idx=0
|
||||||
|
|
||||||
while true; do
|
IFS=' ' read -r -a SERVICES <<< "$(docker stack services "${STACK_NAME}" --format "{{.ID}}" | tr '\n' ' ')"
|
||||||
all_services_done=1
|
|
||||||
has_errors=0
|
|
||||||
|
|
||||||
service_ids=$(docker stack services -q "$STACK_NAME")
|
while [ ! $(( ${#HEALTHY[@]} + ${#MISSING[@]} )) -eq ${#SERVICES[@]} ]; do
|
||||||
|
for service in $(docker ps -f "name=$STACK_NAME" -q); do
|
||||||
|
healthcheck=$(docker inspect --format "{{ json .State }}" "$service" | jq "try(.Health.Status // \"missing\")")
|
||||||
|
name=$(docker inspect --format '{{ index .Config.Labels "com.docker.swarm.service.name" }}' "$service")
|
||||||
|
|
||||||
for service_id in $service_ids; do
|
if [[ ${MISSING[*]} =~ ${name} ]] || [[ ${HEALTHY[*]} =~ ${name} ]]; then
|
||||||
# see: https://github.com/moby/moby/issues/28012
|
continue
|
||||||
service_state=$(docker service inspect --format "{{if .UpdateStatus}}{{.UpdateStatus.State}}{{else}}created{{end}}" "$service_id")
|
fi
|
||||||
|
|
||||||
debug "$service_id has state: $service_state"
|
if [[ "$healthcheck" == "\"missing\"" ]] && [[ ! "${MISSING[*]}" =~ $name ]]; then
|
||||||
|
MISSING+=("$name")
|
||||||
|
info "$name has no healthcheck configured, cannot guarantee this service comes up successfully..."
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
|
||||||
case "$service_state" in
|
if [[ "$healthcheck" == "\"healthy\"" ]] && [[ ! "${HEALTHY[*]}" =~ $name ]]; then
|
||||||
created|completed)
|
HEALTHY+=("$name")
|
||||||
;;
|
info "$name is healthy!"
|
||||||
paused|rollback_completed)
|
continue
|
||||||
has_errors=1
|
fi
|
||||||
;;
|
|
||||||
*)
|
if [[ "$healthcheck" == \""unhealthy"\" ]]; then
|
||||||
all_services_done=0
|
logs=$(docker inspect --format "{{ json .State.Health.Log }}" "$service")
|
||||||
;;
|
exitcode="$(echo "$logs" | $JQ '.[-1] | .ExitCode')"
|
||||||
esac
|
warning "Healthcheck for new instance of $name is failing (exit code: $exitcode)"
|
||||||
|
warning "$(echo "$logs" | $JQ -r '.[-1] | .Output')"
|
||||||
|
error "healthcheck for $name is failing, this deployment did not succeed :("
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ "$all_services_done" == "1" ]; then
|
idx=$(("$idx" + 1))
|
||||||
if [ "$has_errors" == "1" ]; then
|
if [[ $idx -eq "$TIMEOUT" ]]; then
|
||||||
debug "Deployment appears to have failed"
|
error "Waiting for healthy status timed out, this deployment did not succeed :("
|
||||||
break
|
|
||||||
else
|
|
||||||
debug "Deployment appears to have suceeded"
|
|
||||||
break
|
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
sleep 1
|
sleep 1
|
||||||
fi
|
info "Deploying: $(( ${#HEALTHY[@]} + ${#MISSING[@]} ))/${#SERVICES[@]} (timeout: $idx/$TIMEOUT)"
|
||||||
done
|
done
|
||||||
|
success "All services up! Deployment succeeded!"
|
||||||
}
|
}
|
||||||
|
|
||||||
ensure_domain_deployed() {
|
ensure_domain_deployed() {
|
||||||
DOMAIN=$1
|
local domain=$1
|
||||||
|
|
||||||
warning "Waiting for $DOMAIN to come up..."
|
warning "Waiting for $domain to come up..."
|
||||||
|
|
||||||
idx=1
|
idx=1
|
||||||
until curl --output /dev/null --silent --head --fail "$DOMAIN"; do
|
until curl --output /dev/null --silent --head --fail "$domain"; do
|
||||||
debug "Polled $DOMAIN $idx time(s) already"
|
debug "Polled $domain $idx time(s) already"
|
||||||
sleep 3
|
sleep 3
|
||||||
idx=$(("$idx" + 1))
|
idx=$(("$idx" + 1))
|
||||||
if [[ $idx -gt 10 ]]; then
|
if [[ $idx -gt 10 ]]; then
|
||||||
error "$DOMAIN still isn't up, check status by running \"abra app ${STACK_NAME} ps\""
|
error "$domain still isn't up, check status by running \"abra app ${STACK_NAME} ps\""
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -832,14 +867,14 @@ get_servers() {
|
|||||||
|
|
||||||
get_app_secrets() {
|
get_app_secrets() {
|
||||||
# FIXME 3wc: requires bash 4, use for loop instead
|
# FIXME 3wc: requires bash 4, use for loop instead
|
||||||
mapfile -t PASSWORDS < <(grep "SECRET.*VERSION.*" "$ENV_FILE")
|
mapfile -t PASSWORDS < <(grep "^SECRET.*VERSION.*" "$ENV_FILE")
|
||||||
}
|
}
|
||||||
|
|
||||||
load_instance() {
|
load_instance() {
|
||||||
APP="$abra__app_"
|
APP="$abra__app_"
|
||||||
|
|
||||||
# load all files matching "$APP.env" into ENV_FILES array
|
# load all files matching "$APP.env" into ENV_FILES array
|
||||||
mapfile -t ENV_FILES < <(find -L "$ABRA_DIR" -name "$APP.env")
|
mapfile -t ENV_FILES < <(find -L "$ABRA_DIR/servers/" -name "$APP.env")
|
||||||
# FIXME 3wc: requires bash 4, use for loop instead
|
# FIXME 3wc: requires bash 4, use for loop instead
|
||||||
|
|
||||||
case "${#ENV_FILES[@]}" in
|
case "${#ENV_FILES[@]}" in
|
||||||
@ -899,7 +934,7 @@ prompt_confirm() {
|
|||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
read -rp "Continue? (y/[n])? " choice
|
read -rp "Continue? [y/N]? " choice
|
||||||
|
|
||||||
case "$choice" in
|
case "$choice" in
|
||||||
y|Y ) return ;;
|
y|Y ) return ;;
|
||||||
@ -1278,15 +1313,15 @@ _abra_backup_mysql() {
|
|||||||
|
|
||||||
###### .. app deploy
|
###### .. app deploy
|
||||||
help_app_deploy (){
|
help_app_deploy (){
|
||||||
echo "abra [options] app <app> deploy [--update] [--force] [--skip-version-check] [--no-domain-poll]
|
echo "abra [options] app <app> deploy [--update] [--force] [--fast]
|
||||||
|
|
||||||
Deploy app <app> to the configured server.
|
Deploy app <app> to the configured server.
|
||||||
|
|
||||||
OPTIONS
|
OPTIONS
|
||||||
--update Consent to deploying an updated app version
|
--update Consent to deploying an updated app version
|
||||||
--force Force a deployment regardless of state
|
--force Force a deployment regardless of state
|
||||||
--skip-version-check Don't try and detect deployed version
|
--fast Run deployment without various safety checks
|
||||||
--no-domain-poll Don't wait for the configured domain to come up
|
--chaos Deploy straight from latest Git version (potentially chaotic!)
|
||||||
|
|
||||||
POWERED BY
|
POWERED BY
|
||||||
docker stack deploy -c compose.yml <app>"
|
docker stack deploy -c compose.yml <app>"
|
||||||
@ -1295,8 +1330,15 @@ POWERED BY
|
|||||||
sub_app_deploy (){
|
sub_app_deploy (){
|
||||||
require_yq
|
require_yq
|
||||||
|
|
||||||
SKIP_VERSION_CHECK=$abra___skip_version_check
|
if [ "$abra___fast" = "true" ]; then
|
||||||
NO_DOMAIN_POLL=$abra___no_domain_poll
|
SKIP_VERSION_CHECK=true
|
||||||
|
NO_DOMAIN_POLL=true
|
||||||
|
NO_STATE_POLL=true
|
||||||
|
else
|
||||||
|
SKIP_VERSION_CHECK=false
|
||||||
|
NO_DOMAIN_POLL=false
|
||||||
|
NO_STATE_POLL=false
|
||||||
|
fi
|
||||||
|
|
||||||
if [ ! "$abra__version_" = "dev" ]; then
|
if [ ! "$abra__version_" = "dev" ]; then
|
||||||
get_recipe_versions "$TYPE"
|
get_recipe_versions "$TYPE"
|
||||||
@ -1304,7 +1346,7 @@ sub_app_deploy (){
|
|||||||
if [ -n "$abra__version_" ]; then
|
if [ -n "$abra__version_" ]; then
|
||||||
VERSION="$abra__version_"
|
VERSION="$abra__version_"
|
||||||
if ! printf '%s\0' "${RECIPE_VERSIONS[@]}" | grep -Fqxz -- "$VERSION"; then
|
if ! printf '%s\0' "${RECIPE_VERSIONS[@]}" | grep -Fqxz -- "$VERSION"; then
|
||||||
error "'$version' doesn't appear to be a valid version of $TYPE"
|
error "'$VERSION' doesn't appear to be a valid version of $TYPE"
|
||||||
fi
|
fi
|
||||||
info "Chose version $VERSION"
|
info "Chose version $VERSION"
|
||||||
else
|
else
|
||||||
@ -1346,7 +1388,13 @@ sub_app_deploy (){
|
|||||||
(cd "$APP_DIR" || error "\$APP_DIR '$APP_DIR' not found")
|
(cd "$APP_DIR" || error "\$APP_DIR '$APP_DIR' not found")
|
||||||
# shellcheck disable=SC2086
|
# shellcheck disable=SC2086
|
||||||
if (cd "$APP_DIR" && docker stack deploy -c ${COMPOSE_FILE//:/ -c } "$STACK_NAME"); then
|
if (cd "$APP_DIR" && docker stack deploy -c ${COMPOSE_FILE//:/ -c } "$STACK_NAME"); then
|
||||||
|
if [ "$abra___fast" = "true" ]; then
|
||||||
|
success "Something happened! Hope it was good 🙏"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
if [[ $NO_STATE_POLL == "false" ]]; then
|
||||||
ensure_stack_deployed "$STACK_NAME"
|
ensure_stack_deployed "$STACK_NAME"
|
||||||
|
fi
|
||||||
if [ -n "$DOMAIN" ]; then
|
if [ -n "$DOMAIN" ]; then
|
||||||
if [[ $NO_DOMAIN_POLL == "false" ]]; then
|
if [[ $NO_DOMAIN_POLL == "false" ]]; then
|
||||||
ensure_domain_deployed "https://${DOMAIN}"
|
ensure_domain_deployed "https://${DOMAIN}"
|
||||||
@ -1510,16 +1558,8 @@ sub_app_delete (){
|
|||||||
rm "$ENV_FILE"
|
rm "$ENV_FILE"
|
||||||
|
|
||||||
if [ "$abra___volumes" = "true" ]; then
|
if [ "$abra___volumes" = "true" ]; then
|
||||||
volumes="$(docker volume ls --filter "name=${STACK_NAME}" --quiet)"
|
abra___all="true"
|
||||||
|
sub_app_volume_delete
|
||||||
if [ "$abra___volumes" = "true" ]; then
|
|
||||||
# shellcheck disable=SC2086
|
|
||||||
warning "SCARY: About to remove all volumes associated with ${STACK_NAME}: $(echo $volumes | tr -d '\n')"
|
|
||||||
|
|
||||||
prompt_confirm
|
|
||||||
fi
|
|
||||||
|
|
||||||
docker volume rm --force "$volumes"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
@ -1561,6 +1601,7 @@ sub_app_secret_insert() {
|
|||||||
|
|
||||||
# shellcheck disable=SC2059
|
# shellcheck disable=SC2059
|
||||||
printf "$PW" | docker secret create "${STACK_NAME}_${SECRET}_${VERSION}" - > /dev/null
|
printf "$PW" | docker secret create "${STACK_NAME}_${SECRET}_${VERSION}" - > /dev/null
|
||||||
|
if [[ $? != 0 ]]; then exit 1; fi # exit if secret wasn't created
|
||||||
|
|
||||||
if [ "$STORE_WITH_PASS" == "true" ] && type pass > /dev/null 2>&1; then
|
if [ "$STORE_WITH_PASS" == "true" ] && type pass > /dev/null 2>&1; then
|
||||||
echo "$PW" | pass insert "hosts/$DOCKER_CONTEXT/${STACK_NAME}/${SECRET}" -m > /dev/null
|
echo "$PW" | pass insert "hosts/$DOCKER_CONTEXT/${STACK_NAME}/${SECRET}" -m > /dev/null
|
||||||
@ -1633,9 +1674,18 @@ POWERED BY
|
|||||||
}
|
}
|
||||||
|
|
||||||
sub_app_secret_generate(){
|
sub_app_secret_generate(){
|
||||||
SECRET="$abra__secret_"
|
local secret="$abra__secret_"
|
||||||
VERSION="$abra__version_"
|
local version="$abra__version_"
|
||||||
LENGTH="$abra__length_"
|
local length="$abra__length_"
|
||||||
|
local msg_already_outputted=${msg_already_outputted:-"false"}
|
||||||
|
|
||||||
|
if [ "$msg_already_outputted" == "false" ]; then
|
||||||
|
warning "These generated secrets are now stored as encrypted data on your server"
|
||||||
|
warning "Please take a moment to make sure you have saved a copy of the passwords"
|
||||||
|
warning "Abra is not able to show the password values in plain text again"
|
||||||
|
warning "See https://docs.cloud.autonomic.zone/secrets/ for more on secrets"
|
||||||
|
msg_already_outputted="true"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$abra___all" == "true" ]; then
|
if [ "$abra___all" == "true" ]; then
|
||||||
# Note(decentral1se): we need to reset the flag here to avoid the infinite
|
# Note(decentral1se): we need to reset the flag here to avoid the infinite
|
||||||
@ -1646,22 +1696,18 @@ sub_app_secret_generate(){
|
|||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "$LENGTH" ]]; then
|
if [[ -n "$length" ]]; then
|
||||||
if [ -z "$abra__cmd_" ]; then
|
|
||||||
require_binary pwgen
|
require_binary pwgen
|
||||||
abra__cmd_="pwgen -s \"$LENGTH\" 1"
|
abra__cmd_="pwgen -s $length 1"
|
||||||
fi
|
|
||||||
else
|
else
|
||||||
if [ -z "$abra__cmd_" ]; then
|
|
||||||
require_binary pwqgen
|
require_binary pwqgen
|
||||||
abra__cmd_=pwqgen
|
abra__cmd_=pwqgen
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
PWGEN=${abra__cmd_}
|
|
||||||
|
|
||||||
|
PWGEN=${abra__cmd_}
|
||||||
debug "SECRET: $SECRET, VERSION $VERSION, PW $PWGEN, ALL $abra___all"
|
debug "SECRET: $SECRET, VERSION $VERSION, PW $PWGEN, ALL $abra___all"
|
||||||
|
|
||||||
if [ -z "$SECRET" ] || [ -z "$VERSION" ] && [ "$abra___all" == "false" ]; then
|
if [ -z "$secret" ] || [ -z "$version" ] && [ "$abra___all" == "false" ]; then
|
||||||
error "Required arguments missing"
|
error "Required arguments missing"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -1674,11 +1720,71 @@ sub_app_secret_generate(){
|
|||||||
abra__data_="$PW"
|
abra__data_="$PW"
|
||||||
|
|
||||||
sub_app_secret_insert
|
sub_app_secret_insert
|
||||||
|
}
|
||||||
|
|
||||||
warning "These generated secrets are now stored as encrypted data on your server"
|
###### .. app volume
|
||||||
warning "Please take a moment to make sure you have saved a copy of the passwords"
|
|
||||||
warning "Abra is not able to show the password values in plain text again"
|
###### .. app volume ls
|
||||||
warning "See https://docs.docker.com/engine/swarm/secrets/ for more on secrets"
|
help_app_volume_ls (){
|
||||||
|
help_app_volume_list
|
||||||
|
}
|
||||||
|
|
||||||
|
sub_app_volume_ls(){
|
||||||
|
sub_app_volume_list
|
||||||
|
}
|
||||||
|
|
||||||
|
help_app_volume_list (){
|
||||||
|
echo "abra [options] app <app> volume (ls|list)
|
||||||
|
|
||||||
|
Show all volumes associated with <app>.
|
||||||
|
|
||||||
|
POWERED BY
|
||||||
|
docker volume ls"
|
||||||
|
}
|
||||||
|
|
||||||
|
sub_app_volume_list(){
|
||||||
|
docker volume ls --filter "name=${STACK_NAME}"
|
||||||
|
}
|
||||||
|
|
||||||
|
###### .. app volume rm
|
||||||
|
help_app_volume_rm (){
|
||||||
|
help_app_volume_delete
|
||||||
|
}
|
||||||
|
|
||||||
|
sub_app_volume_rm(){
|
||||||
|
sub_app_volume_delete
|
||||||
|
}
|
||||||
|
|
||||||
|
help_app_volume_delete (){
|
||||||
|
echo "abra [options] app <app> volume (delete|rm) (<volume>|--all)
|
||||||
|
|
||||||
|
Remove <app>'s Docker volume <volume>, or all volumes with --all.
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
--pass Remove volume(s) from \`pass\` as well
|
||||||
|
--all Delete all volumes for <app>
|
||||||
|
|
||||||
|
POWERED BY
|
||||||
|
docker volume rm
|
||||||
|
docker volume ls # for --all"
|
||||||
|
}
|
||||||
|
|
||||||
|
sub_app_volume_delete(){
|
||||||
|
# if --all is provided then $abra__secret_ will be blank and this will work
|
||||||
|
# auto-magically
|
||||||
|
NAMES=$(docker volume ls --filter "name=${STACK_NAME}_${abra__volume_}" --format "{{.Name}}")
|
||||||
|
|
||||||
|
if [ -z "$NAMES" ]; then
|
||||||
|
error "Could not find any volumes under ${STACK_NAME}_${abra__volume_}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
warning "About to delete volume(s) $(echo "$NAMES" | paste -d "")"
|
||||||
|
prompt_confirm
|
||||||
|
|
||||||
|
for NAME in ${NAMES}; do
|
||||||
|
docker volume rm "$NAME" > /dev/null
|
||||||
|
|
||||||
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
###### .. app run
|
###### .. app run
|
||||||
@ -1955,7 +2061,7 @@ sub_recipe_versions() {
|
|||||||
|
|
||||||
###### .. recipe <recipe> release
|
###### .. recipe <recipe> release
|
||||||
help_recipe_release() {
|
help_recipe_release() {
|
||||||
echo "abra [options] recipe <recipe> release
|
echo "abra [options] recipe <recipe> release [--force] [--bump]
|
||||||
|
|
||||||
(For recipe maintainers)
|
(For recipe maintainers)
|
||||||
|
|
||||||
@ -1968,6 +2074,7 @@ any of the images in <recipe>.
|
|||||||
OPTIONS
|
OPTIONS
|
||||||
--force Over-write existing tag; use this if you have a git tag for the
|
--force Over-write existing tag; use this if you have a git tag for the
|
||||||
recipe version already, to make sure labels are in sync.
|
recipe version already, to make sure labels are in sync.
|
||||||
|
--bump Make an n+1 release (packager specific changes to recipe)
|
||||||
|
|
||||||
POWERED BY
|
POWERED BY
|
||||||
skopeo inspect docker://image:tag
|
skopeo inspect docker://image:tag
|
||||||
@ -1982,8 +2089,13 @@ sub_recipe_release() {
|
|||||||
|
|
||||||
recipe="$abra__recipe_"
|
recipe="$abra__recipe_"
|
||||||
force="$abra___force"
|
force="$abra___force"
|
||||||
|
bump="$abra___bump"
|
||||||
recipe_dir="$ABRA_DIR/apps/$recipe"
|
recipe_dir="$ABRA_DIR/apps/$recipe"
|
||||||
|
|
||||||
|
if [ "$bump" = "true" ] && [ "$force" = "true" ]; then
|
||||||
|
error "--bump and --force don't play nicely together"
|
||||||
|
fi
|
||||||
|
|
||||||
cd "$recipe_dir" || error "Can't find recipe dir '$recipe_dir'"
|
cd "$recipe_dir" || error "Can't find recipe dir '$recipe_dir'"
|
||||||
|
|
||||||
get_recipe_versions "$recipe"
|
get_recipe_versions "$recipe"
|
||||||
@ -1996,24 +2108,31 @@ sub_recipe_release() {
|
|||||||
latest_version_message=$(git show -s --format=%s)
|
latest_version_message=$(git show -s --format=%s)
|
||||||
fi
|
fi
|
||||||
info "Latest available version: '$latest_version'"
|
info "Latest available version: '$latest_version'"
|
||||||
info "Latest verion message: '$latest_version_message'"
|
info "Latest version message: '$latest_version_message'"
|
||||||
else
|
else
|
||||||
latest_version=""
|
latest_version=""
|
||||||
latest_version_message="Initial tagged release"
|
latest_version_message="Initial tagged release"
|
||||||
info "No previous releases found"
|
info "No previous releases found"
|
||||||
|
if [ "$bump" = "true" ]; then
|
||||||
|
error "--bump can't do its work when there are no existing release versions"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
current_tag=$(git tag --points-at HEAD)
|
current_tag=$(git tag --points-at HEAD)
|
||||||
if [ "$force" = "false" ] && [ -n "$current_tag" ]; then
|
if [ "$force" = "false" ] && [ -n "$current_tag" ] && [ "$bump" = "false" ]; then
|
||||||
error "$recipe is already on $current_tag, no release needed"
|
success "$recipe is already on $current_tag, no release needed"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$(git rev-parse --abbrev-ref --symbolic-full-name HEAD)" = "HEAD" ]; then
|
if [ "$(git rev-parse --abbrev-ref --symbolic-full-name HEAD)" = "HEAD" ]; then
|
||||||
warning "It looks like $recipe_dir is in 'detached HEAD' state"
|
warning "It looks like $recipe_dir is in 'detached HEAD' state"
|
||||||
|
if [ "$abra___no_prompt" = "false" ]; then
|
||||||
read -rp "Check out main/master branch first? [Y/n] "
|
read -rp "Check out main/master branch first? [Y/n] "
|
||||||
if [ "${choice,,}" != "n" ]; then
|
if [ "${choice,,}" != "n" ]; then
|
||||||
checkout_main_or_master
|
checkout_main_or_master
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
checkout_main_or_master
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mapfile -t extra_compose_files < <(ls -- compose.*.yml 2> /dev/null || true)
|
mapfile -t extra_compose_files < <(ls -- compose.*.yml 2> /dev/null || true)
|
||||||
@ -2023,7 +2142,12 @@ sub_recipe_release() {
|
|||||||
new_version="false"
|
new_version="false"
|
||||||
|
|
||||||
for compose_file in "${compose_files[@]}"; do
|
for compose_file in "${compose_files[@]}"; do
|
||||||
|
if [ "$bump" = "true" ]; then
|
||||||
|
continue # skip trying to upgrade labels for --bump logic
|
||||||
|
fi
|
||||||
|
|
||||||
mapfile -t services < <($YQ e -N '.services | keys | .[]' "$compose_file" | sort -u)
|
mapfile -t services < <($YQ e -N '.services | keys | .[]' "$compose_file" | sort -u)
|
||||||
|
|
||||||
if [ "$compose_file" = "compose.yml" ] && ! printf '%s\0' "${services[@]}" | grep -Fqxz -- "app"; then
|
if [ "$compose_file" = "compose.yml" ] && ! printf '%s\0' "${services[@]}" | grep -Fqxz -- "app"; then
|
||||||
# shellcheck disable=SC2016
|
# shellcheck disable=SC2016
|
||||||
warning 'No `app` service found; which one should we use for the version number?'
|
warning 'No `app` service found; which one should we use for the version number?'
|
||||||
@ -2064,7 +2188,7 @@ sub_recipe_release() {
|
|||||||
fi
|
fi
|
||||||
info "Fetching $service_image metadata from Docker Hub"
|
info "Fetching $service_image metadata from Docker Hub"
|
||||||
service_data=$(skopeo inspect "docker://$service_image")
|
service_data=$(skopeo inspect "docker://$service_image")
|
||||||
service_digest=$(echo "$service_data" | jq -r '.Digest' | cut -d':' -f2 | cut -c-8)
|
service_digest=$(echo "$service_data" | $JQ -r '.Digest' | cut -d':' -f2 | cut -c-8)
|
||||||
|
|
||||||
label="coop-cloud.\${STACK_NAME}.$service.version=${service_tag}-${service_digest}"
|
label="coop-cloud.\${STACK_NAME}.$service.version=${service_tag}-${service_digest}"
|
||||||
|
|
||||||
@ -2099,22 +2223,49 @@ sub_recipe_release() {
|
|||||||
|
|
||||||
success "All compose files updated; new version is $new_version"
|
success "All compose files updated; new version is $new_version"
|
||||||
|
|
||||||
read -rp "Commit your changes to git? (y/[n])? " choice
|
if [ "$abra___no_prompt" = "false" ] && [ "$bump" = "false" ]; then
|
||||||
|
read -rp "Commit your changes to git? [y/N]? " choice
|
||||||
|
|
||||||
if [ "${choice,,}" != "y" ]; then
|
if [ "${choice,,}" != "y" ]; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$abra___no_prompt" = "false" ] && [ "$bump" = "false" ]; then
|
||||||
git commit -avem "Version $new_version; sync labels" || exit
|
git commit -avem "Version $new_version; sync labels" || exit
|
||||||
|
else
|
||||||
|
git commit -am "Version $new_version; sync labels" || true
|
||||||
|
fi
|
||||||
|
|
||||||
read -rp "Tag this as \`$new_version\`? (y/[n])? " choice
|
if [ "$abra___no_prompt" = "false" ]; then
|
||||||
|
read -rp "Tag this as \`$new_version\`? [y/N]? " choice
|
||||||
|
|
||||||
if [ "${choice,,}" != "y" ]; then
|
if [ "${choice,,}" != "y" ]; then
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
test "$force" = "true" && git tag -d "$new_version"
|
if [ "$force" = "true" ]; then
|
||||||
|
git tag -d "$new_version" || true
|
||||||
|
git push origin --delete "$new_version" || true
|
||||||
|
debug "Deleted local tag and remote tag if present"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$abra___no_prompt" = "false" ]; then
|
||||||
git tag -aem "$latest_version_message" "$new_version"
|
git tag -aem "$latest_version_message" "$new_version"
|
||||||
|
else
|
||||||
|
git tag -am "$latest_version_message" "$new_version" || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$abra___no_prompt" = "false" ]; then
|
||||||
|
read -rp "Git push this new tag? [y/N]? " choice
|
||||||
|
|
||||||
|
if [ "${choice,,}" = "y" ]; then
|
||||||
|
git push && git push --tags
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
git push && git push --tags
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
@ -2311,9 +2462,9 @@ OPTIONS
|
|||||||
|
|
||||||
sub_upgrade() {
|
sub_upgrade() {
|
||||||
if [[ "$abra___dev" == "true" ]]; then
|
if [[ "$abra___dev" == "true" ]]; then
|
||||||
curl https://install.abra.autonomic.zone | bash -s -- --dev
|
curl https://install.abra.coopcloud.tech | bash -s -- --dev
|
||||||
else
|
else
|
||||||
curl https://install.abra.autonomic.zone | bash
|
curl https://install.abra.coopcloud.tech | bash
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2406,7 +2557,7 @@ abra() {
|
|||||||
abra___skip_check abra__backup_file_ abra___verbose abra___debug \
|
abra___skip_check abra__backup_file_ abra___verbose abra___debug \
|
||||||
abra___help abra___branch abra___volumes abra__provider_ abra___type \
|
abra___help abra___branch abra___volumes abra__provider_ abra___type \
|
||||||
abra___dev abra___update abra___no_prompt abra___force \
|
abra___dev abra___update abra___no_prompt abra___force \
|
||||||
abra___skip_version_check abra__recipe_ abra___no_domain_poll
|
abra__recipe_ abra___fast abra__volume_ abra___bump abra___chaos
|
||||||
|
|
||||||
if ! type tput > /dev/null 2>&1; then
|
if ! type tput > /dev/null 2>&1; then
|
||||||
tput() {
|
tput() {
|
||||||
|
108
bin/abralib.py
Normal file
108
bin/abralib.py
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
"""Shared utilities for bin/*.py scripts."""
|
||||||
|
|
||||||
|
from logging import DEBUG, basicConfig, getLogger
|
||||||
|
from os import chdir, mkdir
|
||||||
|
from os.path import exists, expanduser
|
||||||
|
from pathlib import Path
|
||||||
|
from shlex import split
|
||||||
|
from subprocess import check_output
|
||||||
|
from sys import exit
|
||||||
|
|
||||||
|
from requests import get
|
||||||
|
|
||||||
|
HOME_PATH = expanduser("~/")
|
||||||
|
CLONES_PATH = Path(f"{HOME_PATH}/.abra/apps").absolute()
|
||||||
|
REPOS_TO_SKIP = (
|
||||||
|
"abra",
|
||||||
|
"abra-apps",
|
||||||
|
"abra-gandi",
|
||||||
|
"abra-hetzner",
|
||||||
|
"auto-apps-json",
|
||||||
|
"auto-mirror",
|
||||||
|
"backup-bot",
|
||||||
|
"coopcloud.tech",
|
||||||
|
"coturn",
|
||||||
|
"docker-cp-deploy",
|
||||||
|
"docker-dind-bats-kcov",
|
||||||
|
"docs.coopcloud.tech",
|
||||||
|
"example",
|
||||||
|
"gardening",
|
||||||
|
"organising",
|
||||||
|
"pyabra",
|
||||||
|
"radicle-seed-node",
|
||||||
|
"stack-ssh-deploy",
|
||||||
|
"swarm-cronjob",
|
||||||
|
)
|
||||||
|
YQ_PATH = Path(f"{HOME_PATH}/.abra/vendor/yq")
|
||||||
|
JQ_PATH = Path(f"{HOME_PATH}/.abra/vendor/jq")
|
||||||
|
|
||||||
|
log = getLogger(__name__)
|
||||||
|
basicConfig()
|
||||||
|
log.setLevel(DEBUG)
|
||||||
|
|
||||||
|
|
||||||
|
def _run_cmd(cmd, shell=False, **kwargs):
|
||||||
|
"""Run a shell command."""
|
||||||
|
args = [split(cmd)]
|
||||||
|
|
||||||
|
if shell:
|
||||||
|
args = [cmd]
|
||||||
|
kwargs = {"shell": shell}
|
||||||
|
|
||||||
|
try:
|
||||||
|
return check_output(*args, **kwargs).decode("utf-8").strip()
|
||||||
|
except Exception as exception:
|
||||||
|
log.error(f"Failed to run {cmd}, saw {str(exception)}")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def get_repos_json():
|
||||||
|
""" Retrieve repo list from Gitea """
|
||||||
|
|
||||||
|
url = "https://git.autonomic.zone/api/v1/orgs/coop-cloud/repos"
|
||||||
|
|
||||||
|
log.info(f"Retrieving {url}")
|
||||||
|
|
||||||
|
repos = []
|
||||||
|
response = True
|
||||||
|
page = 1
|
||||||
|
|
||||||
|
try:
|
||||||
|
while response:
|
||||||
|
log.info(f"Trying to fetch page {page}")
|
||||||
|
response = get(url + f"?page={page}", timeout=10).json()
|
||||||
|
repos.extend(response)
|
||||||
|
page += 1
|
||||||
|
|
||||||
|
return repos
|
||||||
|
except Exception as exception:
|
||||||
|
log.error(f"Failed to retrieve {url}, saw {str(exception)}")
|
||||||
|
exit(1)
|
||||||
|
|
||||||
|
|
||||||
|
def clone_all_apps(repos_json, ssh=False):
|
||||||
|
"""Clone all Co-op Cloud apps to ~/.abra/apps."""
|
||||||
|
if not exists(CLONES_PATH):
|
||||||
|
mkdir(CLONES_PATH)
|
||||||
|
|
||||||
|
if ssh:
|
||||||
|
repos = [[p["name"], p["ssh_url"]] for p in repos_json]
|
||||||
|
else:
|
||||||
|
repos = [[p["name"], p["clone_url"]] for p in repos_json]
|
||||||
|
|
||||||
|
for name, url in repos:
|
||||||
|
if name in REPOS_TO_SKIP:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not exists(f"{CLONES_PATH}/{name}"):
|
||||||
|
log.info(f"Retrieving {url}")
|
||||||
|
_run_cmd(f"git clone {url} {CLONES_PATH}/{name}")
|
||||||
|
|
||||||
|
chdir(f"{CLONES_PATH}/{name}")
|
||||||
|
if not int(_run_cmd("git branch --list | wc -l", shell=True)):
|
||||||
|
log.info(f"Guessing main branch is HEAD for {name}")
|
||||||
|
_run_cmd("git checkout main")
|
||||||
|
else:
|
||||||
|
log.info(f"Updating {name}")
|
||||||
|
chdir(f"{CLONES_PATH}/{name}")
|
||||||
|
_run_cmd("git fetch -a")
|
133
bin/app-json.py
133
bin/app-json.py
@ -6,84 +6,44 @@
|
|||||||
# ~/.abra/apps), and format it as JSON so that it can be hosted here:
|
# ~/.abra/apps), and format it as JSON so that it can be hosted here:
|
||||||
# https://apps.coopcloud.tech
|
# https://apps.coopcloud.tech
|
||||||
|
|
||||||
|
import argparse
|
||||||
from json import dump
|
from json import dump
|
||||||
from logging import DEBUG, basicConfig, getLogger
|
from os import chdir, environ, getcwd, listdir
|
||||||
from os import chdir, listdir, mkdir
|
from os.path import basename
|
||||||
from os.path import basename, exists, expanduser
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from re import findall, search
|
from re import findall, search
|
||||||
from shlex import split
|
from subprocess import DEVNULL
|
||||||
from subprocess import DEVNULL, check_output
|
|
||||||
from sys import exit
|
|
||||||
|
|
||||||
from requests import get
|
from requests import get
|
||||||
|
|
||||||
HOME_PATH = expanduser("~/")
|
from abralib import (
|
||||||
CLONES_PATH = Path(f"{HOME_PATH}/.abra/apps").absolute()
|
CLONES_PATH,
|
||||||
YQ_PATH = Path(f"{HOME_PATH}/.abra/vendor/yq")
|
JQ_PATH,
|
||||||
SCRIPT_PATH = Path(__file__).absolute().parent
|
REPOS_TO_SKIP,
|
||||||
REPOS_TO_SKIP = (
|
YQ_PATH,
|
||||||
"abra",
|
_run_cmd,
|
||||||
"abra-apps",
|
clone_all_apps,
|
||||||
"abra-gandi",
|
get_repos_json,
|
||||||
"abra-hetzner",
|
log,
|
||||||
"backup-bot",
|
|
||||||
"coopcloud.tech",
|
|
||||||
"coturn",
|
|
||||||
"docker-cp-deploy",
|
|
||||||
"docker-dind-bats-kcov",
|
|
||||||
"docs.coopcloud.tech",
|
|
||||||
"example",
|
|
||||||
"gardening",
|
|
||||||
"organising",
|
|
||||||
"pyabra",
|
|
||||||
"radicle-seed-node",
|
|
||||||
"stack-ssh-deploy",
|
|
||||||
"swarm-cronjob",
|
|
||||||
)
|
)
|
||||||
|
|
||||||
log = getLogger(__name__)
|
parser = argparse.ArgumentParser(description="Generate a new apps.json")
|
||||||
basicConfig()
|
parser.add_argument("--output", type=Path, default=f"{getcwd()}/apps.json")
|
||||||
log.setLevel(DEBUG)
|
|
||||||
|
|
||||||
|
|
||||||
def _run_cmd(cmd, shell=False, **kwargs):
|
def skopeo_login():
|
||||||
"""Run a shell command."""
|
"""Log into the docker registry to avoid rate limits."""
|
||||||
args = [split(cmd)]
|
user = environ.get("SKOPEO_USER")
|
||||||
|
password = environ.get("SKOPEO_PASSWORD")
|
||||||
|
registry = environ.get("SKOPEO_REGISTRY", "docker.io")
|
||||||
|
|
||||||
if shell:
|
if not user or not password:
|
||||||
args = [cmd]
|
log.info("Failed to log in via Skopeo due to missing env vars")
|
||||||
kwargs = {"shell": shell}
|
return
|
||||||
|
|
||||||
try:
|
login_cmd = f"skopeo login {registry} -u {user} -p {password}"
|
||||||
return check_output(*args, **kwargs).decode("utf-8").strip()
|
output = _run_cmd(login_cmd, shell=True)
|
||||||
except Exception as exception:
|
log.info(f"Skopeo login attempt: {output}")
|
||||||
log.error(f"Failed to run {cmd}, saw {str(exception)}")
|
|
||||||
exit(1)
|
|
||||||
|
|
||||||
|
|
||||||
def get_repos_json():
|
|
||||||
""" Retrieve repo list from Gitea """
|
|
||||||
|
|
||||||
url = "https://git.autonomic.zone/api/v1/orgs/coop-cloud/repos"
|
|
||||||
|
|
||||||
log.info(f"Retrieving {url}")
|
|
||||||
|
|
||||||
repos = []
|
|
||||||
response = True
|
|
||||||
page = 1
|
|
||||||
|
|
||||||
try:
|
|
||||||
while response:
|
|
||||||
log.info(f"Trying to fetch page {page}")
|
|
||||||
response = get(url + f"?page={page}", timeout=10).json()
|
|
||||||
repos.extend(response)
|
|
||||||
page += 1
|
|
||||||
|
|
||||||
return repos
|
|
||||||
except Exception as exception:
|
|
||||||
log.error(f"Failed to retrieve {url}, saw {str(exception)}")
|
|
||||||
exit(1)
|
|
||||||
|
|
||||||
|
|
||||||
def get_published_apps_json():
|
def get_published_apps_json():
|
||||||
@ -99,31 +59,6 @@ def get_published_apps_json():
|
|||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
|
||||||
def clone_all_apps(repos_json):
|
|
||||||
"""Clone all Co-op Cloud apps to ~/.abra/apps."""
|
|
||||||
if not exists(CLONES_PATH):
|
|
||||||
mkdir(CLONES_PATH)
|
|
||||||
|
|
||||||
repos = [[p["name"], p["ssh_url"]] for p in repos_json]
|
|
||||||
|
|
||||||
for name, url in repos:
|
|
||||||
if name in REPOS_TO_SKIP:
|
|
||||||
continue
|
|
||||||
|
|
||||||
if not exists(f"{CLONES_PATH}/{name}"):
|
|
||||||
log.info(f"Retrieving {url}")
|
|
||||||
_run_cmd(f"git clone {url} {CLONES_PATH}/{name}")
|
|
||||||
|
|
||||||
chdir(f"{CLONES_PATH}/{name}")
|
|
||||||
if not int(_run_cmd("git branch --list | wc -l", shell=True)):
|
|
||||||
log.info(f"Guessing main branch is HEAD for {name}")
|
|
||||||
_run_cmd("git checkout main")
|
|
||||||
else:
|
|
||||||
log.info(f"Updating {name}")
|
|
||||||
chdir(f"{CLONES_PATH}/{name}")
|
|
||||||
_run_cmd("git fetch -a")
|
|
||||||
|
|
||||||
|
|
||||||
def generate_apps_json(repos_json):
|
def generate_apps_json(repos_json):
|
||||||
"""Generate the abra-apps.json application versions file."""
|
"""Generate the abra-apps.json application versions file."""
|
||||||
apps_json = {}
|
apps_json = {}
|
||||||
@ -140,7 +75,8 @@ def generate_apps_json(repos_json):
|
|||||||
chdir(app_path)
|
chdir(app_path)
|
||||||
|
|
||||||
metadata = get_app_metadata(app_path)
|
metadata = get_app_metadata(app_path)
|
||||||
name = metadata.pop("name", "")
|
|
||||||
|
name = metadata.pop("name", app)
|
||||||
|
|
||||||
log.info(f"Processing {app}")
|
log.info(f"Processing {app}")
|
||||||
apps_json[app] = {
|
apps_json[app] = {
|
||||||
@ -173,7 +109,7 @@ def get_app_metadata(app_path):
|
|||||||
return {}
|
return {}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
for match in findall(r"\*\*.*\s\*", contents):
|
for match in findall(r"\*\*.*", contents):
|
||||||
title = search(r"(?<=\*\*).*(?=\*\*)", match).group().lower()
|
title = search(r"(?<=\*\*).*(?=\*\*)", match).group().lower()
|
||||||
|
|
||||||
if title == "image":
|
if title == "image":
|
||||||
@ -256,7 +192,7 @@ def get_app_versions(app_path, cached_apps_json):
|
|||||||
if image in ("null", "---"):
|
if image in ("null", "---"):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
images_cmd = f"skopeo inspect docker://{image} | jq '.Digest'"
|
images_cmd = f"skopeo inspect docker://{image} | {JQ_PATH} '.Digest'"
|
||||||
output = _run_cmd(images_cmd, shell=True)
|
output = _run_cmd(images_cmd, shell=True)
|
||||||
|
|
||||||
service_version_info = {
|
service_version_info = {
|
||||||
@ -279,11 +215,14 @@ def get_app_versions(app_path, cached_apps_json):
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
"""Run the script."""
|
"""Run the script."""
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
skopeo_login()
|
||||||
|
|
||||||
repos_json = get_repos_json()
|
repos_json = get_repos_json()
|
||||||
clone_all_apps(repos_json)
|
clone_all_apps(repos_json)
|
||||||
|
|
||||||
target = f"{SCRIPT_PATH}/../deploy/apps.coopcloud.tech/apps.json"
|
with open(args.output, "w", encoding="utf-8") as handle:
|
||||||
with open(target, "w", encoding="utf-8") as handle:
|
|
||||||
dump(
|
dump(
|
||||||
generate_apps_json(repos_json),
|
generate_apps_json(repos_json),
|
||||||
handle,
|
handle,
|
||||||
@ -292,7 +231,7 @@ def main():
|
|||||||
sort_keys=True,
|
sort_keys=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
log.info(f"Successfully generated {target}")
|
log.info(f"Successfully generated {args.output}")
|
||||||
|
|
||||||
|
|
||||||
main()
|
main()
|
||||||
|
16
bin/clone-all-apps.py
Executable file
16
bin/clone-all-apps.py
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# Usage: ./clone-all-apps.py
|
||||||
|
#
|
||||||
|
# Clone all available apps into ~/.abra/apps using ssh:// URLs
|
||||||
|
|
||||||
|
from abralib import clone_all_apps, get_repos_json
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Run the script."""
|
||||||
|
repos_json = get_repos_json()
|
||||||
|
clone_all_apps(repos_json, ssh=True)
|
||||||
|
|
||||||
|
|
||||||
|
main()
|
47
bin/github-sync.py
Executable file
47
bin/github-sync.py
Executable file
@ -0,0 +1,47 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# Usage: ./github-sync.py
|
||||||
|
#
|
||||||
|
# Mirror repositories to Github (Fuck M$, get it straight)
|
||||||
|
|
||||||
|
from os import chdir, environ, listdir
|
||||||
|
|
||||||
|
from abralib import CLONES_PATH, _run_cmd, clone_all_apps, get_repos_json, log
|
||||||
|
|
||||||
|
REPOS_TO_SKIP = (
|
||||||
|
"backup-bot",
|
||||||
|
"docker-dind-bats-kcov",
|
||||||
|
"docs.coopcloud.tech",
|
||||||
|
"pyabra",
|
||||||
|
"radicle-seed-node",
|
||||||
|
"swarm-cronjob",
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Run the script."""
|
||||||
|
repos_json = get_repos_json()
|
||||||
|
clone_all_apps(repos_json)
|
||||||
|
|
||||||
|
for app in listdir(CLONES_PATH):
|
||||||
|
if app in REPOS_TO_SKIP:
|
||||||
|
log.info(f"Skipping {app}")
|
||||||
|
continue
|
||||||
|
|
||||||
|
app_path = f"{CLONES_PATH}/{app}"
|
||||||
|
chdir(app_path)
|
||||||
|
|
||||||
|
log.info(f"Mirroring {app}...")
|
||||||
|
|
||||||
|
token = environ.get("GITHUB_ACCESS_TOKEN")
|
||||||
|
remote = f"https://coopcloudbot:{token}@github.com/Coop-Cloud/{app}.git"
|
||||||
|
|
||||||
|
_run_cmd(
|
||||||
|
f"git remote add github {remote} || true",
|
||||||
|
shell=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
_run_cmd("git push github --all")
|
||||||
|
|
||||||
|
|
||||||
|
main()
|
20
bin/renovate-ls-apps.py
Executable file
20
bin/renovate-ls-apps.py
Executable file
@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
# Usage: ./renovate-ls-apps.py
|
||||||
|
#
|
||||||
|
# Output list of apps for Renovate bot configuration
|
||||||
|
|
||||||
|
from abralib import REPOS_TO_SKIP, get_repos_json
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
"""Run the script."""
|
||||||
|
repos = [p["full_name"] for p in get_repos_json()]
|
||||||
|
repos.sort()
|
||||||
|
for repo in repos:
|
||||||
|
if repo.split("/")[-1] in REPOS_TO_SKIP:
|
||||||
|
continue
|
||||||
|
print(f'"{repo}",')
|
||||||
|
|
||||||
|
|
||||||
|
main()
|
@ -38,6 +38,22 @@ _abra_complete_apps()
|
|||||||
mapfile -t COMPREPLY < <(compgen -W "$(_abra_apps)" -- "$1")
|
mapfile -t COMPREPLY < <(compgen -W "$(_abra_apps)" -- "$1")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_abra_recipes()
|
||||||
|
{
|
||||||
|
shopt -s nullglob dotglob
|
||||||
|
local RECIPES=(~/.abra/apps/*)
|
||||||
|
shopt -u nullglob dotglob
|
||||||
|
|
||||||
|
for RECIPE in "${RECIPES[@]}"; do
|
||||||
|
_abra_basename "${RECIPE%.env}"
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
_abra_complete_recipes()
|
||||||
|
{
|
||||||
|
mapfile -t COMPREPLY < <(compgen -W "$(_abra_recipes)" -- "$1")
|
||||||
|
}
|
||||||
|
|
||||||
_abra_complete()
|
_abra_complete()
|
||||||
{
|
{
|
||||||
compopt +o default +o nospace
|
compopt +o default +o nospace
|
||||||
@ -46,6 +62,7 @@ _abra_complete()
|
|||||||
local -r cmds='
|
local -r cmds='
|
||||||
app
|
app
|
||||||
server
|
server
|
||||||
|
recipe
|
||||||
'
|
'
|
||||||
local -r short_opts='-e -h -s -v'
|
local -r short_opts='-e -h -s -v'
|
||||||
local -r long_opts='--env --help --stack --version'
|
local -r long_opts='--env --help --stack --version'
|
||||||
@ -101,6 +118,12 @@ _abra_complete()
|
|||||||
_abra_complete_apps "$cur"
|
_abra_complete_apps "$cur"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
recipe)
|
||||||
|
# Offer exactly one app completion.
|
||||||
|
if (( COMP_CWORD == cmd_index + 1 )); then
|
||||||
|
_abra_complete_recipes "$cur"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
#help)
|
#help)
|
||||||
# # Offer exactly one command name completion.
|
# # Offer exactly one command name completion.
|
||||||
# if (( COMP_CWORD == cmd_index + 1 )); then
|
# if (( COMP_CWORD == cmd_index + 1 )); then
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,41 +0,0 @@
|
|||||||
---
|
|
||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
image: "nginx:stable"
|
|
||||||
configs:
|
|
||||||
- source: abra_conf
|
|
||||||
target: /etc/nginx/conf.d/abra.conf
|
|
||||||
- source: abra_apps_json
|
|
||||||
target: /var/www/abra-apps/apps.json
|
|
||||||
volumes:
|
|
||||||
- "public:/var/www/abra-apps"
|
|
||||||
networks:
|
|
||||||
- proxy
|
|
||||||
deploy:
|
|
||||||
update_config:
|
|
||||||
failure_action: rollback
|
|
||||||
order: start-first
|
|
||||||
labels:
|
|
||||||
- "traefik.enable=true"
|
|
||||||
- "traefik.http.services.abra-apps.loadbalancer.server.port=80"
|
|
||||||
- "traefik.http.routers.abra-apps.rule=Host(`apps.coopcloud.tech`, `abra-apps.cloud.autonomic.zone`)"
|
|
||||||
- "traefik.http.routers.abra-apps.entrypoints=web-secure"
|
|
||||||
- "traefik.http.routers.abra-apps.tls.certresolver=production"
|
|
||||||
- "traefik.http.routers.abra-apps.middlewares=abra-apps-redirect"
|
|
||||||
- "traefik.http.middlewares.abra-apps-redirect.headers.SSLForceHost=true"
|
|
||||||
- "traefik.http.middlewares.abra-apps-redirect.headers.SSLHost=apps.coopcloud.tech"
|
|
||||||
|
|
||||||
configs:
|
|
||||||
abra_apps_json:
|
|
||||||
file: apps.json
|
|
||||||
abra_conf:
|
|
||||||
file: nginx.conf
|
|
||||||
|
|
||||||
networks:
|
|
||||||
proxy:
|
|
||||||
external: true
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
public:
|
|
@ -1,10 +0,0 @@
|
|||||||
server {
|
|
||||||
listen 80 default_server;
|
|
||||||
server_name apps.coopcloud.tech;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
root /var/www/abra-apps;
|
|
||||||
add_header Content-Type application/json;
|
|
||||||
index apps.json;
|
|
||||||
}
|
|
||||||
}
|
|
@ -20,7 +20,7 @@ services:
|
|||||||
labels:
|
labels:
|
||||||
- "traefik.enable=true"
|
- "traefik.enable=true"
|
||||||
- "traefik.http.services.abra-installer.loadbalancer.server.port=80"
|
- "traefik.http.services.abra-installer.loadbalancer.server.port=80"
|
||||||
- "traefik.http.routers.abra-installer.rule=Host(`install.abra.autonomic.zone`)"
|
- "traefik.http.routers.abra-installer.rule=Host(`install.abra.autonomic.zone`,`install.abra.coopcloud.tech`)"
|
||||||
- "traefik.http.routers.abra-installer.entrypoints=web-secure"
|
- "traefik.http.routers.abra-installer.entrypoints=web-secure"
|
||||||
- "traefik.http.routers.abra-installer.tls.certresolver=production"
|
- "traefik.http.routers.abra-installer.tls.certresolver=production"
|
||||||
|
|
@ -1,9 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
ABRA_VERSION="0.7.3"
|
ABRA_VERSION="9.0.0"
|
||||||
GIT_URL="https://git.autonomic.zone/coop-cloud/abra"
|
GIT_URL="https://git.autonomic.zone/coop-cloud/abra"
|
||||||
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
|
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
|
||||||
ABRA_DIR="${ABRA_DIR:-$HOME/.abra/}"
|
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
|
||||||
|
|
||||||
function install_abra_release {
|
function install_abra_release {
|
||||||
mkdir -p "$HOME/.local/bin"
|
mkdir -p "$HOME/.local/bin"
|
@ -1,6 +1,6 @@
|
|||||||
server {
|
server {
|
||||||
listen 80 default_server;
|
listen 80 default_server;
|
||||||
server_name install.abra.autonomic.zone;
|
server_name install.abra.autonomic.zone install.abra.coopcloud.tech;
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
root /var/www/abra-installer;
|
root /var/www/abra-installer;
|
40
makefile
40
makefile
@ -1,4 +1,4 @@
|
|||||||
.PHONY: test shellcheck docopt kcov codecov release-installer
|
.PHONY: test shellcheck docopt release-installer build push
|
||||||
|
|
||||||
test:
|
test:
|
||||||
@sudo DOCKER_CONTEXT=default docker run \
|
@sudo DOCKER_CONTEXT=default docker run \
|
||||||
@ -7,13 +7,13 @@ test:
|
|||||||
-d \
|
-d \
|
||||||
--name=abra-test-dind \
|
--name=abra-test-dind \
|
||||||
-e DOCKER_TLS_CERTDIR="" \
|
-e DOCKER_TLS_CERTDIR="" \
|
||||||
decentral1se/docker-dind-bats-kcov
|
decentral1se/docker-dind-bats-kcov \
|
||||||
@DOCKER_CONTEXT=default docker exec \
|
@DOCKER_CONTEXT=default sudo docker exec \
|
||||||
-it \
|
-it \
|
||||||
abra-test-dind \
|
abra-test-dind \
|
||||||
sh -c "cd /workdir && bats /workdir/tests"
|
sh -c "cd /workdir && bats /workdir/tests"
|
||||||
@DOCKER_CONTEXT=default docker stop abra-test-dind
|
@DOCKER_CONTEXT=default sudo docker stop abra-test-dind
|
||||||
@DOCKER_CONTEXT=default docker rm abra-test-dind
|
@DOCKER_CONTEXT=default sudo docker rm abra-test-dind
|
||||||
|
|
||||||
shellcheck:
|
shellcheck:
|
||||||
@docker run \
|
@docker run \
|
||||||
@ -32,27 +32,19 @@ docopt:
|
|||||||
fi
|
fi
|
||||||
.venv/bin/docopt.sh abra
|
.venv/bin/docopt.sh abra
|
||||||
|
|
||||||
kcov:
|
|
||||||
@docker run \
|
|
||||||
-it \
|
|
||||||
--rm \
|
|
||||||
-v $$(pwd):/workdir \
|
|
||||||
kcov/kcov:latest \
|
|
||||||
sh -c "kcov /workdir/coverage /workdir/abra || true"
|
|
||||||
|
|
||||||
codecov: SHELL:=/bin/bash
|
|
||||||
codecov:
|
|
||||||
@bash <(curl -s https://codecov.io/bash) \
|
|
||||||
-s coverage -t $$(pass show hosts/swarm.autonomic.zone/drone/codecov/token)
|
|
||||||
|
|
||||||
release-installer:
|
release-installer:
|
||||||
@DOCKER_CONTEXT=swarm.autonomic.zone \
|
@DOCKER_CONTEXT=swarm.autonomic.zone \
|
||||||
docker stack rm abra-installer-script && \
|
docker stack rm abra-installer-script && \
|
||||||
cd deploy/install.abra.autonomic.zone && \
|
cd deploy/install.abra.coopcloud.tech && \
|
||||||
DOCKER_CONTEXT=swarm.autonomic.zone docker stack deploy -c compose.yml abra-installer-script
|
DOCKER_CONTEXT=swarm.autonomic.zone docker stack deploy -c compose.yml abra-installer-script
|
||||||
|
|
||||||
release-apps:
|
build:
|
||||||
@DOCKER_CONTEXT=swarm.autonomic.zone \
|
@docker build -t thecoopcloud/abra .
|
||||||
docker stack rm abra-apps-json && \
|
|
||||||
cd deploy/apps.coopcloud.tech && \
|
push: build
|
||||||
DOCKER_CONTEXT=swarm.autonomic.zone docker stack deploy -c compose.yml abra-apps-json
|
@docker push thecoopcloud/abra
|
||||||
|
|
||||||
|
symlink:
|
||||||
|
@mkdir -p ~/.abra/servers/ && \
|
||||||
|
ln -srf tests/default ~/.abra/servers && \
|
||||||
|
ln -srf tests/apps/* ~/.abra/apps
|
||||||
|
84
tests/apps/works/compose.yml
Normal file
84
tests/apps/works/compose.yml
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
---
|
||||||
|
|
||||||
|
# The goal of this compose file is to have a testing ground for understanding
|
||||||
|
# what cases we need to handle to get stable deployments. For that, we need to
|
||||||
|
# work with healthchecks and deploy configurations quite closely. If you run
|
||||||
|
# the `make symlink` target then this will be loaded into a "fake" app on your
|
||||||
|
# local machine which you can deploy with `abra`.
|
||||||
|
|
||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
r1_should_work:
|
||||||
|
image: redis:alpine
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
rollback_config:
|
||||||
|
order: start-first
|
||||||
|
restart_policy:
|
||||||
|
max_attempts: 1
|
||||||
|
healthcheck:
|
||||||
|
test: redis-cli ping
|
||||||
|
interval: 2s
|
||||||
|
retries: 3
|
||||||
|
start_period: 1s
|
||||||
|
timeout: 3s
|
||||||
|
|
||||||
|
r2_broken_health_check:
|
||||||
|
image: redis:alpine
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
rollback_config:
|
||||||
|
order: start-first
|
||||||
|
restart_policy:
|
||||||
|
max_attempts: 3
|
||||||
|
healthcheck:
|
||||||
|
test: foobar
|
||||||
|
interval: 2s
|
||||||
|
retries: 3
|
||||||
|
start_period: 1s
|
||||||
|
timeout: 3s
|
||||||
|
|
||||||
|
r3_no_health_check:
|
||||||
|
image: redis:alpine
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
rollback_config:
|
||||||
|
order: start-first
|
||||||
|
restart_policy:
|
||||||
|
max_attempts: 3
|
||||||
|
|
||||||
|
r4_disabled_health_check:
|
||||||
|
image: redis:alpine
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
rollback_config:
|
||||||
|
order: start-first
|
||||||
|
restart_policy:
|
||||||
|
max_attempts: 3
|
||||||
|
healthcheck:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
r5_should_also_work:
|
||||||
|
image: redis:alpine
|
||||||
|
deploy:
|
||||||
|
update_config:
|
||||||
|
failure_action: rollback
|
||||||
|
order: start-first
|
||||||
|
rollback_config:
|
||||||
|
order: start-first
|
||||||
|
restart_policy:
|
||||||
|
max_attempts: 1
|
||||||
|
healthcheck:
|
||||||
|
test: redis-cli ping
|
||||||
|
interval: 2s
|
||||||
|
retries: 3
|
||||||
|
start_period: 1s
|
||||||
|
timeout: 3s
|
1
tests/default/works.env
Normal file
1
tests/default/works.env
Normal file
@ -0,0 +1 @@
|
|||||||
|
TYPE=works
|
Reference in New Issue
Block a user