DevOps Services & Utilities Container Pod Infrastructure as Code (IaC) toolkit.
Infrastructure deployment requires a wide set of user enablement & automation utilities, network services, and Infrastructure as Code resources. These can become difficult & inconsistent to architecht, maintain, and support.
CloudCtl provides a Podman "Point of Origin" Pod to augment infrastructure services with UBI8 containerized, and (IaC) driven deployment dependencies.
- Extensable
- Portable
- Stateful
- Dynamic
- Consistent
- Zero external dependencies (No yum/dnf rpm downloads)
- Airgap Supported (with Koffer collector)
- Behaves the same whether connected or disconnected from the internet
- RedHat 8.0+
- RedHat CoreOS 4.7+
- Konductor User Space Container
- Ansible Runner Service API
- Docker Image Registry
- Nginx File Server
- Haproxy TCP Load Balancer
- CoreDNS
- ISC-DHCP
- Tftpd
Run as User:
root
On RHEL 8+ / CentOS 8+ / Fedora 32+
dnf install -y podman
On Ubuntu 20.04+
apt install -y podman
mkdir -p /root/cloudctl && \
podman run -it --rm --volume /root/cloudctl:/clone:z \
quay.io/cloudctl/git \
https://github.com/CloudCtl/CloudCtl.git && \
cd ~/cloudctl
./init.sh
podman exec -it konductor connect
curl -ks \
--key /root/platform/secrets/cloudctl/certs/ssl/server/cloudctl.pem \
--cert /root/platform/secrets/cloudctl/certs/ssl/server/cloudctl.crt \
https://localhost:5001/api/v1/playbooks -X GET
sample output:
{"status": "OK", "msg": "0 playbook found", "data": {"playbooks": []}}
ssh -p 2222 root@10.88.0.1
sudo podman pod ps
sudo podman ps --all
sample output:
36668681f233 Up 18 hours ago coredns
596dbaa4520b Up 18 hours ago haproxy
44d434359e33 Up 18 hours ago nginx
1efcd0fafb40 Up 18 hours ago registry
3598bab7c7ed Up 18 hours ago runner
11305c527abe Up 18 hours ago konductor
podman pod rm --force cloudctl
podman image prune --all
rm -rf /root/{cloudctl,platform} /tmp/konductor