25 lines
763 B
YAML
25 lines
763 B
YAML
|
apiVersion: v1
|
||
|
data:
|
||
|
cloudtube.config.js: |
|
||
|
module.exports = {
|
||
|
/*
|
||
|
Copy this file to `config.js`, and add options here.
|
||
|
They'll override the options from `utils/constants.js`.
|
||
|
For example, the next block changes the default instance.
|
||
|
*/
|
||
|
user_settings: {
|
||
|
instance: {
|
||
|
default: "http://newleaf.martyn.berlin"
|
||
|
}
|
||
|
},
|
||
|
/*
|
||
|
If cloudtube and Newleaf is not in same docker-network, you need to also set local_instance_origin.
|
||
|
*/
|
||
|
server_setup: {
|
||
|
local_instance_origin: "http://newleaf.cloudtube.svc.cluster.local:3000"
|
||
|
}
|
||
|
}
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: cloudtube
|