forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
105 lines (90 loc) · 3.05 KB
/
client.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
package serviceaccounts
import (
"fmt"
"time"
kapi "github.com/GoogleCloudPlatform/kubernetes/pkg/api"
kclient "github.com/GoogleCloudPlatform/kubernetes/pkg/client"
"github.com/openshift/origin/pkg/client"
)
// TokenRetriever defined an interface for getting an API token for a service account
type TokenRetriever interface {
GetToken(serviceAccountNamespace, serviceAccountName string) (token string, err error)
}
// ClientLookupTokenRetriever uses its client to look up a service account token
type ClientLookupTokenRetriever struct {
Client kclient.Interface
}
// GetToken returns a token for the named service account or an error if none existed after a timeout
func (s *ClientLookupTokenRetriever) GetToken(namespace, name string) (string, error) {
for i := 0; i < 30; i++ {
// Wait on subsequent retries
if i != 0 {
time.Sleep(time.Second)
}
// Get the service account
serviceAccount, err := s.Client.ServiceAccounts(namespace).Get(name)
if err != nil {
continue
}
// Get the secrets
// TODO: JTL: create one directly once we have that ability
for _, secretRef := range serviceAccount.Secrets {
secret, err := s.Client.Secrets(namespace).Get(secretRef.Name)
if err != nil {
// Tolerate fetch errors on a particular secret
continue
}
if IsValidServiceAccountToken(serviceAccount, secret) {
// Return a valid token
return string(secret.Data[kapi.ServiceAccountTokenKey]), nil
}
}
}
return "", fmt.Errorf("Could not get token for %s/%s", namespace, name)
}
// Clients returns an OpenShift and Kubernetes client with the credentials of the named service account
// TODO: change return types to client.Interface/kclient.Interface to allow auto-reloading credentials
func Clients(config kclient.Config, tokenRetriever TokenRetriever, namespace, name string) (*client.Client, *kclient.Client, error) {
// Clear existing auth info
config.Username = ""
config.Password = ""
config.CertFile = ""
config.CertData = []byte{}
config.KeyFile = ""
config.KeyData = []byte{}
// For now, just initialize the token once
// TODO: refetch the token if the client encounters 401 errors
token, err := tokenRetriever.GetToken(namespace, name)
if err != nil {
return nil, nil, err
}
config.BearerToken = token
c, err := client.New(&config)
if err != nil {
return nil, nil, err
}
kc, err := kclient.New(&config)
if err != nil {
return nil, nil, err
}
return c, kc, nil
}
// IsValidServiceAccountToken returns true if the given secret contains a service account token valid for the given service account
func IsValidServiceAccountToken(serviceAccount *kapi.ServiceAccount, secret *kapi.Secret) bool {
if secret.Type != kapi.SecretTypeServiceAccountToken {
return false
}
if secret.Namespace != serviceAccount.Namespace {
return false
}
if secret.Annotations[kapi.ServiceAccountNameKey] != serviceAccount.Name {
return false
}
if secret.Annotations[kapi.ServiceAccountUIDKey] != string(serviceAccount.UID) {
return false
}
if len(secret.Data[kapi.ServiceAccountTokenKey]) == 0 {
return false
}
return true
}