Thomas E Lackey
937b983ec9
All checks were successful
Lint Checks / Run linter (push) Successful in 56s
Publish / Build and publish (push) Successful in 1m24s
Deploy Test / Run deploy test suite (push) Successful in 5m24s
Webapp Test / Run webapp test suite (push) Successful in 4m57s
Smoke Test / Run basic test suite (push) Successful in 4m48s
Update links and references to github.com to git.vdb.to. Also enable the flake8 lint action in gitea. Reviewed-on: #732 Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com> Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
#cloud-config
|
|
|
|
# Used for installing Stack Orchestrator on platforms that support `cloud-init`
|
|
# Tested on Ubuntu
|
|
|
|
package_update: true
|
|
package_upgrade: true
|
|
|
|
groups:
|
|
- docker
|
|
|
|
system_info:
|
|
default_user:
|
|
groups: [ docker ]
|
|
|
|
packages:
|
|
- apt-transport-https
|
|
- ca-certificates
|
|
- curl
|
|
- jq
|
|
- git
|
|
- gnupg
|
|
- lsb-release
|
|
- unattended-upgrades
|
|
|
|
runcmd:
|
|
- mkdir -p /etc/apt/keyrings
|
|
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
|
- echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
- apt-get update
|
|
- apt-get install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
|
- systemctl enable docker
|
|
- systemctl start docker
|
|
- curl -L -o /usr/local/bin/laconic-so https://git.vdb.to/cerc-io/stack-orchestrator/releases/download/latest/laconic-so
|
|
- chmod +x /usr/local/bin/laconic-so
|