-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some documentation about configuring the registry UI (#946)
* Added some documentation about configuring the registry UI * renamed user interface to web console * address feedback
- Loading branch information
1 parent
4c8bd00
commit e8409ca
Showing
4 changed files
with
61 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
docs/modules/ROOT/partials/getting-started/proc-configuring-registry-ui.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
[id="configuring-registry-ui"] | ||
= Configuring {registry} web console | ||
|
||
You can configure the {registry} web console in a number of ways, either to customize its behavior or to properly | ||
configure it for your deployment environment. | ||
|
||
== Configuring {registry} web console for deployment environment | ||
|
||
When a user navigates their browser to the {registry} web console, some initial configuration settings are loaded. | ||
Two important configuration properties are: | ||
|
||
* URL of the back-end API | ||
* URL of the front-end web console | ||
|
||
Typically {registry} will automatically detect and generate these settings, but there are some deployment environments | ||
where this automatic detection can fail. When this happens, you can configure the following environment variables to | ||
explicitly set them: | ||
|
||
* *_REGISTRY_UI_CONFIG_APIURL_* : set to override the URL to the back-end API (example https://registry.my-domain.com/api) | ||
* *_REGISTRY_UI_CONFIG_UIURL_* : set to override the URL to the front-end web console (example https://registry.my-domain.com/ui) | ||
|
||
== Configuring {registry} console for read-only mode | ||
|
||
An optional feature that can be enabled in {registry} is the ability to put the web console into "Read Only" | ||
mode. This mode disables all of the features in the web console that would allow a user to make changes to | ||
registered artifacts. This includes (but is not limited to): | ||
|
||
* Creating an artifact | ||
* Uploading a new version of an artifact | ||
* Updating an artifact's metadata | ||
* Deleting an artifact | ||
|
||
To put the web console into read only mode, set the following environment variable: | ||
|
||
* *_REGISTRY_UI_FEATURES_READONLY_* : set to `true` to enable "Read Only" mode (default `false`) |