Skip to content

Commit 7314560

Browse files
authored
Merge pull request #8 from Aiven-Open/release_dev_tier
use dev tier plan [EC-963]
2 parents 23c7996 + d443f8e commit 7314560

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

skills/aiven-kafka-setup-avn/SERVICE_CREATION_AVN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ skill's automated setup.
4343

4444
### 2.2 Default plan selection
4545

46-
- If the user asks for the **cheapest** plan: select `startup-4` (the cheapest plan that supports Schema Registry and SASL).
47-
- If the user does **not** specify a plan: default to `startup-4`.
46+
- If the user asks for the **cheapest** plan: select `developer-2-1d` (the cheapest plan that supports Schema Registry and SASL).
47+
- If the user does **not** specify a plan: default to `developer-2-1d`.
4848
- If the user explicitly names a valid plan (e.g. `business-4`): use it.
4949
- **Always confirm** the selected plan and its hourly cost with the user before creating the service.
5050

@@ -67,7 +67,7 @@ bash scripts/setup_aiven_kafka.sh <service-name> <CLOUD_NAME> <plan> <kafka-vers
6767
Example:
6868

6969
```bash
70-
bash scripts/setup_aiven_kafka.sh my-kafka do-fra startup-4 4.1
70+
bash scripts/setup_aiven_kafka.sh my-kafka do-fra developer-2-1d 4.1
7171
```
7272

7373
**ALWAYS** use the latest Kafka version. As of 2026-03, the latest is **4.1**.

skills/aiven-kafka-setup-avn/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Follow **[SERVICE_CREATION_AVN.md](SERVICE_CREATION_AVN.md)** sections 1–4 in
8989
- `aiven-kafka-service-test`
9090
- `Other` (if selected, ask the customer to provide their custom service name)
9191
2. **Choose a region** — ask the user with AskQuestion, mapping their choice to the **EXACT** `CLOUD_NAME` from the table in **[SERVICE_CREATION_AVN.md](SERVICE_CREATION_AVN.md)**.
92-
3. **Choose a plan** — default `startup-4`; **never** use `free-0` or `startup-2`.
92+
3. **Choose a plan** — default `developer-2-1d`; **never** use `free-0` or `startup-2`.
9393
4. **Run the setup script** — a single command creates the service, tags it with
9494
`AI-skill-generated=true`, creates users and ACLs, registers the schema,
9595
extracts all connection details, and writes them to `env.sh`.

skills/aiven-kafka-setup-avn/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ avn service plans --service-type kafka --cloud <CLOUD_NAME>
3636
avn service create <SERVICE_NAME> \
3737
--service-type kafka \
3838
--cloud <CLOUD_NAME> \
39-
--plan startup-4 \
39+
--plan developer-2-1d \
4040
--no-project-vpc \
4141
--kafka-version 4.1 \
4242
-c kafka_authentication_methods.sasl=true \

skills/aiven-kafka-setup-avn/scripts/setup_aiven_kafka.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -euo pipefail
1818

1919
KAFKA_SERVICE="${1:?Usage: $0 <service-name> <cloud-name> [plan] [kafka-version]}"
2020
CLOUD_NAME="${2:?Usage: $0 <service-name> <cloud-name> [plan] [kafka-version]}"
21-
PLAN="${3:-startup-4}"
21+
PLAN="${3:-developer-2-1d}"
2222
KAFKA_VERSION="${4:-4.1}"
2323
TOPIC="orders"
2424
BILLING_ERROR_MSG="Payment method is not set and there is not enough credits for the service"

0 commit comments

Comments
 (0)