moved tags beneath name

This commit is contained in:
miampf 2024-04-11 15:15:47 +02:00
parent 9e316cdc64
commit 5d9af04a60
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

@ -67,15 +67,15 @@ type Config struct {
// description: |
// Name of the cluster.
Name string `yaml:"name" validate:"valid_name,required"`
// description : |
// Custom tags to be applied to created cloud resources.
Tags cloudprovider.Tags `yaml:"tags" validate:"omitempty"`
// description: |
// Kubernetes version to be installed into the cluster.
KubernetesVersion versions.ValidK8sVersion `yaml:"kubernetesVersion" validate:"required,supported_k8s_version"`
// description: |
// Microservice version to be installed into the cluster. Defaults to the version of the CLI.
MicroserviceVersion semver.Semver `yaml:"microserviceVersion" validate:"required"`
// description : |
// Custom tags to be applied to created cloud resources.
Tags cloudprovider.Tags `yaml:"tags" validate:"omitempty"`
// description: |
// DON'T USE IN PRODUCTION: enable debug mode and use debug images.
DebugCluster *bool `yaml:"debugCluster" validate:"required"`