mirror of
https://github.com/jlengrand/moderne-docs.git
synced 2026-03-10 08:31:21 +00:00
Getting started docs converted How-to guides References Begin CLI docs Add cli how to guides Moderne IDE docs Add release docs Update office hours Add DX and workshops Add admin doc getting started Add agent config docs Add tables for agent config Start reporting + configure mermaid Finish platform admin docs Finish doc copying + remove gitbook stuff Fix broken links Get stuff up to date Attempt to fix site
3.5 KiB
3.5 KiB
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
Configure the agent with the Organizations service
In order for Moderne to obtain information about your organizational structure, you will need to configure the Moderne agent to point to your Organizations service. This guide will explain how to do that.
Variables:
| Variable Name | Required | Default | Description |
|---|---|---|---|
MODERNE_AGENT_ORGANIZATION_URL |
true |
The URL of your GraphQL service that provides organization information. | |
MODERNE_AGENT_ORGANIZATION_UPDATE_INTERVAL_SECONDS |
false |
600 |
Specifies how often to request your organization information. |
MODERNE_AGENT_ORGANIZATION_SKIPSSL |
false |
false |
Specifies whether or not to skip SSL validation for HTTP connections to this Organization service instance. This must be set to true if you use a self-signed SSL/TLS certificate. |
Example:
docker run \
# ... Existing variables
-e MODERNE_AGENT_ORGANIZATION_URL=http://localhost:8091 \
-e MODERNE_AGENT_ORGANIZATION_UPDATE_INTERVAL_SECONDS=600 \
# ... Additional variables
Arguments:
| Argument Name | Required | Default | Description |
|---|---|---|---|
--moderne.agent.organization.url |
true |
The URL of your GraphQL service that provides organization information. | |
--moderne.agent.organization.updateIntervalSeconds |
false |
600 |
Specifies how often to request your organization information. |
--moderne.agent.organization.skipSsl |
false |
false |
Specifies whether or not to skip SSL validation for HTTP connections to this Organization service instance. This must be set to true if you use a self-signed SSL/TLS certificate. |
Example:
java -jar moderne-agent-{version}.jar \
# ... Existing arguments
--moderne.agent.organization.url=http://localhost:8091 \
--moderne.agent.organization.updateIntervalSeconds=600 \
# ... Additional arguments