Skip to content

Commit

Permalink
Merge pull request #39 from PixarV/C2DEVEL-15046
Browse files Browse the repository at this point in the history
support legacyClusterParams.masterConfig block for EKS clusters
  • Loading branch information
vamping111 authored Dec 19, 2024
2 parents d2db834 + fd8c5cf commit 19a75f3
Show file tree
Hide file tree
Showing 2 changed files with 197 additions and 2 deletions.
33 changes: 31 additions & 2 deletions models/apis/eks/2017-11-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,8 @@
"platformVersion":{"shape":"String"},
"tags":{"shape":"TagMap"},
"encryptionConfig":{"shape":"EncryptionConfigList"},
"connectorConfig":{"shape":"ConnectorConfigResponse"}
"connectorConfig":{"shape":"ConnectorConfigResponse"},
"legacyClusterParams":{"shape":"legacyClusterParams"}
}
},
"ClusterName":{
Expand Down Expand Up @@ -906,7 +907,8 @@
"idempotencyToken":true
},
"tags":{"shape":"TagMap"},
"encryptionConfig":{"shape":"EncryptionConfigList"}
"encryptionConfig":{"shape":"EncryptionConfigList"},
"legacyClusterParams":{"shape":"legacyClusterParams"}
}
},
"CreateClusterResponse":{
Expand Down Expand Up @@ -1435,6 +1437,7 @@
"type":"list",
"member":{"shape":"String"}
},
"Integer":{"type":"integer"},
"InvalidParameterException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1500,6 +1503,15 @@
"id":{"shape":"String"}
}
},
"legacyClusterParams": {
"type": "structure",
"required": [
"masterConfig"
],
"members": {
"masterConfig": {"shape": "masterConfig"}
}
},
"ListAddonsRequest":{
"type":"structure",
"required":["clusterName"],
Expand Down Expand Up @@ -1755,6 +1767,23 @@
"clusterLogging":{"shape":"LogSetups"}
}
},
"masterConfig":{
"type":"structure",
"required":[
"highAvailability",
"mastersInstanceType",
"mastersVolumeType",
"mastersVolumeSize"
],
"members":{
"highAvailability":{"shape":"Boolean"},
"mastersInstanceType":{"shape":"String"},
"mastersVolumeType":{"shape":"String"},
"mastersVolumeSize":{"shape":"Integer"},
"mastersVolumeIops":{"shape":"Integer"},
"masterPublicIp":{"shape":"String"}
}
},
"Nodegroup":{
"type":"structure",
"members":{
Expand Down
166 changes: 166 additions & 0 deletions service/eks/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 19a75f3

Please sign in to comment.