Deployment of containers type master-workers fits for multiple regions, minimum settings, access controls and opening ports.
git clone https://github.com/oxmix/container-ship.git
cd container-ship/example && ./start
- open
http://localhost:3080
- Execute on the worker node
curl -sk https://ship.domain.tld/connection | sudo bash -
$parentHostname
is variable hostname parent/internal node, option if needs
curl -kX POST https://ship.domain.tld/deployment --data-binary @- << 'EOF'
space: my-project
name: test-deployment
containers:
- name: test-nginx
from: nginx
hostname: $parentHostname
stop-time: 30
ports:
- 8080:80
EOF
curl -kX POST https://ship.domain.tld/nodes/apply --data-binary @- << 'EOF'
IPv4: 127.0.0.1
name: localhost
deployments:
- my-project.test-deployment
EOF
- All containers will be destroyed and
cargo-deployer
too
curl -kX DELETE https://ship.domain.tld/nodes/apply?name=localhost
- All containers of manifest will be destroyed
curl -kX DELETE https://ship.domain.tld/deployment?name=my-project.test-deployment
- update node
curl -kX POST https://ship.domain.tld/nodes/apply --data-binary @- << 'EOF'
IPv4: 127.0.0.1
name: localhost
deployments:
- my-project.test-nginx
variables:
- key: PASS_SEC
val: 32167
EOF
- auto replace in each manifest deployment if set equal node and variables {}
curl -kX POST https://ship.domain.tld/deployment --data-binary @- << 'EOF'
space: example
name: magick-envs-deployment
containers:
- name: nginx
from: nginx
ports:
- 8081:80
environment:
- PASS={PASS_SEC}
EOF
- To raise docker
registry:2
docker run -d --name docker-registry \
--restart always --log-driver json-file --log-opt max-size=128k \
-p 127.0.0.1:5035:5035 \
-v `pwd`/data:/var/lib/registry \
registry:2
mkdir $(pwd)/assets && \
docker run -d --name container-ship \
-v $(pwd)/assets:/assets \
-p 127.0.0.1:8443:8443 \
-e ENDPOINT=127.0.0.1:8443 \
-e CARGO_FROM=mirror.gcr.io/oxmix/cargo-deployer:latest \
--restart always \
--log-driver json-file \
--log-opt max-size=128k \
mirror.gcr.io/oxmix/container-ship
- golang by matching:
fatal error:
|panic:
- php by matching:
PHP Parse error
|PHP Fatal error
|PHP Warning
|PHP Notice
- node by matching:
Error:
|EvalError:
|RangeError:
|ReferenceError:
|SyntaxError:
|TypeError:
|URIError:
docker run ... \
...
-e NOTIFY_MATCH='fatal error:|panic:|my custom warning' \
-e NOTIFY_TG_TOKEN=... \
-e NOTIFY_TG_CHAT_ID=... \
...
oxmix/container-ship
curl -kX POST https://ship.domain.tld/deployment --data-binary "@test-deployment.yaml"
curl -kX POST https://ship.domain.tld/nodes/apply --data-binary "@localhost.yaml"
- Shows stats by nodes
- Shows own docker registry
- Showing logs realtime from container with support json pretty