mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 18:34:31 -05:00
a87b7894db
* add current chart add current helm chart * disable service controller for aws ccm * add new iam roles * doc AWS internet LB + add to LB test * pass clusterName to helm for AWS LB * fix update-aws-lb chart to also include .helmignore * move chart outside services * working state * add subnet tags for AWS subnet discovery * fix .helmignore load rule with file in subdirectory * upgrade iam profile * revert new loader impl since cilium is not correctly loaded * install chart if not already present during `upgrade apply` * cleanup PR + fix build + add todos cleanup PR + add todos * shared helm pkg for cli install and bootstrapper * add link to eks docs * refactor iamMigrationCmd * delete unused helm.symwallk * move iammigrate to upgrade pkg * fixup! delete unused helm.symwallk * add to upgradecheck * remove nodeSelector from go code (Otto) * update iam docs and sort permission + remove duplicate roles * fix bug in `upgrade check` * better upgrade check output when svc version upgrade not possible * pr feedback * remove force flag in upgrade_test * use upgrader.GetUpgradeID instead of extra type * remove todos + fix check * update doc lb (leo) * remove bootstrapper helm package * Update cli/internal/cmd/upgradecheck.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * final nits * add docs for e2e upgrade test setup * Apply suggestions from code review Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * Update cli/internal/helm/loader.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * Update cli/internal/cmd/tfmigrationclient.go Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> * fix daniel review * link to the iam permissions instead of manually updating them (agreed with leo) * disable iam upgrade in upgrade apply --------- Co-authored-by: Daniel Weiße <66256922+daniel-weisse@users.noreply.github.com> Co-authored-by: Malte Poll
77 lines
2.3 KiB
Go
77 lines
2.3 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package clusterid
|
|
|
|
import (
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
|
)
|
|
|
|
// File contains state information about a cluster.
|
|
// This information is accessible after the creation
|
|
// and can be used by further operations such as initialization and upgrades.
|
|
type File struct {
|
|
// ClusterID is the unique identifier of the cluster.
|
|
ClusterID string `json:"clusterID,omitempty"`
|
|
// OwnerID is the unique identifier of the owner of the cluster.
|
|
OwnerID string `json:"ownerID,omitempty"`
|
|
// UID is the unique identifier of the cluster, used for infrastructure management.
|
|
UID string `json:"uid,omitempty"`
|
|
// CloudProvider is the cloud provider of the cluster.
|
|
CloudProvider cloudprovider.Provider `json:"cloudprovider,omitempty"`
|
|
// IP is the IP address the cluster can be reached at (often the load balancer).
|
|
IP string `json:"ip,omitempty"`
|
|
// APIServerCertSANs are subject alternative names (SAN) that are added to
|
|
// the TLS certificate of each apiserver instance.
|
|
APIServerCertSANs []string `json:"apiServerCertSANs,omitempty"`
|
|
// InitSecret is the secret the first Bootstrapper uses to verify the user.
|
|
InitSecret []byte `json:"initsecret,omitempty"`
|
|
// AttestationURL is the URL of the attestation service.
|
|
// It is only set if the cluster is created on Azure.
|
|
AttestationURL string `json:"attestationURL,omitempty"`
|
|
}
|
|
|
|
// Merge merges the other file into the current file and returns the result.
|
|
// If a field is set in both files, the value of the other file is used.
|
|
// This does in-place changes on the current file.
|
|
func (f *File) Merge(other File) *File {
|
|
if other.ClusterID != "" {
|
|
f.ClusterID = other.ClusterID
|
|
}
|
|
|
|
if other.OwnerID != "" {
|
|
f.OwnerID = other.OwnerID
|
|
}
|
|
|
|
if other.UID != "" {
|
|
f.UID = other.UID
|
|
}
|
|
|
|
if other.CloudProvider != cloudprovider.Unknown {
|
|
f.CloudProvider = other.CloudProvider
|
|
}
|
|
|
|
if other.IP != "" {
|
|
f.IP = other.IP
|
|
}
|
|
|
|
if other.InitSecret != nil {
|
|
f.InitSecret = other.InitSecret
|
|
}
|
|
|
|
if other.AttestationURL != "" {
|
|
f.AttestationURL = other.AttestationURL
|
|
}
|
|
|
|
return f
|
|
}
|
|
|
|
// GetClusterName returns the name of the cluster.
|
|
func GetClusterName(cfg *config.Config, idFile File) string {
|
|
return cfg.Name + "-" + idFile.UID
|
|
}
|