forked from kubernetes-retired/cluster-api-provider-nested
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.go
110 lines (90 loc) · 2.93 KB
/
util.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
/*
Copyright 2020 The Kubernetes 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 main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
"strings"
"github.com/spf13/cobra"
"k8s.io/cli-runtime/pkg/genericclioptions"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/rest"
"sigs.k8s.io/controller-runtime/pkg/client"
vcclient "sigs.k8s.io/cluster-api-provider-nested/virtualcluster/pkg/client/clientset/versioned"
)
// Factory provides abstractions that allow the Kubectl command to be extended across multiple types
// of resources and different API sets.
type Factory interface {
// GenericClient from controller runtime
GenericClient() (client.Client, error)
// KubernetesClientSet gives you back an external clientset
KubernetesClientSet() (kubernetes.Interface, error)
// VirtualClusterClientSet is the virtualcluster clientset
VirtualClusterClientSet() (vcclient.Interface, error)
}
type factoryImpl struct {
config *rest.Config
}
func NewFactory() (Factory, error) {
kubecfgFlags := genericclioptions.NewConfigFlags(true)
config, err := kubecfgFlags.ToRESTConfig()
if err != nil {
return nil, err
}
return &factoryImpl{config: config}, nil
}
func (f *factoryImpl) GenericClient() (client.Client, error) {
return client.New(f.config, client.Options{Scheme: scheme.Scheme})
}
func (f *factoryImpl) KubernetesClientSet() (kubernetes.Interface, error) {
return kubernetes.NewForConfig(f.config)
}
func (f *factoryImpl) VirtualClusterClientSet() (vcclient.Interface, error) {
return vcclient.NewForConfig(f.config)
}
func UsageErrorf(cmd *cobra.Command, format string, args ...interface{}) error {
msg := fmt.Sprintf(format, args...)
return fmt.Errorf("%s\nSee '%s -h' for help and examples", msg, cmd.CommandPath())
}
func CheckErr(err error) {
if err != nil {
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}
}
// readFromFileOrURL reads the content from the file path or url.
func readFromFileOrURL(path string) ([]byte, error) {
if isURL(path) {
// read from an URL
resp, err := http.Get(path)
if err != nil {
return nil, err
}
defer resp.Body.Close()
yamlContent, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return yamlContent, nil
}
// read from a file
content, err := ioutil.ReadFile(path)
return content, err
}
// isURL checks if `path` is an URL
func isURL(path string) bool {
return strings.HasPrefix(path, "https://") || strings.HasPrefix(path, "http://")
}