This guide provides a quick overview of how to get started with the AMRC Connectivity Stack (ACS). For a more detailed installation guide, see the Installation documentation.
- A Kubernetes cluster
kubectlinstalled and configured to access your clusterhelminstalled- DNS configured for your domain
- Add the ACS Helm repository
helm repo add amrc-connectivity-stack https://amrc-factoryplus.github.io/amrc-connectivity-stack/build
helm repo update- Create a values.yaml file
Create a file named values.yaml with the following content (replace with your own values):
acs:
baseUrl: factoryplus.myorganisation.com
organisation: MYORGANISATION
letsEncrypt:
email: factoryplus@myorganisation.co.uk
identity:
realm: FACTORYPLUS.MYORGANISATION.COM- Create the namespace
kubectl create namespace factory-plus- Install ACS
helm install acs amrc-connectivity-stack/amrc-connectivity-stack --version ^3.0.0 -f values.yaml --namespace factory-plus --wait --timeout 30m- Get the admin password
echo $(kubectl get secret krb5-passwords -o jsonpath="{.data.admin}" -n factory-plus | base64 --decode)- Log into the Manager UI using the admin credentials
- Create an Edge Cluster and follow the bootstrap instructions
- Create a Node and Device in the Manager UI
- Connect to the MQTT broker and start monitoring data
- Use Grafana to create dashboards for your data
For more detailed information, see the Installation Guide and What's New in V3 documentation.