green-vegetable-15659
09/26/2024, 3:00 PMimage_id
in the launch template i got the following aws error:
error: operation UPDATE failed with "InvalidRequest": You cannot specify the field releaseVersion when using custom AMIs. (Service: Eks, Status Code: 400, Request ID
i'm obviously not setting the releaseVersion, hence my confusion
im using python and aws nativegreen-vegetable-15659
09/26/2024, 3:31 PMgreen-vegetable-15659
09/26/2024, 4:13 PMaws eks update-nodegroup-version --cluster-name ${CLUSTER} --nodegroup-name ${NODEGROUP_NAME} --launch-template name=${LT_NAME},version=${LT_VERSION}
so that starts to feel like a bug in the provider that's reusing the previous ouput of release version as an input even though in this case it should notgreen-vegetable-15659
09/26/2024, 4:15 PMgreen-vegetable-15659
09/26/2024, 4:36 PM"outputs": {
"__inputs": {
"...": "...",
"ciphertext": ....
},
"amiType": "CUSTOM",
"arn": "....",
"capacityType": "ON_DEMAND",
"clusterName": "...",
"id": "...",
"instanceTypes": [],
"labels": {
"<http://node.kubernetes.io/role|node.kubernetes.io/role>": "workers"
},
"launchTemplate": {
"id": "lt-03724fe1f358b6d39",
"name": "node-template",
"version": "1"
},
"nodeRole": "blahblah",
"nodegroupName": "blahblah",
"releaseVersion": "ami-05a6b4bea29fc7541",
so the releaseVersion
got resolved to. the amiId (it does the same in the aws console)green-vegetable-15659
09/26/2024, 5:04 PMgreen-vegetable-15659
09/27/2024, 9:34 AM