Created
April 12, 2019 18:09
-
-
Save metral/b30fdd5ca08e5fc05009d80f74c3b3ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ aws ec2 describe-images --filters Name=description,Values=*linux*,*Linux* Name=name,Values=*amazon-eks-node* Name=manifest-location,Values=*amazon-eks-node-* Name=description,Values=*k8s*1.12* --owners 602401143452 | |
{ | |
"Images": [ | |
{ | |
"Architecture": "x86_64", | |
"CreationDate": "2019-03-30T00:32:52.000Z", | |
"ImageId": "ami-0abcb9f9190e867ab", | |
"ImageLocation": "602401143452/amazon-eks-node-1.12-v20190329", | |
"ImageType": "machine", | |
"Public": true, | |
"OwnerId": "602401143452", | |
"State": "available", | |
"BlockDeviceMappings": [ | |
{ | |
"DeviceName": "/dev/xvda", | |
"Ebs": { | |
"DeleteOnTermination": true, | |
"SnapshotId": "snap-002185798118ef545", | |
"VolumeSize": 20, | |
"VolumeType": "gp2", | |
"Encrypted": false | |
} | |
} | |
], | |
"Description": "EKS Kubernetes Worker AMI with AmazonLinux2 image (k8s: 1.12.7/2019-03-27/bin/linux/amd64, docker:18.06)", | |
"EnaSupport": true, | |
"Hypervisor": "xen", | |
"Name": "amazon-eks-node-1.12-v20190329", | |
"RootDeviceName": "/dev/xvda", | |
"RootDeviceType": "ebs", | |
"SriovNetSupport": "simple", | |
"VirtualizationType": "hvm" | |
}, | |
{ | |
"Architecture": "x86_64", | |
"CreationDate": "2019-03-28T03:00:23.000Z", | |
"ImageId": "ami-0d9f458329e942f90", | |
"ImageLocation": "602401143452/amazon-eks-node-1.12-v20190327", | |
"ImageType": "machine", | |
"Public": true, | |
"OwnerId": "602401143452", | |
"State": "available", | |
"BlockDeviceMappings": [ | |
{ | |
"DeviceName": "/dev/xvda", | |
"Ebs": { | |
"DeleteOnTermination": true, | |
"SnapshotId": "snap-05abd26da63b7b3b1", | |
"VolumeSize": 20, | |
"VolumeType": "gp2", | |
"Encrypted": false | |
} | |
} | |
], | |
"Description": "EKS Kubernetes Worker AMI with AmazonLinux2 image (k8s: 1.12.7, docker:18.06)", | |
"EnaSupport": true, | |
"Hypervisor": "xen", | |
"Name": "amazon-eks-node-1.12-v20190327", | |
"RootDeviceName": "/dev/xvda", | |
"RootDeviceType": "ebs", | |
"SriovNetSupport": "simple", | |
"VirtualizationType": "hvm" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment