Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
71820f7e0b | |||
207728e1be | |||
36e470c8e7 | |||
0096e0d30b |
@ -1,5 +1,13 @@
|
|||||||
# abra
|
# abra
|
||||||
|
|
||||||
|
## 🔥 🔥 🔥 D E P R E C A T E D 🔥 🔥 🔥
|
||||||
|
|
||||||
|
[`abra`](https://git.coopcloud.tech/coop-cloud/abra) served us well but we're porting it to [Golang](https://golang.org) over in [`go-abra`](https://git.coopcloud.tech/coop-cloud/go-abra). To learn more about the reasons for that, see [this blog post](https://coopcloud.tech/blog/this-month-in-coop-cloud-july/). This means this repository and tool are officially deprecated as of August 1rst 2021. We will still provide bug security fixes but no new features will be developed in `abra`. Feel free to go on using it and reporting issues against this issue tracker. Thanks for all the good times Bash.
|
||||||
|
|
||||||
|
## 🔥 🔥 🔥 D E P R E C A T E D 🔥 🔥 🔥
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
[](https://drone.autonomic.zone/coop-cloud/abra)
|
[](https://drone.autonomic.zone/coop-cloud/abra)
|
||||||
|
|
||||||
> https://coopcloud.tech
|
> https://coopcloud.tech
|
||||||
|
2
abra
2
abra
@ -837,7 +837,7 @@ ensure_stack_deployed() {
|
|||||||
for service in $(docker ps -f "name=$STACK_NAME" -q); do
|
for service in $(docker ps -f "name=$STACK_NAME" -q); do
|
||||||
debug "Polling $service for deployment status"
|
debug "Polling $service for deployment status"
|
||||||
|
|
||||||
healthcheck=$(docker inspect --format "{{ json .State }}" "$service" | jq "try(.Health.Status // \"missing\")")
|
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")
|
name=$(docker inspect --format '{{ index .Config.Labels "com.docker.swarm.service.name" }}' "$service")
|
||||||
|
|
||||||
if [[ ${MISSING[*]} =~ ${name} ]] || [[ ${HEALTHY[*]} =~ ${name} ]]; then
|
if [[ ${MISSING[*]} =~ ${name} ]] || [[ ${HEALTHY[*]} =~ ${name} ]]; then
|
||||||
|
@ -161,7 +161,8 @@ function install_requirements {
|
|||||||
|
|
||||||
sudo apt update && sudo apt install -y \
|
sudo apt update && sudo apt install -y \
|
||||||
passwdqc \
|
passwdqc \
|
||||||
pwgen
|
pwgen \
|
||||||
|
git
|
||||||
|
|
||||||
echo "Install Docker (https://docs.docker.com/engine/install/debian/)?"
|
echo "Install Docker (https://docs.docker.com/engine/install/debian/)?"
|
||||||
prompt_confirm
|
prompt_confirm
|
||||||
|
Reference in New Issue
Block a user