forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
operator-common.go
121 lines (108 loc) · 3.9 KB
/
operator-common.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
// Copyright Istio 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 mesh
import (
"context"
v12 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
// Import all Kubernetes client auth plugins (e.g. Azure, GCP, OIDC, etc.)
_ "k8s.io/client-go/plugin/pkg/client/auth"
"istio.io/istio/operator/pkg/helm"
"istio.io/istio/operator/pkg/name"
"istio.io/istio/operator/pkg/util"
)
type operatorCommonArgs struct {
// hub is the hub for the operator image.
hub string
// tag is the tag for the operator image.
tag string
// imagePullSecrets is an array of imagePullSecret to pull operator image from the private registry
imagePullSecrets []string
// operatorNamespace is the namespace the operator controller is installed into.
operatorNamespace string
// watchedNamespaces is the namespaces the operator controller watches, could be namespace list separated by comma.
watchedNamespaces string
// istioNamespace is deprecated, use watchedNamespaces instead.
istioNamespace string
// manifestsPath is a path to a charts and profiles directory in the local filesystem, or URL with a release tgz.
manifestsPath string
// revision is the Istio control plane revision the command targets.
revision string
}
const (
operatorResourceName = "istio-operator"
operatorDefaultNamespace = "istio-operator"
istioDefaultNamespace = "istio-system"
)
// isControllerInstalled reports whether an operator deployment exists in the given namespace.
func isControllerInstalled(cs kubernetes.Interface, operatorNamespace string, revision string) (bool, error) {
orn := operatorResourceName
if revision != "" {
orn += "-" + revision
}
return deploymentExists(cs, operatorNamespace, orn)
}
// renderOperatorManifest renders a manifest to install the operator with the given input arguments.
func renderOperatorManifest(_ *rootArgs, ocArgs *operatorCommonArgs) (string, string, error) {
installPackagePath := ocArgs.manifestsPath
r := helm.NewHelmRenderer(installPackagePath, "istio-operator", string(name.IstioOperatorComponentName), ocArgs.operatorNamespace)
if err := r.Run(); err != nil {
return "", "", err
}
tmpl := `
operatorNamespace: {{.OperatorNamespace}}
istioNamespace: {{.IstioNamespace}}
watchedNamespaces: {{.WatchedNamespaces}}
hub: {{.Hub}}
tag: {{.Tag}}
{{- if .ImagePullSecrets }}
imagePullSecrets:
{{- range .ImagePullSecrets }}
- {{ . }}
{{- end }}
{{- end }}
revision: {{if .Revision }} {{.Revision}} {{else}} "" {{end}}
`
tv := struct {
OperatorNamespace string
IstioNamespace string
WatchedNamespaces string
Hub string
Tag string
ImagePullSecrets []string
Revision string
}{
OperatorNamespace: ocArgs.operatorNamespace,
IstioNamespace: ocArgs.istioNamespace,
WatchedNamespaces: ocArgs.watchedNamespaces,
Hub: ocArgs.hub,
Tag: ocArgs.tag,
ImagePullSecrets: ocArgs.imagePullSecrets,
Revision: ocArgs.revision,
}
vals, err := util.RenderTemplate(tmpl, tv)
if err != nil {
return "", "", err
}
manifest, err := r.RenderManifest(vals)
return vals, manifest, err
}
// deploymentExists returns true if the given deployment in the namespace exists.
func deploymentExists(cs kubernetes.Interface, namespace, name string) (bool, error) {
d, err := cs.AppsV1().Deployments(namespace).Get(context.TODO(), name, v12.GetOptions{})
if err != nil {
return false, err
}
return d != nil, nil
}