Update to Grafana Cloud k6 cloud options
You can use Grafana Cloud k6 cloud options to configure additional test parameters, such as how to distribute your test across load zones, or to use static IP addresses.
Before, you would use the options.ext.loadimpact
object to pass any configuration parameters. Now, you can use the options.cloud
object instead:
export const options = {
cloud: {
name: 'Hello k6 cloud!',
projectID: 123456,
staticIPs: true,
},
};
The options.ext.loadimpact
object will be deprecated in the future. For more details about cloud options, refer to Cloud options.