-
Notifications
You must be signed in to change notification settings - Fork 0
AWS Marketplace
KubeOpsAI edited this page Aug 23, 2026
·
1 revision
| Tier | Price | Namespaces | Support |
|---|---|---|---|
| Standard | $99/month | Up to 3 | Community |
| Professional | $299/month | Unlimited | Priority email |
| Enterprise | $499/month | Unlimited | Dedicated + custom sanitization rules |
Billing appears on your monthly AWS invoice. Supports AWS committed spend and consolidated billing.
- Find the product on AWS Marketplace
- Click Subscribe and choose your tier
- After subscribing, your product code is visible in the AWS Marketplace Management Portal under your subscriptions
- Use that product code in your Helm install:
--set config.marketplaceProductCode=<YOUR_PRODUCT_CODE>
The EKS node role (or pod service account) must have permission to call RegisterUsage:
{
"Effect": "Allow",
"Action": "aws-marketplace:RegisterUsage",
"Resource": "*"
}Without this, the pod will exit at startup with License check failed.
- On startup, the server calls
RegisterUsageto record a metering event - Every hour, it calls
RegisterUsageagain for ongoing billing - If metering fails 3 consecutive times, the server shuts down gracefully
- All metering calls are made to the AWS Marketplace Metering Service over HTTPS (port 443)