- Aptomi will be installed on a local machine and pre-populated with examples.
- The part responsible for application deployment will be disabled. You can explore Aptomi without configuring a k8s cluster, but you won't be able to deploy any apps.
You can run the Aptomi server, pre-populated with examples, in a Docker container:
docker run -it --rm -p 27866:27866 aptomi/aptomi-test-install:xenial sh -c 'curl https://raw.githubusercontent.com/Aptomi/aptomi/master/scripts/aptomi_install.sh | bash /dev/stdin --with-example && aptomi server'
And install the client locally (optional):
curl https://raw.githubusercontent.com/Aptomi/aptomi/master/scripts/aptomi_install.sh | bash /dev/stdin --client-only
Alternatively, you can install Aptomi, pre-populated with examples, on a local machine:
curl https://raw.githubusercontent.com/Aptomi/aptomi/master/scripts/aptomi_install.sh | bash /dev/stdin --with-example && aptomi server
This will install:
- Aptomi binaries in
/usr/local/bin/
- Aptomi server config in
/etc/aptomi/
and use/var/lib/aptomi
as persistent data store - Aptomi client config and examples in
~/.aptomi/
Open the UI at http://localhost:27866/ and log in as 'admin/admin'.
Our examples are already loaded into Aptomi, so you don't need to load them separately.
To delete all Aptomi binaries installed locally as well as Aptomi data, run:
curl https://raw.githubusercontent.com/Aptomi/aptomi/master/scripts/aptomi_uninstall_and_clean.sh | bash