forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_addon_anchore.go
190 lines (161 loc) · 5.59 KB
/
create_addon_anchore.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package cmd
import (
"io"
"strings"
"github.com/pkg/errors"
"github.com/spf13/cobra"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"fmt"
"time"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
)
const (
defaultAnchoreName = "anchore"
defaultAnchoreNamespace = "anchore"
defaultAnchoreReleaseName = "anchore"
defaultAnchoreVersion = "0.1.7"
defaultAnchorePassword = "anchore"
defaultAnchoreConfigDir = "/anchore_service_dir"
anchoreDeploymentName = "anchore-anchore-engine-core"
)
var (
createAddonAnchoreLong = templates.LongDesc(`
Creates the anchore addon for serverless on kubernetes
`)
createAddonAnchoreExample = templates.Examples(`
# Create the anchore addon
jx create addon anchore
# Create the anchore addon in a custom namespace
jx create addon anchore -n mynamespace
`)
)
// CreateAddonAnchoreOptions the options for the create spring command
type CreateAddonAnchoreOptions struct {
CreateAddonOptions
Chart string
Password string
ConfigDir string
}
// NewCmdCreateAddonAnchore creates a command object for the "create" command
func NewCmdCreateAddonAnchore(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &CreateAddonAnchoreOptions{
CreateAddonOptions: CreateAddonOptions{
CreateOptions: CreateOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
},
}
cmd := &cobra.Command{
Use: "anchore",
Short: "Create the Anchore addon for verifying container images",
Aliases: []string{"env"},
Long: createAddonAnchoreLong,
Example: createAddonAnchoreExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
options.addCommonFlags(cmd)
options.addFlags(cmd, defaultAnchoreNamespace, defaultAnchoreReleaseName)
cmd.Flags().StringVarP(&options.Version, "version", "v", defaultAnchoreVersion, "The version of the Anchore chart to use")
cmd.Flags().StringVarP(&options.Password, "password", "p", defaultAnchorePassword, "The default password to use for Anchore")
cmd.Flags().StringVarP(&options.ConfigDir, "config-dir", "d", defaultAnchoreConfigDir, "The config directory to use")
cmd.Flags().StringVarP(&options.Chart, optionChart, "c", kube.ChartAnchore, "The name of the chart to use")
return cmd
}
// Run implements the command
func (o *CreateAddonAnchoreOptions) Run() error {
err := o.ensureHelm()
if err != nil {
return errors.Wrap(err, "failed to ensure that helm is present")
}
if o.ReleaseName == "" {
return util.MissingOption(optionRelease)
}
if o.Chart == "" {
return util.MissingOption(optionChart)
}
_, _, err = o.KubeClient()
if err != nil {
return err
}
devNamespace, _, err := kube.GetDevNamespace(o.KubeClientCached, o.currentNamespace)
if err != nil {
return fmt.Errorf("cannot find a dev team namespace to get existing exposecontroller config from. %v", err)
}
log.Infof("found dev namespace %s\n", devNamespace)
values := []string{"globalConfig.users.admin.password=" + o.Password, "globalConfig.configDir=/anchore_service_dir"}
setValues := strings.Split(o.SetValues, ",")
values = append(values, setValues...)
err = o.installChart(o.ReleaseName, o.Chart, o.Version, o.Namespace, true, values)
if err != nil {
return fmt.Errorf("anchore deployment failed: %v", err)
}
log.Info("waiting for anchore deployment to be ready, this can take a few minutes\n")
err = kube.WaitForDeploymentToBeReady(o.KubeClientCached, anchoreDeploymentName, o.Namespace, 10*time.Minute)
if err != nil {
return err
}
anchoreServiceName := kube.AddonServices[defaultAnchoreName]
// annotate the anchore engine service so exposecontroller can create an ingress rule
svc, err := o.KubeClientCached.CoreV1().Services(o.Namespace).Get(anchoreServiceName, meta_v1.GetOptions{})
if err != nil {
return fmt.Errorf("failed to get Service %s: %v", anchoreServiceName, err)
}
if svc.Annotations == nil {
svc.Annotations = map[string]string{}
}
if svc.Annotations[kube.AnnotationExpose] == "" {
svc.Annotations[kube.AnnotationExpose] = "true"
svc, err = o.KubeClientCached.CoreV1().Services(o.Namespace).Update(svc)
if err != nil {
return fmt.Errorf("failed to update service %s/%s", o.Namespace, anchoreServiceName)
}
}
// create the ingress rule
err = o.expose(devNamespace, o.Namespace, "")
if err != nil {
return err
}
// get the external anchore service URL
ing, err := kube.GetServiceURLFromName(o.KubeClientCached, anchoreServiceName, o.Namespace)
if err != nil {
return fmt.Errorf("failed to get external URL for service %s: %v", anchoreServiceName, err)
}
// create the local addonAuth.yaml file so `jx get cve` commands work
tokenOptions := CreateTokenAddonOptions{
Password: o.Password,
Username: "admin",
ServerFlags: ServerFlags{
ServerURL: ing,
ServerName: anchoreDeploymentName,
},
Kind: kube.ValueKindCVE,
CreateOptions: CreateOptions{
CommonOptions: o.CommonOptions,
},
}
err = tokenOptions.Run()
if err != nil {
return fmt.Errorf("failed to create addonAuth.yaml error: %v", err)
}
_, err = o.KubeClientCached.CoreV1().Services(o.currentNamespace).Get(anchoreServiceName, meta_v1.GetOptions{})
if err != nil {
// create a service link
err = kube.CreateServiceLink(o.KubeClientCached, o.currentNamespace, o.Namespace, anchoreServiceName, ing)
if err != nil {
return fmt.Errorf("failed creating a service link for %s in target namespace %s", anchoreServiceName, o.Namespace)
}
}
return nil
}