- In provider/internal/core/client.go:
- If GET /instanceOperations/{opUid}?fields=cfsParams fails with 500 or JSON unmarshal error,
check whether provided parameters contain unresolved names via hasUnresolvedParams.
- If all parameters are already resolved (UUIDs/numbers/booleans/JSON), proceed to send
parameters via POST /instanceOperationCfsParams without hard-failing.
- If unresolved names remain, fail immediately with original error.
- Bumped DEV provider version to 2.0.2 in TOOLS/config/dev/profile.env, VERSIONS.md, and DEV_STAND/FullPipe/versions.tf.
- Built, signed, and published provider 2.0.2 to DEV registry bucket nubes-terraform-registry.
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
# Версии провайдера по стендам
|
||
|
||
> Обновлять после **каждой** заливки. Это единственный источник правды.
|
||
|
||
| Стенд | Namespace | Версия | Дата заливки |
|
||
|---|---|---|---|
|
||
| PROD | `nubes` | `1.0.0` | 2026-09-03 | (новая нумерация) |
|
||
| DEV | `nubes-dev` | `2.0.2` | 2026-09-21 | (graceful fallback для cfsParams при 500) |
|
||
| TEST | `nubes-test` | `3.0.0` | 2026-09-03 | (новая нумерация) |
|
||
|
||
## Как проверить
|
||
|
||
```bash
|
||
# DEV
|
||
curl -s https://tf-registry.containerk8s.services.ngcloud.ru/v1/providers/nubes-dev/nubes/versions | python3 -m json.tool
|
||
|
||
# TEST
|
||
curl -s https://tf-registry.containerk8s.services.ngcloud.ru/v1/providers/nubes-test/nubes/versions | python3 -m json.tool
|
||
|
||
# PROD
|
||
curl -s https://tf-registry.containerk8s.services.ngcloud.ru/v1/providers/nubes/nubes/versions | python3 -m json.tool
|
||
```
|
||
|
||
## Схема версионирования
|
||
|
||
> ⛔ ЕДИНСТВЕННАЯ СХЕМА (с 2026-09-03). Старые диапазоны (prod=2.*, dev=3.*,
|
||
> test=5.*, а также 0.0.x) — ЛЕГАСИ, НЕ ИСПОЛЬЗОВАТЬ.
|
||
|
||
| Стенд | Диапазон |
|
||
|---|---|
|
||
| PROD | `1.*` |
|
||
| DEV | `2.*` |
|
||
| TEST | `3.*` |
|