forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temporarycredentials.go
55 lines (42 loc) · 1.45 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
51
52
53
54
55
package clusterstatus
import (
"context"
"fmt"
"strconv"
"k8s.io/apimachinery/pkg/runtime"
"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(ctx context.Context, management *config.ManagementContext) {
c := &clusterAnnotations{
clusters: management.Management.Clusters(""),
}
management.Management.Clusters("").AddHandler(ctx, "temporary-credentials", c.sync)
}
type clusterAnnotations struct {
clusters v3.ClusterInterface
}
func (cd *clusterAnnotations) sync(key string, cluster *v3.Cluster) (runtime.Object, error) {
if key == "" || cluster == nil || cluster.DeletionTimestamp != nil {
return nil, nil
}
if genericConfig := cluster.Spec.GenericEngineConfig; genericConfig != nil {
eksConfig := *genericConfig
if eksConfig["driverName"] != "amazonelasticcontainerservice" {
return nil, nil
}
newValue := strconv.FormatBool(eksConfig["sessionToken"] != "" && eksConfig["sessionToken"] != nil)
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 nil, fmt.Errorf("error updating temporary credentials annotation: %v", err)
}
}
return nil, nil
}