Abhishek Mishra
Abhishek Mishra

Reputation: 111

Creating dataproc cluster from a template

How to change the cluster image version while creating a dataproc cluster from the existing cluster's template i.e. the yaml file? Here my existing cluster is having an older version of dataproc image but I want to use the latest image in the new cluster. Is it possible to do so?

Upvotes: 1

Views: 240

Answers (1)

Igor Dvorzhak
Igor Dvorzhak

Reputation: 4465

To change image version in YAML file, you should set or change it in the imageVersion field:

config:
  # . . .
  softwareConfig:
    # . . .
    imageVersion: <IMAGE_VERSION>
  # . . .

Upvotes: 1

Related Questions