forked from operator-framework/operator-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.go
180 lines (160 loc) · 5.75 KB
/
local.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
// Copyright 2018 The Operator-SDK Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package up
import (
"fmt"
"os"
"os/exec"
"os/signal"
"os/user"
"path/filepath"
"runtime"
"strings"
"syscall"
"github.com/operator-framework/operator-sdk/internal/util/projutil"
"github.com/operator-framework/operator-sdk/pkg/ansible"
aoflags "github.com/operator-framework/operator-sdk/pkg/ansible/flags"
"github.com/operator-framework/operator-sdk/pkg/helm"
hoflags "github.com/operator-framework/operator-sdk/pkg/helm/flags"
"github.com/operator-framework/operator-sdk/pkg/k8sutil"
"github.com/operator-framework/operator-sdk/pkg/scaffold"
sdkVersion "github.com/operator-framework/operator-sdk/version"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
// NewLocalCmd - up local command to run an operator loccally
func NewLocalCmd() *cobra.Command {
upLocalCmd := &cobra.Command{
Use: "local",
Short: "Launches the operator locally",
Long: `The operator-sdk up local command launches the operator on the local machine
by building the operator binary with the ability to access a
kubernetes cluster using a kubeconfig file.
`,
Run: upLocalFunc,
}
upLocalCmd.Flags().StringVar(&kubeConfig, "kubeconfig", "", "The file path to kubernetes configuration file; defaults to $HOME/.kube/config")
upLocalCmd.Flags().StringVar(&operatorFlags, "operator-flags", "", "The flags that the operator needs. Example: \"--flag1 value1 --flag2=value2\"")
upLocalCmd.Flags().StringVar(&namespace, "namespace", "default", "The namespace where the operator watches for changes.")
upLocalCmd.Flags().StringVar(&ldFlags, "go-ldflags", "", "Set Go linker options")
switch projutil.GetOperatorType() {
case projutil.OperatorTypeAnsible:
ansibleOperatorFlags = aoflags.AddTo(upLocalCmd.Flags(), "(ansible operator)")
case projutil.OperatorTypeHelm:
helmOperatorFlags = hoflags.AddTo(upLocalCmd.Flags(), "(helm operator)")
}
return upLocalCmd
}
var (
kubeConfig string
operatorFlags string
namespace string
ldFlags string
ansibleOperatorFlags *aoflags.AnsibleOperatorFlags
helmOperatorFlags *hoflags.HelmOperatorFlags
)
const (
defaultConfigPath = ".kube/config"
)
func upLocalFunc(cmd *cobra.Command, args []string) {
mustKubeConfig()
log.Info("Running the operator locally.")
switch projutil.GetOperatorType() {
case projutil.OperatorTypeGo:
projutil.MustInProjectRoot()
upLocal()
case projutil.OperatorTypeAnsible:
upLocalAnsible()
case projutil.OperatorTypeHelm:
upLocalHelm()
default:
log.Fatal("Failed to determine operator type")
}
}
// mustKubeConfig checks if the kubeconfig file exists.
func mustKubeConfig() {
// if kubeConfig is not specified, search for the default kubeconfig file under the $HOME/.kube/config.
if len(kubeConfig) == 0 {
usr, err := user.Current()
if err != nil {
log.Fatalf("Failed to determine user's home dir: (%v)", err)
}
kubeConfig = filepath.Join(usr.HomeDir, defaultConfigPath)
}
_, err := os.Stat(kubeConfig)
if err != nil && os.IsNotExist(err) {
log.Fatalf("Failed to find the kubeconfig file (%v): (%v)", kubeConfig, err)
}
}
func upLocal() {
args := []string{"run"}
if ldFlags != "" {
args = append(args, []string{"-ldflags", ldFlags}...)
}
args = append(args, filepath.Join(scaffold.ManagerDir, scaffold.CmdFile))
if operatorFlags != "" {
extraArgs := strings.Split(operatorFlags, " ")
args = append(args, extraArgs...)
}
dc := exec.Command("go", args...)
c := make(chan os.Signal)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
err := dc.Process.Kill()
if err != nil {
log.Fatalf("Failed to terminate the operator: (%v)", err)
}
os.Exit(0)
}()
dc.Stdout = os.Stdout
dc.Stderr = os.Stderr
dc.Env = append(os.Environ(), fmt.Sprintf("%v=%v", k8sutil.KubeConfigEnvVar, kubeConfig))
dc.Env = append(dc.Env, fmt.Sprintf("%v=%v", k8sutil.WatchNamespaceEnvVar, namespace))
err := dc.Run()
if err != nil {
log.Fatalf("Failed to run operator locally: (%v)", err)
}
}
func upLocalAnsible() {
// Set the kubeconfig that the manager will be able to grab
if err := os.Setenv(k8sutil.KubeConfigEnvVar, kubeConfig); err != nil {
log.Fatalf("Failed to set %s environment variable: (%v)", k8sutil.KubeConfigEnvVar, err)
}
// Set the kubeconfig that the manager will be able to grab
if namespace != "" {
if err := os.Setenv(k8sutil.WatchNamespaceEnvVar, namespace); err != nil {
log.Fatalf("Failed to set %s environment variable: (%v)", k8sutil.WatchNamespaceEnvVar, err)
}
}
ansible.Run(ansibleOperatorFlags)
}
func upLocalHelm() {
// Set the kubeconfig that the manager will be able to grab
if err := os.Setenv(k8sutil.KubeConfigEnvVar, kubeConfig); err != nil {
log.Fatalf("Failed to set %s environment variable: (%v)", k8sutil.KubeConfigEnvVar, err)
}
// Set the kubeconfig that the manager will be able to grab
if namespace != "" {
if err := os.Setenv(k8sutil.WatchNamespaceEnvVar, namespace); err != nil {
log.Fatalf("Failed to set %s environment variable: (%v)", k8sutil.WatchNamespaceEnvVar, err)
}
}
helm.Run(helmOperatorFlags)
}
func printVersion() {
log.Infof("Go Version: %s", runtime.Version())
log.Infof("Go OS/Arch: %s/%s", runtime.GOOS, runtime.GOARCH)
log.Infof("Version of operator-sdk: %v", sdkVersion.Version)
}