VM Resize Using Cloud Function and Scheduling It through Cloud Scheduler
This article helps you to resize Google Compute Engine using Google Cloud Function and schedule it through Cloud Scheduler(unix Cron format) in a cost-effective way and automated manner.

Introduction
In this article, we will guide you on how to resize a Google Compute Engine(GCE) VM instance using Cloud Function and schedule it through Cloud Scheduler in GCP.
Google Cloud Functions is a lightweight and effective computing solution for developers to create single-purpose, stand-alone functions that respond to Cloud events. You are free from the need to manage a server or runtime environment.
You may use Google Cloud Platform’s console
Create Google Cloud Function
Increase instance size(Machine Type) using GCF
Name your function
In the Trigger field, select HTTP Trigger.
In the Source code field, select Inline editor.
Use the Runtime dropdown to select a runtime(Node.js 8).
The function is given below:
const Compute = require('@google-cloud/compute');
const compute = new Compute();
exports.increaseInstance = function increaseInstance(req, res) {
const zone = compute.zone('zone-name');
const vm = zone.vm('instance-name');
vm.resize('machine-type', function(err, apiResponse) {
if (!err) {
}
});
const options = {
start: true
};};
In ‘Function to execute’ field you need to set the function name same as the name mentioned in your code(e.g. increaseInstance) .
Now you need to write your own package.json.
E.g.
{
"name": "sample-http",
"dependencies": {
"@google-cloud/compute": "0.7.1"
},
"version": "0.0.1"
}
Click on the Finish button.
Decrease instance size(Machine Type) using GCF
Name your function
In the Trigger field, select HTTP Trigger.
In the Source code field, select Inline editor.
Use the Runtime dropdown to select a runtime(Node.js 8).
The function is given below:
const Compute = require('@google-cloud/compute');
const compute = new Compute();
exports.decreaseInstance = function decreaseInstance(req, res) {
const zone = compute.zone('zone-name');
const vm = zone.vm('instance-name');
vm.resize('custom-1-6144-ext', function(err, apiResponse) {
if (!err) {
}
});
const options = {
start: true
};
};
In ‘Function to execute’ field you need to set the function name same as the name mentioned in your code(e.g. decreaseInstance) .
Now you need to write your own package.json.
E.g.
{
"name": "sample-http",
"dependencies": {
"@google-cloud/compute": "0.7.1"
},
"version": "0.0.1"
}
Click on the Finish button.
Schedule Cloud Function using Cloud Scheduler
Go to the Cloud Scheduler page and click on create job.
Give the name of the scheduler.
In the ‘Frequency’ field put the time-span(unix-cron format) and specify the Timezone. E.g. every minute: "* * * * *", every 3 hours: "0 */3 * * *"", every monday at 9:00: "0 9 * * 1".
Set the Target as HTTP and put the Cloud Function’s url.
Click on Finish.