This guide requires an Anka Enterprise (or higher) license.
Enabling root token authentication is a simple process. The root user has what we call “superuser” (full) access to the controller and various features.
We recommend disjoining your nodes before performing these steps
Edit /usr/local/bin/anka-controllerd
and append --enable-auth --root-token $ROOT_TOKEN
to the end of the $CONTROLLER_BIN line.
Edit docker-compose.yml
and under the anka-controller
service uncomment ENABLE_AUTH and ROOT_TOKEN, then modify ROOT_TOKEN with the token you want:
The root token should be at least 10 characters long
. . .
anka-controller:
build:
context: .
dockerfile: anka-controller.docker
ports:
- "80:80"
volumes:
# Path to ssl certificates directory
- /home/ubuntu:/mnt/cert
depends_on:
- etcd
# - beanstalk
restart: always
environment:
ENABLE_AUTH: --enable-auth
ROOT_TOKEN: --root-token 0987654321
. . .
If everything is configured correctly, you can visit your Controller Dashboard and a login box should appear. Enter the token you specified and ensure that it logs you in.
If you're using root token auth for your Controller UI without certificate authentication, Nodes will no longer be able to connect to port 80 when running ankacluster join
. You'll need to setup an interface for them to communicate.
Edit /usr/local/bin/anka-controllerd
and append --queue-addr ":8100"
to the end of the $CONTROLLER_BIN line.
. . .
anka-controller:
build:
context: .
dockerfile: anka-controller.docker
ports:
- "80:80"
- "8100:8100"
volumes:
# Path to ssl certificates directory
- /home/ubuntu:/mnt/cert
depends_on:
- etcd
# - beanstalk
restart: always
environment:
ENABLE_AUTH: --enable-auth
ROOT_TOKEN: --root-token 0987654321
ANKA_QUEUE_ADDR: ":8100"
. . .
You must have at least one node with a Enterprise or higher license joined to the Controller for these features to work.
Then, join your Nodes and skip tests:
❯ sudo ankacluster join --skip-tests http://anka.controller:8100
Tests skipped
Cluster join success
You can also setup certificate authentication/authorization for the queue interface independent of the Controller.
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.