You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❗❗ ACK EC2-Controller is released in the [*PREVIEW* Phase](https://aws-controllers-k8s.github.io/community/docs/community/releases/#preview) and is still in development. **Not recommended for production use.** ❗❗
12
+
13
+
## Install the Controller
14
+
15
+
Start with the [Install an ACK Controller](https://aws-controllers-k8s.github.io/community/docs/user-docs/install/) section to install the controller into a cluster and setup necessary IAM Permissions.
16
+
17
+
*Note: it is recommended and assumed your local terminal has kubectl and AWS credentials configured to use the hosting cluster and AWS account, respectively.*
18
+
19
+
## Create/Delete an ACK Resource
20
+
21
+
* Navigate to [test resources]() for a list of resource `yaml` templates
22
+
* Copy the file to the local terminal and substitute `$` values. Ex: [vpc.yaml](https://github.com/aws-controllers-k8s/ec2-controller/blob/main/test/e2e/resources/vpc.yaml)
23
+
24
+
```
25
+
apiVersion: ec2.services.k8s.aws/v1alpha1
26
+
kind: VPC
27
+
metadata:
28
+
name: My-ACK-Resource
29
+
spec:
30
+
cidrBlock: 172.31.0.0/16
31
+
```
32
+
33
+
* Create a VPC: `kubectl apply -f vpc.yaml`
34
+
* Check its status: `kubectl describe vpc/My-ACK-Resource`
35
+
* Delete the VPC: `kubectl delete -f vpc.yaml`
36
+
37
+
## Uninstall the Controller
38
+
39
+
Navigate to [Uninstall an ACK Controller](https://aws-controllers-k8s.github.io/community/docs/user-docs/cleanup/) section and substitute service values with `ec2`
40
+
11
41
## Contributing
12
42
13
43
We welcome community contributions and pull requests.
0 commit comments