Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Cloud Infrastructure / Amazonaws / Amazon Elastic Kubernetes Service
Amazon Elastic Kubernetes Service logo

AWS Amazon Elastic Kubernetes Service

Browse all Amazonaws APIs
★ Only Publicly Available OpenAPI DocumentCloud InfrastructureContainer OrchestrationapiKey35 EndpointsREST

For Agents

Provision and manage Amazon EKS Kubernetes clusters, node groups, Fargate profiles, and add-ons across AWS regions through a single API.

Use for: I need to spin up a new EKS cluster in eu-west-1, Provision a managed node group with t3.medium instances, Set up a Fargate profile for the kube-system namespace, List all EKS clusters in this account

Not supported: Does not handle Kubernetes object operations, container image builds, or in-cluster RBAC policies — use for EKS control-plane and node-group management only.

Jentic publishes the only available OpenAPI specification for Amazon Elastic Kubernetes Service, keeping it validated and agent-ready. Amazon EKS is a managed Kubernetes service that runs upstream Kubernetes on AWS without requiring teams to operate the control plane themselves. The API covers cluster lifecycle management, managed node groups, Fargate profiles, EKS add-ons, and identity provider configuration. It is designed for platform teams that need to provision, scale, and upgrade Kubernetes clusters across multiple AWS regions while keeping pace with upstream Kubernetes releases.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Amazon Elastic Kubernetes Service to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Amazon Elastic Kubernetes Service, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Amazon Elastic Kubernetes Service API.

Create and delete EKS clusters with custom VPC, logging, and Kubernetes version configuration

Provision managed node groups with autoscaling settings, instance types, and AMI release versions

Attach Fargate profiles to run pods on serverless compute without managing EC2 nodes

Install, update, and remove EKS add-ons such as VPC CNI, CoreDNS, and kube-proxy

Associate OIDC identity provider configurations to authenticate Kubernetes users against external IdPs

Update cluster encryption configuration to enable envelope encryption of Kubernetes secrets

List and describe cluster, node group, and add-on update history for change auditing

Use Cases

Patterns agents use Amazon Elastic Kubernetes Service API for, with concrete tasks.

★ Multi-Region Kubernetes Platform Provisioning

Platform engineering teams use the Amazon EKS API to stand up production-grade Kubernetes clusters across multiple AWS regions with consistent network, logging, and encryption configuration. The API drives cluster creation, node group sizing, and Fargate profile attachment so teams can codify cluster topology in pipelines instead of clicking through the console. A typical regional rollout creates one cluster, two node groups, and three Fargate profiles in under thirty minutes when run as an automated workflow.

Create an EKS cluster named prod-eu in eu-west-1 with Kubernetes version 1.28, then attach a managed node group of three t3.large nodes.

Fargate Workload Onboarding

Teams migrating workloads to serverless containers use the EKS API to attach Fargate profiles that select pods by namespace and label. This removes the need to manage EC2 worker nodes for specific workloads while keeping the rest of the cluster on managed node groups. Fargate profile creation typically completes in two to three minutes and supports up to five selector rules per profile.

Create a Fargate profile on cluster prod-eu that selects pods in the batch namespace with label workload=etl.

Add-on Lifecycle Management

EKS add-ons let teams keep cluster components such as VPC CNI, CoreDNS, and kube-proxy on supported, vendor-curated versions. The API handles install, version updates, and removal so cluster operators can roll out coordinated upgrades across many clusters. Add-on updates are non-disruptive when configured with the PRESERVE conflict resolution strategy.

Update the vpc-cni add-on on cluster prod-eu to version v1.15.1-eksbuild.1 with the PRESERVE conflict resolution strategy.

Agent-Driven Cluster Operations via Jentic

AI agents use the EKS API through Jentic to handle routine cluster operations such as listing clusters, checking upgrade readiness, and provisioning new node groups in response to capacity events. Jentic exposes EKS operations as discoverable tools so an agent can search by intent and execute the matching operation without parsing AWS docs. This shortens incident response and capacity planning loops from manual console work to seconds.

