flant / loghouse

Ready to use log management solution for Kubernetes storing data in ClickHouse and providing web UI.
Apache License 2.0
924 stars 76 forks source link

Helm chart is not compatible with the current cert-manager stable release #150

Open davojan opened 4 years ago

davojan commented 4 years ago

When trying to install loghouse along with current cert-manager release 0.14.2 this error happens:

helm.go:75: [debug] unable to recognize "": no matches for kind "Certificate" in version "certmanager.k8s.io/v1alpha1"

I believe this is because they renamed api-group to cert-manager.io

serggend commented 4 years ago

for my example i just add

    annotations:
      cert-manager.io/cluster-issuer: letsencrypt

in this part of values

loghouse:
    host: loghouse.domain.com
    path: "/"
    tls_secret_name: loghouse
    annotations:
      cert-manager.io/cluster-issuer: letsencrypt

and it works ( but i already have clusterissuer, all env for letsencrypt and etc... )