Apply Server Certificates - BlueCat Infrastructure Assurance - 26.1.0

BlueCat LiveAssurance User Guide

ft:locale
en-US
Product name
BlueCat Infrastructure Assurance
Version
26.1.0

There are times when you will need to install or update certificates on your server. Please see the general instructions below to complete this task. Should you require assistance, please send a request to BlueCat Customer Care.

LiveAssurance uses Traefik as the API gateway and ingress. To configure Traefik to use a TLS certificate, use the following procedure:

  1. Upload the TLS certificate and the key in the traefik tls directory /usr/share/indeni-services/traefik/etc/tls.

    For example: /usr/share/indeni-services/traefik/etc/tls/traefik-cert.crt and /usr/share/indeni-services/traefik/etc/tls/traefik-cert.key

    If the traefik tls directory doesn't already exist, create one.

  2. Configure Traefik to use this certificate and key for all domains by default. You can do this by creating a traefik-tls.yaml in the traefik conf directory /usr/share/indeni-services/traefik/etc/conf. If the file doesn't already exist, create one with the following:

    tls:
      options:
        default:
          minVersion: VersionTLS12
      stores:
        default:
          defaultCertificate:
            certFile: /usr/share/indeni-services/traefik/etc/tls/traefik-cert.crt
            keyFile: /usr/share/indeni-services/traefik/etc/tls/traefik-cert.key

Traefik monitors this directory and will pickup the new certificate without needing a restart.