For the complete documentation index, see llms.txt. This page is also available as Markdown.

Helm

HQ Changelog

Added support for certificate / signature verification

In case SAML IdP requires certificate verification, same can be now provided.

values.yaml
lensesHq:
  auth:
    saml:
      authnRequestSignature:
        enabled: false
        authnRequestSigningCert:
          referenceFromSecret: true
          secretName: hq-agent-test-authority
          secretKeyName: hq-tls-test.crt.pem
        authnRequestSigningKey:
          secret:
            name: saml-test
            key: privatekey.key
values.yaml
lensesHq:
  auth:
    saml:
      authnRequestSignature:
        enabled: false
        authnRequestSigningCert:
          stringData: |
            -----BEGIN CERTIFICATE-----
            ....
            -----END CERTIFICATE-----
        authnRequestSigningKey:
          secret:
            name: saml-test
            key: privatekey.key

Small bugfixes

  • HQ on AutnRequest does not send self-signed certificate to avoid validation issues

Last updated

Was this helpful?