Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ You can deploy build system in a really fast way. Let's get started.
---
github_client: <OAuth client id>
github_client_secret: <OAuth token>
immudb_username: <immudb username to be used>
immudb_password: <immudb password to be used>
immudb_database: <immudb database name to be used>
immudb_address: <url in format `host:port` of immudb instance, default port is 3322>
immudb_public_key_file: <path of the public key to use>

frontend_baseurl: http://<Preferred hostname or IP address>:8080
```
if you want deploy build system on remote machine add the following parameters.
Expand Down Expand Up @@ -140,6 +136,13 @@ albs_jwt_token: <If you have generated JWT token manually set it here>
albs_jwt_secret: <Secret of yours generated token>
alts_jwt_secret: <Secret of yours generated token>

# if you want to notarize/authorize build artifacts, you need to provide
# the following immudb configuration
immudb_username: <immudb username to be used>
immudb_password: <immudb password to be used>
immudb_database: <immudb database name to be used>
immudb_address: <url in format `host:port` of immudb instance, default port is 3322>
immudb_public_key_file: <path of the public key to use>

```
Of course, you can override the service's default users, passwords and rabbitmq params.
Expand Down
8 changes: 5 additions & 3 deletions inventories/one_vm/group_vars/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ sign_server_api_url: "http://nginx/sign-file/"
sign_server_username: "test@test.ru"
sign_server_password: "test"


alts_jwt_token: ""
albs_jwt_token: ""
albs_jwt_secret: "secret"
Expand All @@ -43,8 +42,11 @@ pulp_user: "admin"
pulp_database_url: "postgresql+psycopg2://postgres:{{ pulp_password }}@pulp/pulp"
async_pulp_database_url: "postgresql+asyncpg://postgres:{{ pulp_password }}@pulp/pulp"

# cas_api_key: ""
# cas_signer_id: ""
immudb_username: ""
immudb_password: ""
immudb_database: ""
immudb_address: ""
immudb_public_key_file: ""

frontend_baseurl: "http://localhost:8080"
container_name_prefix: "albs"
Expand Down
Loading