Deploy Charmed Magma Orchestrator¶
Requirements¶
The Orchestrator must be installed on a Kubernetes cluster with the following specifications:
Kubernetes: A cluster with a total of a minimum of 6 vCPUs and 16 GB of RAM.
Juju 2.9: A Juju controller with access to the Kubernetes cluster
Note
If the Juju controller is running on your Kubernetes cluster, it should use a LoadBalancer service type.
Deploy the magma-orc8r bundle¶
Create an overlay.yaml
file that contains the following content:
applications:
fluentd:
options:
domain: <your domain name>
elasticsearch-url: <your elasticsearch https url>
orc8r-certifier:
options:
domain: <your domain name>
orc8r-eventd:
options:
elasticsearch-url: <your elasticsearch http url>
orc8r-nginx:
options:
domain: <your domain name>
tls-certificates-operator:
options:
generate-self-signed-certificates: true
ca-common-name: rootca.<your domain name>
Warning
This configuration is unsecure because it uses self-signed certificates.
Note
Elasticsearch is not part of the magma-orc8r bundle and needs to be deployed separately. For details regarding Elasticsearch integration please visit Integrate Charmed Magma Orchestrator to Elasticsearch
Deploy Orchestrator:
juju deploy magma-orc8r --overlay overlay.yaml --trust
The deployment is completed when all services are in the Active-Idle
state.
Setup DNS¶
Retrieve the services that need to be exposed:
juju run-action orc8r-orchestrator/leader get-load-balancer-services --wait
In your domain registrar, create DNS records for the following Kubernetes services:
Address |
Hostname |
---|---|
|
|
|
|
|
|
|
|
|
|
Verify the deployment¶
Get the host organization’s username and password:
juju run-action nms-magmalte/leader get-host-admin-credentials --wait
Confirm successful deployment by visiting https://host.nms.<your domain>
and logging in with the admin-username
and admin-password
outputted here.