nicholaswilde / helm-charts

My collection of Helm charts.
https://artifacthub.io/packages/search?repo=nicholaswilde
Apache License 2.0
70 stars 32 forks source link

[hedgedoc] s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize #40

Closed dbluxo closed 3 years ago

dbluxo commented 3 years ago

Hi, I just updated the hedgedoc Helm Chart from 0.1.12 to 0.3.0 and I get the following error messages in a loop:

s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize: No such file or directory
s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize: No such file or directory
s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize: No such file or directory
s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize: No such file or directory
s6-applyuidgid: fatal: unable to exec ./node_modules/sequelize-cli/lib/sequelize: No such file or directory

I override the following Helm values in my installation:

env:
  TZ: "Europe/Berlin"
  CMD_URL_ADDPORT: "false"
  CMD_ALLOW_EMAIL_REGISTER: "false"
  CMD_LOGLEVEL: "info"
service:
  annotations:
    external-dns.alpha.kubernetes.io/hostname: hedgedoc-demo.xyz
  port:
    port: 3000
ingress:
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/ssl-redirect: "true"
    external-dns.alpha.kubernetes.io/hostname: hedgedoc-demo.xyz
  enabled: true
  hosts:
    - host: "hedgedoc-demo.xyz"
      paths:
        - path: /
          # Ignored if not kubeVersion >= 1.14-0
          pathType: Prefix
  tls: []
persistence:
  config:
    enabled: true
    emptyDir: false
    mountPath: /config
    storageClass: "ebs-gp2"
    accessMode: ReadWriteOnce
    size: 8Gi
    ## Do not delete the pvc upon helm uninstall
    skipuninstall: false

Any ideas?

dbluxo commented 3 years ago

Some more info:

The Helm Chart version 0.2.3 works.

Also a fresh installation of 0.3.0 version causes the error described above.

nicholaswilde commented 3 years ago

Thanks for the bug report! 🙏🏽 I'll look into it and let you know what I find.

nicholaswilde commented 3 years ago

I haven't looked at the differences LS image versions yet, but have you tried the latest image, 1.8.1-ls18? Chart 0.3.0 uses an older one, I believe.

nicholaswilde commented 3 years ago

I've pushed Chart 0.3.1 that uses 1.8.1-ls18. Let me know if you're still having issues.

nicholaswilde commented 3 years ago

It looks like a new version of the image was just released. 1.8.2-ls18

nicholaswilde commented 3 years ago

I've pushed Chart 0.3.2 that uses 1.8.2-ls18. Let me know if you're still having issues.

dbluxo commented 3 years ago

The problem is fixed, awesome! 🎉 Thanks!