This repository was archived by the owner on Oct 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmanifest-migrate.go
149 lines (127 loc) · 4.53 KB
/
manifest-migrate.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
// Copyright 2019 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 (
"encoding/json"
"fmt"
"path/filepath"
"github.com/ghodss/yaml"
"github.com/gogo/protobuf/jsonpb"
"github.com/spf13/cobra"
iopv1alpha1 "istio.io/operator/pkg/apis/istio/v1alpha1"
"istio.io/operator/pkg/kubectlcmd"
"istio.io/operator/pkg/translate"
"istio.io/operator/pkg/util"
binversion "istio.io/operator/version"
)
const (
defaultNamespace = "istio-system"
)
type manifestMigrateArgs struct {
// namespace is the namespace to get the in cluster configMap
namespace string
}
func addManifestMigrateFlags(cmd *cobra.Command, args *manifestMigrateArgs) {
cmd.PersistentFlags().StringVarP(&args.namespace, "namespace", "n", defaultNamespace,
" Default namespace for output IstioOperator CustomResource")
}
func manifestMigrateCmd(rootArgs *rootArgs, mmArgs *manifestMigrateArgs) *cobra.Command {
return &cobra.Command{
Use: "migrate [<filepath>]",
Short: "Migrates a file containing Helm values to IstioOperator format",
Long: "The migrate subcommand migrates a configuration from Helm values format to IstioOperator format.",
Args: func(cmd *cobra.Command, args []string) error {
if len(args) > 1 {
return fmt.Errorf("migrate accepts optional single filepath")
}
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
l := NewLogger(rootArgs.logToStdErr, cmd.OutOrStdout(), cmd.ErrOrStderr())
if len(args) == 0 {
return migrateFromClusterConfig(rootArgs, mmArgs, l)
}
return migrateFromFiles(rootArgs, args, l)
}}
}
func valueFileFilter(path string) bool {
return filepath.Base(path) == "values.yaml" || filepath.Base(path) == "global.yaml"
}
// migrateFromFiles handles migration for local values.yaml files
func migrateFromFiles(rootArgs *rootArgs, args []string, l *Logger) error {
initLogsOrExit(rootArgs)
value, err := util.ReadFilesWithFilter(args[0], valueFileFilter)
if err != nil {
return err
}
if value == "" {
l.logAndPrint("no valid value.yaml file specified")
return nil
}
return translateFunc([]byte(value), l)
}
// translateFunc translates the input values and output the result
func translateFunc(values []byte, l *Logger) error {
ts, err := translate.NewReverseTranslator(binversion.OperatorBinaryVersion.MinorVersion)
if err != nil {
return fmt.Errorf("error creating values.yaml translator: %s", err)
}
translatedIOPS, err := ts.TranslateFromValueToSpec(values)
if err != nil {
return fmt.Errorf("error translating values.yaml: %s", err)
}
isCP := &iopv1alpha1.IstioOperator{Spec: translatedIOPS, Kind: "IstioOperator", ApiVersion: "install.istio.io/v1alpha1"}
ms := jsonpb.Marshaler{}
gotString, err := ms.MarshalToString(isCP)
l.logAndPrint("there is a known issue about the proto tag above, check https://github.com/istio/istio/issues/19735 for more details.\n\n")
if err != nil {
return fmt.Errorf("error marshaling translated IstioOperator: %s", err)
}
isCPYaml, err := yaml.JSONToYAML([]byte(gotString))
if err != nil {
return fmt.Errorf("error converting JSON: %s\n%s", gotString, err)
}
l.print(string(isCPYaml) + "\n")
return nil
}
// migrateFromClusterConfig handles migration for in cluster config.
func migrateFromClusterConfig(rootArgs *rootArgs, mmArgs *manifestMigrateArgs, l *Logger) error {
initLogsOrExit(rootArgs)
l.logAndPrint("translating in cluster specs\n")
c := kubectlcmd.New()
opts := &kubectlcmd.Options{
Namespace: mmArgs.namespace,
ExtraArgs: []string{"jsonpath='{.data.values}'"},
}
output, stderr, err := c.GetConfigMap("istio-sidecar-injector", opts)
if err != nil {
return err
}
if stderr != "" {
l.logAndPrint("error: ", stderr, "\n")
}
var value map[string]interface{}
if len(output) > 1 {
output = output[1 : len(output)-1]
}
err = json.Unmarshal([]byte(output), &value)
if err != nil {
return fmt.Errorf("error unmarshaling JSON to untyped map %s", err)
}
res, err := yaml.Marshal(value)
if err != nil {
return fmt.Errorf("error marshaling untyped map to YAML: %s", err)
}
return translateFunc(res, l)
}