You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In helm chart, since configmap is created by default, because .Values.configuration is specified[*], using AKHQ_CONFIGURATION in extraEnv will result in following error:
/usr/local/bin/docker-entrypoint.sh: 6: cannot create /app/application.yml: Read-only file system
It's because docker-entrypoint.sh writes over to /app/application.yml (and configmap is read-only)
Either enforce not mixing up the configmap with AKHQ_CONFIGURATIONextraEnv or mount configmap to another location and merge it at final destination.
The text was updated successfully, but these errors were encountered:
In helm chart, since configmap is created by default, because
.Values.configuration
is specified[*], usingAKHQ_CONFIGURATION
inextraEnv
will result in following error:It's because docker-entrypoint.sh writes over to
/app/application.yml
(and configmap is read-only)Either enforce not mixing up the configmap with
AKHQ_CONFIGURATION
extraEnv
or mount configmap to another location and merge it at final destination.The text was updated successfully, but these errors were encountered: