forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temporarycredentials.go
50 lines (38 loc) · 1.28 KB
/
temporarycredentials.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package clusterstatus
import (
"fmt"
"strconv"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
)
const TemporaryCredentialsAnnotationKey = "clusterstatus.management.cattle.io/temporary-security-credentials"
func Register(management *config.ManagementContext) {
c := &clusterAnnotations{
clusters: management.Management.Clusters(""),
}
management.Management.Clusters("").AddHandler("temporary-credentials", c.sync)
}
type clusterAnnotations struct {
clusters v3.ClusterInterface
}
func (cd *clusterAnnotations) sync(key string, cluster *v3.Cluster) error {
if key == "" || cluster == nil || cluster.DeletionTimestamp != nil {
return nil
}
if eksConfig := cluster.Spec.AmazonElasticContainerServiceConfig; eksConfig != nil {
newValue := strconv.FormatBool(eksConfig.SessionToken != "")
if newValue != cluster.Annotations[TemporaryCredentialsAnnotationKey] {
original := cluster
cluster = original.DeepCopy()
if cluster.Annotations == nil {
cluster.Annotations = make(map[string]string)
}
cluster.Annotations[TemporaryCredentialsAnnotationKey] = newValue
_, err := cd.clusters.Update(cluster)
if err != nil {
return fmt.Errorf("error updating temporary credentials annotation: %v", err)
}
}
}
return nil
}