agola/examples/agolademo/config.yml

67 lines
1.6 KiB
YAML
Raw Normal View History

gateway:
apiExposedURL: "http://172.17.0.1:8000"
webExposedURL: "http://172.17.0.1:8080"
runserviceURL: "http://localhost:4000"
2019-05-07 21:42:42 +00:00
configstoreURL: "http://localhost:4002"
2019-05-08 13:23:13 +00:00
gitserverURL: "http://172.17.0.1:4003"
web:
listenAddress: ":8000"
tokenSigning:
# hmac or rsa (it possible use rsa)
method: hmac
# key to use when signing with hmac
key: supersecretsigningkey
# paths to the private and public keys in pem encoding when using rsa signing
#privateKeyPath: /path/to/privatekey.pem
#publicKeyPath: /path/to/public.pem
adminToken: "admintoken"
scheduler:
runserviceURL: "http://localhost:4000"
notification:
webExposedURL: "http://172.17.0.1:8080"
runserviceURL: "http://localhost:4000"
configstoreURL: "http://localhost:4002"
etcd:
endpoints: "http://localhost:2379"
2019-05-07 21:42:42 +00:00
configstore:
dataDir: /tmp/agola/configstore
etcd:
endpoints: "http://localhost:2379"
objectStorage:
type: posix
path: /tmp/agola/configstore/ost
web:
listenAddress: ":4002"
runservice:
#debug: true
dataDir: /tmp/agola/runservice
2019-05-08 13:23:13 +00:00
etcd:
endpoints: "http://localhost:2379"
objectStorage:
type: posix
path: /tmp/agola/runservice/ost
web:
listenAddress: ":4000"
executor:
dataDir: /tmp/agola/executor
# The directory containing the toolbox compiled for the various supported architectures
toolboxPath: ./bin
runserviceURL: "http://localhost:4000"
web:
listenAddress: ":4001"
2019-04-22 15:54:24 +00:00
activeTasksLimit: 2
driver:
type: docker
2019-05-08 13:23:13 +00:00
gitserver:
dataDir: /tmp/agola/gitserver
githookPath: ./bin/agola-git-hook
gatewayURL: "http://localhost:8000"
web:
listenAddress: ":4003"