File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
23
23
const (
24
24
// A default Istio version, get the latest from:
25
25
// https://github.com/istio/istio/releases/latest
26
- istioVer = "1.16.1 "
26
+ istioVer = "1.25.0 "
27
27
)
28
28
29
29
func MakeInstallIstio () * cobra.Command {
@@ -150,17 +150,14 @@ func MakeInstallIstio() *cobra.Command {
150
150
}
151
151
152
152
w := bufio .NewWriter (file )
153
- _ , err = w .WriteString (res .Stdout )
154
- if err != nil {
153
+ if _ , err := w .WriteString (res .Stdout ); err != nil {
155
154
return err
156
155
}
157
156
w .Flush ()
158
157
159
158
defer os .Remove (file .Name ())
160
159
161
- verifyFlags := mergeFlagsSlices ([]string {"verify-install" }, defaultFlags )
162
- _ , err = istioCli (verifyFlags ... )
163
- if err != nil {
160
+ if _ , err := istioCli (defaultFlags ... ); err != nil {
164
161
return err
165
162
}
166
163
@@ -172,7 +169,9 @@ func MakeInstallIstio() *cobra.Command {
172
169
}
173
170
174
171
const IstioInfoMsg = `# Find out more at:
175
- # https://github.com/istio/`
172
+ # https://github.com/istio/
173
+ # https://istio.io/latest/docs/
174
+ `
176
175
177
176
const istioPostInstallMsg = `=======================================================================
178
177
= Istio has been installed. =
You can’t perform that action at this time.
0 commit comments