Configure repository groups
Tenant-defined repository groups. Configure repository groups that will be available to all users.
This guide will walk you through configuring global repository groups with the on-premise agent
- 2.Gather configuration from your team members and construct a
repository_groups.json
file:{"Default": {"name": "Default","description": null,"repositories": [{"origin": "github.com","path": "Netflix/astyanax","branch": "master",},{"origin": "github.com","path": "Netflix/curator","branch": "master",}]},"Servo": {"name": "Servo","description": "servo clone","repositories": [{"origin": "bitbucket.moderne.ninja:7999","path": "mod/servo","branch": "master",}]}}
OCI Container
Executable JAR
Provide the path to the repository group for your container.
MODERNE_AGENT_REPOSITORY_GROUP_FILE_PATH
- Application id configured in the previous step- Note: You must have the file containing the repository groups config mounted.
Example
docker run \
...
-e MODERNE_AGENT_REPOSITORY_GROUP_FILE_PATH=/app/repository_groups.json \
...
moderne.agent.repositoryGroupFilePath
- Application id configured in the previous step
Example
java -jar moderne-agent-{version}.jar \
...
--moderne.agent.repositoryGroupFilePath=/app/repository_groups.json \
...
Last modified 25d ago