Amin Arria
Amin Arria
Checking if I understand, you mean to use [this](https://github.com/alexellis/arkade/blob/5c46d647d5312c82adec01364bea07e6a6b45e8e/cmd/apps/loki_app.go#L72-L77)? ```go lokiOptions := types.DefaultInstallOptions(). WithNamespace(namespace). WithHelmPath(path.Join(userPath, ".helm")). WithHelmRepo("loki/loki-stack"). WithHelmURL("https://grafana.github.io/loki/charts"). WithOverrides(overrides) ```
I've added the last `--ingress-source` option `secret` for using your own certificates and a couple flags to create the secrets as [explained by Rancher](https://rancher.com/docs/rancher/v2.x/en/installation/options/tls-secrets/) I tested it by creating my...
No idea, on which is used more. Personally I've always used LE
@alexellis added the message about cert-manager and rebased of master
@alexellis rebase done :D
Hi @Shikachuu I'll do the rebase later this weekend
Hey @alexellis yeah sorry don't have the time for it, I'll close it
@mcesaro try adding `_build/default/lib` to your `include_dirs` config
@robertoaloi This reproduces the error for me ```erlang -module(unused). -export[hello/1]. hello() -> Wow = 8, "Hello World". ``` I'm using latest `HEAD` and VS Code From what I can tell...
Re-exporting would be a sort of quick fix, but I don't know if its considered a good or bad practice. I would be inclined to go against it. Ideally I...