Search Jentic for create cluster, load the EKS createCluster schema, and execute it for a new staging cluster in us-east-2.

Key Endpoints

35 endpoints — jentic publishes the only available openapi specification for amazon elastic kubernetes service, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/clusters

Create a new EKS cluster

GET

/clusters

List EKS clusters in the account

DELETE

/clusters/{name}

Delete an EKS cluster

POST

/clusters/{name}/node-groups

Create a managed node group

POST

/clusters/{name}/fargate-profiles

Create a Fargate profile

POST

/clusters/{name}/addons

Install an EKS add-on

POST

/clusters/{name}/identity-provider-configs/associate

Associate an OIDC identity provider

POST

/clusters

Create a new EKS cluster

GET

/clusters

List EKS clusters in the account

DELETE

/clusters/{name}

Delete an EKS cluster

POST

/clusters/{name}/node-groups

Create a managed node group

POST

/clusters/{name}/fargate-profiles

Create a Fargate profile

POST

/clusters/{name}/addons

Install an EKS add-on

POST

/clusters/{name}/identity-provider-configs/associate

Associate an OIDC identity provider

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

AWS access keys for EKS are stored encrypted in the Jentic vault. Agents receive scoped, short-lived signing access — raw access key IDs and secret access keys never enter the agent's context.

Intent-based discovery

Intent-based discovery

Agents search by intent (for example provision a kubernetes cluster) and Jentic returns matching EKS operations with their input schemas, so the agent can call the right endpoint without browsing AWS docs.

Time to first call

Time to first call

Direct EKS integration: 1-3 days for SigV4 signing, error handling, and pagination. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Amazon EC2

→

EC2 provides the underlying compute that EKS managed node groups run on

Choose EC2 when you need to inspect or modify the underlying instances, security groups, or VPC subnets that host EKS worker nodes.

Complementary

Amazon EMR on EKS

→

Runs Spark and other big-data frameworks on existing EKS clusters

Choose EMR on EKS when the workload is Spark or Hive analytics and you want to reuse an EKS cluster as the compute substrate.

Alternative

AWS Lambda

→

Serverless functions for short-lived event-driven workloads

Choose Lambda when the workload is event-driven, short-lived, and does not need a persistent Kubernetes runtime or custom networking.

FAQs

Specific to using Amazon Elastic Kubernetes Service API through Jentic.

Why is there no official OpenAPI spec for Amazon Elastic Kubernetes Service?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Amazon Elastic Kubernetes Service via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the Amazon EKS API use?

EKS uses AWS Signature Version 4 request signing (the spec marks the scheme as hmac/apiKey). Through Jentic, AWS access keys are stored encrypted in the vault and signing happens server-side, so raw credentials never enter the agent context.

Can I create managed node groups with the EKS API?

Yes. POST /clusters/{name}/node-groups creates a managed node group with instance type, scaling configuration, AMI type, and Kubernetes labels. The cluster must already exist before you call this endpoint.

What are the rate limits for the Amazon EKS API?

AWS applies per-account, per-region API throttling on EKS. Mutating calls (create cluster, create node group) are limited more aggressively than describe calls. Use exponential backoff on ThrottlingException responses; AWS does not publish exact TPS numbers in the spec.

How do I install an EKS add-on through Jentic?

Search Jentic for install eks addon, load the schema for POST /clusters/{name}/addons, and execute it with the cluster name, addonName (for example vpc-cni), and addonVersion. Jentic returns the createdAt timestamp and add-on ARN once the call succeeds.

Does the EKS API let me run kubectl commands?

No. The EKS API manages the cluster control plane, node groups, and add-ons. Kubernetes object operations (kubectl apply, get pods) go directly to the cluster's Kubernetes API server using the kubeconfig you obtain from describeCluster.

GET STARTED

Start building with Amazon Elastic Kubernetes Service API

Explore with Jentic
View OpenAPI Document