diff --git a/administrator-documentation/moderne-dx/how-to-guides/README.md b/administrator-documentation/moderne-dx/how-to-guides/README.md index 6ac7a4b..971530e 100644 --- a/administrator-documentation/moderne-dx/how-to-guides/README.md +++ b/administrator-documentation/moderne-dx/how-to-guides/README.md @@ -5,6 +5,7 @@ * [Configure Moderne DX with Maven repository access](configure-dx-with-maven-repository-access.md) * [Configure Moderne DX with Artifactory access: LSTs](configure-dx-with-artifactory-access.md) * [Configure Moderne DX with Artifactory access: recipes](configure-dx-with-artifactory-recipes.md) +* [Configure on-prem source code management (SCM) with Moderne DX](configure-dx-with-on-prem-scm.md) * [Configure Organizations with Moderne DX](configure-dx-organizations.md) * [Deploying recipes artifacts in Moderne DX](deploying-recipe-artifacts-in-moderne-dx.md) * [Configure Moderne DX with strict recipe sources](configure-dx-with-strict-recipe-sources.md) diff --git a/administrator-documentation/moderne-dx/how-to-guides/configure-dx-with-on-prem-scm.md b/administrator-documentation/moderne-dx/how-to-guides/configure-dx-with-on-prem-scm.md new file mode 100644 index 0000000..161b9dd --- /dev/null +++ b/administrator-documentation/moderne-dx/how-to-guides/configure-dx-with-on-prem-scm.md @@ -0,0 +1,52 @@ +# Configure on-prem source code management (SCM) with Moderne DX + +In order for Moderne DX to correctly map repository clone URLs to the right origin and path we need to know the base URL(s) for your SCM server. With SaaS SCM services like GitHub, GitLab, Bitbucket (cloud) and AzureDevOps these are well known URLs, to use these no extra configuration is required. +However, for any on-prem SCM servers we do need to configure the type, base URL and any alternate URLs that are used to access the server. + +## Configuring the Moderne DX service + +The following table contains all of the variables/arguments you need to add to your Moderne DX service run command in order for it to correctly map and match the origins from different clone URLs. Please note that these variables/arguments must be combined with ones found in other steps in the [Configuring the Moderne DX service guide](dx-configuration.md). + +You can configure multiple SCM servers by including multiple entries, each with a different `{index}`. + +{% tabs %} +{% tab title="OCI Container" %} +**Variables:** + +* `MODERNE_DX_SCM_{index}_BASEURL` – _The primary URL of your SCM server. This URL will be used as the origin._ +* `MODERNE_DX_SCM_{index}_TYPE` – _Specifies the type of the SCM server (case insensitive). Choose between: `GitHub, GitLab, Bitbucket, BitbucketCloud, AzureDevOps`._ +* `MODERNE_DX_SCM_{index}_ALTERNATEURLS_{alternate_url_index}` – _One or more alternate URLs (each with a different `{alternate_url_index}`) which point to the same server. Use this to specify all the protocol and port combinations that can be used to reach the same server. _ + +**Example:** + +```shell +docker run \ +# ... Existing variables +-e MODERNE_DX_SCM_0_BASEURL=https://bitbucket.example.com/stash \ +-e MODERNE_DX_SCM_0_TYPE=Bitbucket \ +-e MODERNE_DX_SCM_0_ALTERNATEURLS_0=ssh://bitbucket.example.com:7999 \ +-e MODERNE_DX_SCM_0_ALTERNATEURLS_1=http://bitbucket.example.com:8080/stash \ +# ... Additional variables +``` +{% endtab %} + +{% tab title="Executable JAR" %} +**Arguments:** + +* `--moderne.dx.scm[{index}].baseUrl` – _The primary URL of your SCM server. This URL will be used as the origin._ +* `--moderne.dx.scm[{index}].type` – _Specifies the type of the SCM server (case insensitive). Choose between: `GitHub, GitLab, Bitbucket, BitbucketCloud, AzureDevOps`._ +* `--moderne.dx.scm[{index}].alternateUrls[{alternate_url_index}]` – _One or more alternate URLs (each with a different `{alternate_url_index}`) which point to the same server. Use this to specify all the protocol and port combinations that can be used to reach the same server. _ +* +**Example:** + +```shell +java -jar moderne-dx-{version}.jar \ +# ... Existing arguments +--moderne.dx.scm[0].baseUrl=https://bitbucket.example.com/stash \ +--moderne.dx.scm[0].type=Bitbucket \ +--moderne.dx.scm[0].alternateUrls[0]=ssh://bitbucket.example.com:7999 \ +--moderne.dx.scm[0].alternateUrls[1]=http://bitbucket.example.com:8080/stash \ +# ... Additional arguments +``` +{% endtab %} +{% endtabs %} diff --git a/user-documentation/moderne-cli/how-to-guides/README.md b/user-documentation/moderne-cli/how-to-guides/README.md index d578bb3..0607d41 100644 --- a/user-documentation/moderne-cli/how-to-guides/README.md +++ b/user-documentation/moderne-cli/how-to-guides/README.md @@ -5,6 +5,7 @@ * [How to install and configure the CLI in an air-gapped environment](air-gapped-cli-install.md) * [How to execute user-supplied commands on a list of repositories](execute-user-supplied-commands.md) * [How to clone and synchronize organizations](clone-and-sync.md) +* [On prem source code management (SCM) server configuration](on-prem-scm-config.md) * [Configuring build steps](build-steps.md) * [Configuring build partitions](build-partitions.md) * [Bazel support](bazel-support.md) diff --git a/user-documentation/moderne-cli/how-to-guides/on-prem-scm-config.md b/user-documentation/moderne-cli/how-to-guides/on-prem-scm-config.md new file mode 100644 index 0000000..83303e8 --- /dev/null +++ b/user-documentation/moderne-cli/how-to-guides/on-prem-scm-config.md @@ -0,0 +1,20 @@ +# On prem source code management (SCM) server configuration + +In order for Moderne DX to correctly map repository clone URLs to the right origin and path we need to know the base URL(s) for your SCM server. With SaaS SCM services like GitHub, GitLab, Bitbucket (cloud) and AzureDevOps these are well known URLs, to use these no extra configuration is required. +However, for any on-prem SCM servers we do need to configure the type, base URL and any alternate URLs that are used to access the server. + +## Configure your on prem SCM servers + +You can use the following command to configure a new SCM server: + +```shell +mod config scm add Bitbucket https://bitbucket.example.com/stash --alternate-url ssh://bitbucket.example.com:7999 --alternate-url http://bitbucket.example.com:8080/stash +``` + +If a server with this type and base URL already exists, it will be updated with the supplied alternate URLs. + +To remove a configuration you can use: + +```shell +mod config scm remove Bitbucket https://bitbucket.example.com/stash +``` \ No newline at end of file