tree: 076ce1c0ecbebeef425ffba0d79de55dd5facc64 [path history] [tgz]
  1. .yamllint.yaml
  2. README.md
  3. config.yaml
  4. files/
  5. hooks/
  6. lib/
  7. metadata.yaml
  8. mod/
  9. src/
  10. tox.ini
installers/charm/ng-ui/README.md

NG-UI Charm

How to deploy

juju deploy . # cs:~charmed-osm/ng-ui --channel edge
juju relate ng-ui nbi-k8s

How to expose the NG-UI through ingress

juju config ng-ui juju-external-hostname=ng.<k8s_worker_ip>.xip.io
juju expose ng-ui

Note: The <k8s_worker_ip> is the IP of the K8s worker node. With microk8s, you can see the IP with microk8s.config. It is usually the IP of your host machine.

How to scale

    juju scale-application ng-ui 3

How to use certificates

Generate your own certificate if you don't have one already:

sudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout ssl_certificate.key -out ssl_certificate.crt
sudo chown $USER:$USER ssl_certificate.key
juju config ng-ui ssl_certificate=`cat ssl_certificate.crt | base64 -w 0`
juju config ng-ui ssl_certificate_key=`cat ssl_certificate.key | base64 -w 0`

Config Examples

juju config ng-ui image=opensourcemano/ng-ui:<tag>
juju config ng-ui port=80
juju config server_name=<name>
juju config client_max_body_size=25M