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
I installed as described for persistent option, but when I try to do installation of gogs I see this error
...: open /etc/gogs/conf/app.ini.265302332.tmp: read-only file system
infact if I try to login on docker process on the minishift machine I notice that /etc/gogs/conf is read only when I try to do for instance touch file1.
I don't understand where is the problem I can see in the storage that the gog-data is claimed on a persistentVolume in RWO and the /etc/gogs/conf is mounted on gog-data... so what is the problem here?
The text was updated successfully, but these errors were encountered:
Gogs tries to write the tmp ini file into /etc/gogs/conf but this folder is mounted in a read-only config map. To solve this problem remove the config map (and create a volume claim mount instead).
The drawback with this approach is that you cannot edit the app.ini file directly over config map. Instead you can edit it from a terminal.
I installed as described for persistent option, but when I try to do installation of gogs I see this error
...: open /etc/gogs/conf/app.ini.265302332.tmp: read-only file system
infact if I try to login on docker process on the minishift machine I notice that /etc/gogs/conf is read only when I try to do for instance touch file1.
I don't understand where is the problem I can see in the storage that the gog-data is claimed on a persistentVolume in RWO and the /etc/gogs/conf is mounted on gog-data... so what is the problem here?
The text was updated successfully, but these errors were encountered: