Commit 764aa1c
authored
docs+infra(dev-container): recommend dev container path; make Dockerf… (#49)
* docs+infra(dev-container): recommend dev container path; make Dockerfile.dev multi-arch
The dev container is the supported install path because GCO pins many
exact Python package versions and host installs frequently fail with
dependency-resolver errors. Update the docs to reflect that, and fix
two things that were undermining the recommendation.
Documentation
- README, QUICKSTART, CONTRIBUTING now lead with `docker build -f
Dockerfile.dev` and demote pip/pipx to a collapsed "advanced" path
with explicit guidance on the resolver-conflict failure mode.
- New "Installation Issues" section in docs/TROUBLESHOOTING.md walks
through `ResolutionImpossible` errors and points at the dev container
as the canonical fix.
- mcp/README.md and QUICKSTART.md now use absolute-path-in-args for
the MCP config so the same snippet works in Cursor, Kiro, Claude
Desktop, etc. without relying on client-specific `cwd` handling.
Dockerfile.dev — multi-arch
- Add ARG TARGETARCH and derive a GNU arch tag (x86_64 / aarch64) for
the AWS CLI v2 and Docker static-client tarballs; pass TARGETARCH
straight through for the kubectl URL.
- Builds natively on linux/amd64 (CI on x86_64 GitHub runners, Intel
Macs, Linux x86_64 hosts) and linux/arm64 (Apple Silicon, Graviton,
arm64 Linux). Native arm64 build on Apple Silicon drops from ~7-8
min (qemu emulation under Finch/Colima) to ~2 min — matching the
build-time claim in the docs.
- All baked-in deps verified to install from wheels on arm64 (no sdist
fallback for any pinned package).
CI — integration:docker:dev-container
- New "Verify amd64 image actually contains amd64 binaries" step:
asserts uname -m and AWS CLI v2 banner agree on x86_64.
- New QEMU + buildx setup followed by linux/arm64 cross-build, then
triple-layer arch verification: uname -m == aarch64, AWS CLI banner
contains aarch64, gco --version loads, and an inline Python ELF
e_machine inspection of kubectl + the Docker static client to catch
single-binary regressions that would slip past a run-time check
under QEMU translation.
- Bumped job timeout 25→40 min to absorb the cross-build (~10× slower
under qemu).
* updates
* Update integration-tests.yml1 parent 46e9ad9 commit 764aa1c
7 files changed
Lines changed: 434 additions & 99 deletions
File tree
- .github/workflows
- docs
- mcp
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
360 | 360 | | |
361 | 361 | | |
362 | 362 | | |
363 | | - | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
364 | 368 | | |
365 | 369 | | |
366 | 370 | | |
| 371 | + | |
| 372 | + | |
| 373 | + | |
367 | 374 | | |
368 | 375 | | |
369 | 376 | | |
| |||
383 | 390 | | |
384 | 391 | | |
385 | 392 | | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + | |
| 398 | + | |
| 399 | + | |
| 400 | + | |
| 401 | + | |
| 402 | + | |
| 403 | + | |
| 404 | + | |
| 405 | + | |
386 | 406 | | |
387 | 407 | | |
388 | 408 | | |
| |||
421 | 441 | | |
422 | 442 | | |
423 | 443 | | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
| 455 | + | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
| 462 | + | |
| 463 | + | |
| 464 | + | |
| 465 | + | |
| 466 | + | |
| 467 | + | |
| 468 | + | |
| 469 | + | |
| 470 | + | |
| 471 | + | |
| 472 | + | |
| 473 | + | |
| 474 | + | |
| 475 | + | |
| 476 | + | |
| 477 | + | |
| 478 | + | |
| 479 | + | |
| 480 | + | |
| 481 | + | |
| 482 | + | |
| 483 | + | |
| 484 | + | |
| 485 | + | |
| 486 | + | |
| 487 | + | |
| 488 | + | |
| 489 | + | |
| 490 | + | |
| 491 | + | |
| 492 | + | |
| 493 | + | |
| 494 | + | |
| 495 | + | |
| 496 | + | |
| 497 | + | |
| 498 | + | |
| 499 | + | |
| 500 | + | |
| 501 | + | |
| 502 | + | |
| 503 | + | |
| 504 | + | |
| 505 | + | |
| 506 | + | |
| 507 | + | |
| 508 | + | |
| 509 | + | |
| 510 | + | |
| 511 | + | |
| 512 | + | |
| 513 | + | |
| 514 | + | |
| 515 | + | |
| 516 | + | |
| 517 | + | |
| 518 | + | |
| 519 | + | |
| 520 | + | |
| 521 | + | |
| 522 | + | |
424 | 523 | | |
425 | 524 | | |
426 | 525 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
30 | 31 | | |
31 | 32 | | |
32 | 33 | | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
37 | | - | |
38 | | - | |
| 34 | + | |
39 | 35 | | |
40 | | - | |
| 36 | + | |
| 37 | + | |
41 | 38 | | |
42 | | - | |
| 39 | + | |
43 | 40 | | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
| 41 | + | |
48 | 42 | | |
49 | | - | |
50 | | - | |
51 | | - | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
52 | 47 | | |
53 | | - | |
54 | | - | |
55 | | - | |
| 48 | + | |
56 | 49 | | |
57 | 50 | | |
58 | 51 | | |
59 | | - | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
60 | 55 | | |
61 | 56 | | |
62 | | - | |
| 57 | + | |
63 | 58 | | |
64 | 59 | | |
65 | 60 | | |
| |||
123 | 118 | | |
124 | 119 | | |
125 | 120 | | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
126 | 141 | | |
127 | 142 | | |
128 | 143 | | |
| |||
148 | 163 | | |
149 | 164 | | |
150 | 165 | | |
151 | | - | |
| 166 | + | |
152 | 167 | | |
153 | 168 | | |
154 | 169 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
4 | 10 | | |
5 | 11 | | |
6 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
7 | 16 | | |
8 | 17 | | |
9 | 18 | | |
| |||
57 | 66 | | |
58 | 67 | | |
59 | 68 | | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
60 | 84 | | |
61 | 85 | | |
62 | 86 | | |
| |||
89 | 113 | | |
90 | 114 | | |
91 | 115 | | |
| 116 | + | |
| 117 | + | |
92 | 118 | | |
93 | | - | |
| 119 | + | |
| 120 | + | |
94 | 121 | | |
95 | 122 | | |
96 | 123 | | |
97 | 124 | | |
98 | 125 | | |
99 | 126 | | |
100 | 127 | | |
| 128 | + | |
101 | 129 | | |
102 | | - | |
| 130 | + | |
| 131 | + | |
103 | 132 | | |
104 | 133 | | |
105 | 134 | | |
| |||
111 | 140 | | |
112 | 141 | | |
113 | 142 | | |
114 | | - | |
115 | | - | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
116 | 148 | | |
117 | | - | |
| 149 | + | |
| 150 | + | |
118 | 151 | | |
119 | 152 | | |
120 | 153 | | |
121 | | - | |
| 154 | + | |
122 | 155 | | |
123 | 156 | | |
124 | 157 | | |
| |||
0 commit comments