WikiJS locales not loading #7230
-
Hello everyone. The problemI'm hosting a wikijs instance on a Kubernetes cluster with a proxy upfront. ...:27:53.003Z [MASTER] info: Syncing locales with Graph endpoint...
...:27:53.004Z [MASTER] info: Fetching latest updates from Graph endpoint...
...:27:53.092Z [MASTER] info: Purging orphaned upload files: [ COMPLETED ]
Loading configuration from /wiki/config.yml... OK
...:27:53.241Z [JOB] info: Rebuilding page tree...
...:27:53.819Z [JOB] info: Using database driver pg for postgres [ OK ]
...:27:54.101Z [JOB] info: Rebuilding page tree: [ COMPLETED ]
...:28:03.083Z [MASTER] error: Syncing locales with Graph endpoint: [ FAILED ]
...:28:03.083Z [MASTER] error: fetch failed
...:28:03.084Z [MASTER] error: Fetching latest updates from Graph endpoint: [ FAILED ]
...:28:03.084Z [MASTER] error: fetch failed What I triedProxyThe proxy is set into my cluster and my VMs with http_proxy, https_proxy, HTTP_PROXY and HTTPS_PROXY.
Sideloading
What I didn't try
ConclusionsSo I can't see where the problem could be and why I can't even load those locales using the simplest copy and paste method? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
config.yml needs to contain spec:
template:
spec:
volumes:
- name: wiki-conf
configMap:
name: wiki-conf
containers:
- name: wiki
volumeMounts:
- name: wiki-conf
mountPath: /wiki/config.yml
subPath: config.yml |
Beta Was this translation helpful? Give feedback.
config.yml needs to contain
offline: true
for sideload to work, i suggest creating a configmap with your custom config and mounting it in the deployment. After that your sideload approach should work fine!