Skip to content

Commit

Permalink
examples: update example configs and manifests
Browse files Browse the repository at this point in the history
Signed-off-by: Deepesh Pathak <[email protected]>
  • Loading branch information
fristonio committed Jun 14, 2020
1 parent c28f75d commit de336e3
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ You can start with setting up Xene on your system and try solving a few bugs lis
## Documentation

- [API Docs](https://xene-api-docs.netlify.app/apidocs.html)
- [Roadmap](/ROADMAP)
- [Roadmap](/ROADMAP.md)
- [Xene Documentation](https://xene-api-docs.netlify.app/)
- [Go Doc](https://pkg.go.dev/github.com/fristonio/xene)
- [Getting Started](/docs/GettingStarted.md)
Expand Down
1 change: 1 addition & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@

- [ ] Secret embedding in workflow specification.
- [ ] Executor pool for running pipeline executors.
- [ ] Introduce logging plugins to agents, like save log to S3 lake.
11 changes: 9 additions & 2 deletions _examples/sample.agent.config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
agent:
name: default.agent.xene
host: "127.0.0.1"
apiServer: "http://localhost:6060"
apiAuthToken: xxxxxxxxxxx
apiAuthToken: "xxx"
address: "http://127.0.0.1:6061"
insecure: true
insecure: false
serverName: agent.xene.io
jwtSecret: xxxxxxxxxxx
keyFile: ./contrib/certs/server.gen/server-key.pem
certFile: ./contrib/certs/server.gen/server.pem
rootCACert: ./contrib/certs/ca.gen/ca.pem
clientKeyFile: ./contrib/certs/client.gen/client-key.pem
clientCertFile: ./contrib/certs/client.gen/client.pem
10 changes: 6 additions & 4 deletions _examples/sample.apiserver.config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
apiserver:
host: "127.0.0.1"
verboseLogs: true
jwtSecret: xxxxxxxx
jwtSecret: "xxxxx"
allowedDomains:
- "ec.iitr.ac.in"
oauth:
google:
name: google
clientID: xxxxxx
clientSecret: xxxxxxx
redirectURL: "http://localhost:6060/oauth/google/redirect"
clientID: "xxxx.apps.googleusercontent.com"
clientSecret: "xxxx"
redirectURL: "http://localhost:3000/oauth/callback"
scopes:
- profile
- email
2 changes: 2 additions & 0 deletions _examples/sample.xenectl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
apiServerAddr: 'http://127.0.0.1:6060'
authToken: "xxxxxxx"
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Xene is built with Golang with a focus on performance, resiliency, and simplicit
## Documentation

- [API Docs](https://xene-api-docs.netlify.app/apidocs.html)
- [Roadmap](/ROADMAP)
- [Roadmap](/ROADMAP.md)
- [Xene Documentation](https://xene-api-docs.netlify.app/)
- [Go Doc](https://pkg.go.dev/github.com/fristonio/xene)
- [Getting Started](/docs/GettingStarted.md)
Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ site_name: Xene

nav:
- Home: README.md
- CmdRef: cmdref/xene.md
- xenectl: cmdref/xenectl/xenectl.md
- Design: design/README.md
- Architecture: design/README.md
- APIDocs: /apidocs.html
- GoDoc: http://pkg.go.dev/github.com/fristonio/xene
- xene: cmdref/xene.md
- xenectl: cmdref/xenectl/xenectl.md

theme: bootstrap4

0 comments on commit de336e3

Please sign in to comment.