docs(devops): refresh Track A handoff status
This commit is contained in:
parent
5cff282961
commit
bb85bf6176
@ -30,24 +30,31 @@ Architecture decision after this handoff:
|
|||||||
|
|
||||||
### 1. DNS is not ready
|
### 1. DNS is not ready
|
||||||
|
|
||||||
From the VM, these records did not resolve at the time of the original session:
|
At the time of the original session, these records did not resolve from the VM:
|
||||||
|
|
||||||
- `api.bytelyst.com`
|
- `api.bytelyst.com`
|
||||||
- `gitea.bytelyst.com`
|
- `gitea.bytelyst.com`
|
||||||
- `admin.bytelyst.com`
|
- `admin.bytelyst.com`
|
||||||
- `tracker.bytelyst.com`
|
- `tracker.bytelyst.com`
|
||||||
|
|
||||||
For the revised architecture, only `api.bytelyst.com` and `gitea.bytelyst.com` must resolve to the VM for Track A. `admin.bytelyst.com` and `tracker.bytelyst.com` should resolve to Vercel instead.
|
For the revised architecture:
|
||||||
|
|
||||||
### 2. Azure CLI is missing
|
- `api.bytelyst.com` and `gitea.bytelyst.com` must resolve to the VM
|
||||||
|
- `admin.bytelyst.com` and `tracker.bytelyst.com` should resolve to Vercel, not the VM
|
||||||
|
|
||||||
`az account show` failed with:
|
Only the VM-hosted records are prerequisites for A1/A2/A4.
|
||||||
|
|
||||||
```text
|
### 2. Azure CLI is installed, but the active subscription context still needs validation
|
||||||
az: command not found
|
|
||||||
```
|
|
||||||
|
|
||||||
That blocks A4 because the NSG cannot be snapshotted or edited from this VM.
|
Azure CLI is now installed and `az account show` succeeds.
|
||||||
|
|
||||||
|
Current observed context:
|
||||||
|
|
||||||
|
- subscription: `Azure subscription 1`
|
||||||
|
- tenant: `eScube`
|
||||||
|
- state: `Disabled`
|
||||||
|
|
||||||
|
This means A4 is no longer blocked by a missing CLI, but it may still be blocked until the correct active subscription is selected and has permission to manage the VM NSG.
|
||||||
|
|
||||||
### 3. Linux build host is still using the wrong Gitea registry hostname
|
### 3. Linux build host is still using the wrong Gitea registry hostname
|
||||||
|
|
||||||
@ -75,7 +82,14 @@ curl -sf https://api.ipify.org && echo
|
|||||||
```
|
```
|
||||||
|
|
||||||
3. Point `admin.bytelyst.com` and `tracker.bytelyst.com` at Vercel, not the VM.
|
3. Point `admin.bytelyst.com` and `tracker.bytelyst.com` at Vercel, not the VM.
|
||||||
4. Install Azure CLI and log in with permissions to manage the VM NSG.
|
4. Verify Azure account context and switch to the correct active subscription if needed:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
az account show -o table
|
||||||
|
az account list -o table
|
||||||
|
az account set --subscription "<active-subscription-name-or-id>"
|
||||||
|
```
|
||||||
|
|
||||||
5. Export a Linux-safe Gitea host before rebuilds, for example:
|
5. Export a Linux-safe Gitea host before rebuilds, for example:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user