constellation/internal/role/role.go
Adrian Stobbe 487fa1e397
terraform: azure node groups (#1955)
* init

* migration working

* make tf variables with default value optional in go through ptr type

* fix CI build

* pr feedback

* add azure targets tf

* skip migration for empty targets

* make instance_count optional

* change role naming to dashed + add validation

* make node_group.zones optional

* Update cli/internal/terraform/terraform/azure/main.tf

Co-authored-by: Malte Poll <1780588+malt3@users.noreply.github.com>

* malte feedback

---------

Co-authored-by: Malte Poll <1780588+malt3@users.noreply.github.com>
2023-06-22 16:53:40 +02:00

66 lines
1.3 KiB
Go

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package role
import (
"encoding/json"
"strings"
)
//go:generate stringer -type=Role
// Role is a peer's role.
type Role uint
const (
// Unknown is the default value for Role and should have no meaning.
Unknown Role = iota
// ControlPlane declares this node as a Kubernetes control plane node.
ControlPlane
// Worker declares this node as a Kubernetes worker node.
Worker
)
// TFString returns the role as a string for Terraform.
func (r Role) TFString() string {
switch r {
case ControlPlane:
return "control-plane"
case Worker:
return "worker"
default:
return "unknown"
}
}
// MarshalJSON marshals the Role to JSON string.
func (r Role) MarshalJSON() ([]byte, error) {
return json.Marshal(r.String())
}
// UnmarshalJSON unmarshals the Role from JSON string.
func (r *Role) UnmarshalJSON(b []byte) error {
var roleString string
if err := json.Unmarshal(b, &roleString); err != nil {
return err
}
*r = FromString(roleString)
return nil
}
// FromString returns the Role for the given string.
func FromString(s string) Role {
switch strings.ToLower(s) {
case "controlplane", "control-plane":
return ControlPlane
case "worker":
return Worker
default:
return Unknown
}
}