Skip to main content

Resource Adoption

Resource adoption allows you to import existing AWS resources into ACK management without recreating them. This is useful when you have pre-existing AWS infrastructure that you want to manage through Kubernetes.

Beta Feature

Resource adoption is a Beta feature. It is enabled by default in the ACK runtime. If you encounter issues, verify the feature is enabled in your controller's Helm values:

helm install ... --set featureGates.ResourceAdoption=true

Adoption Policies​

ACK supports two adoption policies through the services.k8s.aws/adoption-policy annotation:

The adopt-or-create policy adopts the resource if it exists in AWS, or creates it if it doesn't.

Requirements:

  • Provide a fully populated spec with your desired configuration
  • Use services.k8s.aws/adoption-fields to specify how to find the resource (required for resources identified by IDs like VPCs)

Behavior:

  • If resource exists: ACK adopts it and updates it to match your spec
  • If resource doesn't exist: ACK creates it from your spec
  • Your manifest becomes the source of truth

Example: VPC

apiVersion: ec2.services.k8s.aws/v1alpha1
kind: VPC
metadata:
name: my-vpc
annotations:
services.k8s.aws/adoption-policy: "adopt-or-create"
services.k8s.aws/adoption-fields: |
{"vpcID": "vpc-0123456789abcdef0"}
spec:
cidrBlocks:
- "10.0.0.0/16"
enableDNSSupport: true
enableDNSHostnames: true
tags:
- key: environment
value: production

If the VPC exists, ACK adopts it and updates it to match your spec. If it doesn't exist, ACK creates it.

Adoption Fields​

The services.k8s.aws/adoption-fields annotation specifies which fields ACK should use to look up the resource in AWS. The required fields vary by resource type:

Resource TypeAdoption FieldExample
EKS Clustername{"name": "my-cluster"}
SQS QueuequeueURL{"queueURL": "https://sqs.us-west-2.amazonaws.com/123456789012/my-queue"}
VPCvpcID{"vpcID": "vpc-123456789012"}
SNS Topicarn{"arn": "arn:aws:sns:us-west-2:123456789012:my-topic"}
S3 Bucketname{"name": "my-bucket-name"}
DynamoDB TabletableName{"tableName": "my-table"}

Refer to the API Reference for the specific fields required for each resource type.

Choosing a Policy​

Use adopt-or-create when:

  • You want a declarative workflow (resource may or may not exist)
  • You want your manifest to be the source of truth
  • You're okay with ACK updating the resource to match your spec

Use adopt when:

  • You want to import the resource exactly as it exists in AWS
  • You don't want to risk changing the resource during adoption
  • You want to inspect the current configuration before making changes

Verifying Adoption​

After applying a resource with adoption annotations, check if it's ready:

kubectl get cluster my-cluster

NAME READY
my-cluster True

When READY is True, the resource has been successfully adopted.

For more details:

kubectl get cluster my-cluster -o yaml

Successful adoption indicators:

  • Resource shows READY: True
  • status.ackResourceMetadata.arn contains the AWS resource ARN
  • For adopt policy: spec is now populated with current AWS configuration from AWS

After Adoption​

Once a resource is adopted:

  • The adoption annotations are no longer needed (you can remove them)
  • ACK manages the resource like any other ACK resource
  • Changes to the spec will be applied to AWS
  • Deleting the Kubernetes resource will delete the AWS resource (unless using deletionPolicy: Retain)

Next Steps​

Built with ♥ by AWS