Skip to content

Commit

Permalink
Fixes #25: updated istio to version 1.4.5
Browse files Browse the repository at this point in the history
- Updated istio helm chart to version 1.4.5.
- Wait for the crd jobs until they are done

Signed-off-by: Markus Hartmann <[email protected]>
  • Loading branch information
aidun authored and alexellis committed Mar 3, 2020
1 parent d2934b5 commit bb980d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/apps/istio_app.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func MakeInstallIstio() *cobra.Command {
return err
}

istioVer := "1.3.3"
istioVer := "1.4.5"

err = addHelmRepo("istio", "https://storage.googleapis.com/istio-release/releases/"+istioVer+"/charts", helm3)
if err != nil {
Expand Down Expand Up @@ -114,11 +114,11 @@ func MakeInstallIstio() *cobra.Command {
outputPath := path.Join(chartPath, "istio")

if initIstio, _ := command.Flags().GetBool("init"); initIstio {
err = helm3Upgrade(outputPath, "istio/istio-init", namespace, "", defaultVersion, overrides, wait)
// Waiting for the crds to appear
err = helm3Upgrade(outputPath, "istio/istio-init", namespace, "", defaultVersion, overrides, true)
if err != nil {
return fmt.Errorf("unable to istio-init install chart with helm %s", err)
}

}

customFlags, customFlagErr := command.Flags().GetStringArray("set")
Expand Down

0 comments on commit bb980d5

Please sign in to comment.