Skip to content

Commit

Permalink
add exposed registry validation path (#816) (#817)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavgaikwad committed May 18, 2022
1 parent fb5df1d commit 5dca4a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/usage/MigClusterConfiguration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ Following table summarizes the _MigrationController_ variables:
| cluster_subdomain | string | No | Cluster's subdomain |
| migration_registry_readiness_timeout | int | No | Readiness timeout (in seconds) for Migration Registry Deployment |
| migration_registry_liveness_timeout | int | No | Liveness timeout (in seconds) for Migration Registry Deployment |
| exposed_registry_validation_path | string | No | Subpath to validate exposed registry in a MigCluster (e.g. /v2) |

> Note that the values are specific to MigCluster resource. Therefore, the variables need to be updated in the MigrationController resource present on the respective cluster you wish to update. The values that are *not required* will be automatically set by the Migration Operator or the Migration Controller.
1 change: 1 addition & 0 deletions docs/usage/MigrationControllerConfigQuickView.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ See full doc [here](./AlternativeCAMTopologies.md#component_configuration)
| cluster_subdomain | string | No | Cluster's subdomain |
| migration_registry_readiness_timeout | int | No | Readiness timeout (in seconds) for Migration Registry Deployment |
| migration_registry_liveness_timeout | int | No | Liveness timeout (in seconds) for Migration Registry Deployment |
| exposed_registry_validation_path | string | No | Subpath to validate exposed registry in a MigCluster (e.g. /v2) |

See full doc [here](./MigClusterConfiguration.md)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@ data:
{% if migration_registry_liveness_timeout is defined %}
REGISTRY_LIVENESS_TIMEOUT: "{{ migration_registry_liveness_timeout }}"
{% endif %}

{% if exposed_registry_validation_path is defined %}
REGISTRY_VALIDATION_SUBPATH: "{{ exposed_registry_validation_path }}"
{% endif %}

0 comments on commit 5dca4a9

Please sign in to comment.