forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common_addon.go
56 lines (49 loc) · 1.82 KB
/
common_addon.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
package cmd
import (
"fmt"
"github.com/jenkins-x/jx/pkg/auth"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
)
// getAddonAuth returns the server and user auth for the given addon service URL
func (o *CommonOptions) getAddonAuth(serviceURL string) (*auth.AuthServer, *auth.UserAuth, error) {
if serviceURL == "" {
return nil, nil, nil
}
authConfigSvc, err := o.CreateAddonAuthConfigService()
if err != nil {
return nil, nil, err
}
config := authConfigSvc.Config()
server := config.GetOrCreateServer(serviceURL)
userAuth, err := config.PickServerUserAuth(server, "user to access the addon service at "+serviceURL, o.BatchMode)
return server, userAuth, err
}
// getAddonAuth returns the server and user auth for the given addon service URL. Returns null values if there is no server
func (o *CommonOptions) getAddonAuthByKind(kind, serverURL string) (*auth.AuthServer, *auth.UserAuth, error) {
authConfigSvc, err := o.CreateAddonAuthConfigService()
if err != nil {
return nil, nil, err
}
config := authConfigSvc.Config()
var server *auth.AuthServer
for _, s := range config.Servers {
if s.Kind == kind && s.URL == serverURL {
server = s
}
}
if server == nil {
// TODO lets try find the service in the current namespace using a naming convention?
return nil, nil, fmt.Errorf("no server found for kind %s", kind)
}
message := "user to access the " + kind + " addon service at " + server.URL
userAuth, err := config.PickServerUserAuth(server, message, true)
return server, userAuth, err
}
func (o *CommonOptions) CreateAddonAuthConfigService() (auth.AuthConfigService, error) {
secrets, err := o.LoadPipelineSecrets(kube.ValueKindAddon, "")
if err != nil {
log.Warnf("The current user cannot query pipeline addon secrets: %s", err)
}
return o.Factory.CreateAddonAuthConfigService(secrets)
}