typokign / matrix-chart

Helm chart for deploying a Matrix homeserver stack
MIT License
88 stars 47 forks source link

Fix launch of matrix-bridge-irc. #47

Open damomurf opened 4 years ago

damomurf commented 4 years ago

This resolves the issue I experienced in https://github.com/dacruz21/matrix-chart/issues/44. The latest versions of the matrixdotorg/matrix-appservice-irc container image launches the node.js process with incompatible defaults as below. This PR will allow the chart to work out of the box with the default values.:

Container defaults:

exec node app.js -c /data/config.yaml -p 9995 -f /data/appservice-registration-irc.yaml -u http://localhost:9995

This PR changes the execution to:

          command: "node"
          args: [ "app.js", "-c", "/data/config.yaml", "-f", "/data/appservice-registration-irc.yaml" ]