//native
type Linode = {
token: string;
};
/**
* Create a node pool
* Creates a new Node Pool for the designated Kubernetes cluster.
*/
export async function main(
auth: Linode,
apiVersion: "v4" | "v4beta",
clusterId: string,
body: {
autoscaler?: { enabled?: false | true; max?: number; min?: number };
count: number;
disks?: { size?: number; type?: "raw" | "ext4" }[];
labels?: {};
tags?: string[];
taints?: {
effect: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
key: string;
value: string;
}[];
type: string;
},
) {
const url = new URL(
`https://api.linode.com/${apiVersion}/lke/clusters/${clusterId}/pools`,
);
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago