Reorganize cdsmcp workspace into docs, templates, and artifacts
Restructure the cdsmcp folder to separate operator guidance, reusable templates, and runtime artifacts into clearer top-level areas. Move the VMware migration guide and run learnings into docs/, move vmw.yaml into templates/, move the existing log into artifacts/logs/, replace the old index file with a README, and split the former monolithic guide into focused documents for VMware MigrateOps workflow, VM lookup and FC/disk assignment, and CMC install reference. Update internal references so the reorganized layout remains coherent without changing the underlying operational guidance.
This commit is contained in:
33
cdsmcp/docs/cmc-install-reference.md
Normal file
33
cdsmcp/docs/cmc-install-reference.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# CMC Install Reference
|
||||
|
||||
This file contains the CMC install, uninstall, and reinstall fallback reference used by the CDS MCP VMware workflow.
|
||||
|
||||
## Default Project Rule
|
||||
- Default project: `Skidamarink`
|
||||
- Default registration code: `BZHKABCODZLIOK6RTAJ4`
|
||||
- Default endpoint: `portal.gcstage.cloud.nonprod.cirrusdata.com:443`
|
||||
- Use a different project code only when the user explicitly requests it in that run.
|
||||
|
||||
## Skidamarink Install (Linux)
|
||||
```bash
|
||||
curl https://get.cirrusdata.cloud/install-cmc | bash -s -- -rgc BZHKABCODZLIOK6RTAJ4 -gce portal.gcstage.cloud.nonprod.cirrusdata.com:443 -pkg-mode PRE_RELEASE
|
||||
```
|
||||
|
||||
## Skidamarink Install (Windows)
|
||||
```powershell
|
||||
iex "& { $(irm https://get.cirrusdata.cloud/install-cmc-win) } -rgc BZHKABCODZLIOK6RTAJ4 -gce portal.gcstage.cloud.nonprod.cirrusdata.com:443 -pkg-mode PRE_RELEASE"
|
||||
```
|
||||
|
||||
## Uninstall (Linux)
|
||||
```bash
|
||||
curl https://get.cirrusdata.cloud/install-cmc | bash -s -- -uninstall
|
||||
```
|
||||
|
||||
## Uninstall (Windows)
|
||||
```powershell
|
||||
iex "& { $(irm https://get.cirrusdata.cloud/install-cmc-win) } -uninstall"
|
||||
```
|
||||
|
||||
## CMC Reinstall Fallback (RHEL 10)
|
||||
- If installer-based reinstall fails due repo metadata/download errors, use cached local `mtdi-daemon` and `galaxy-migrate` RPMs, start services, enforce `galaxy_complete_endpoint`, then manually register.
|
||||
- Do not continue MigrateOps create until the source host is visible as connected in CDC.
|
||||
Reference in New Issue
Block a user