Skip to content

Commit

Permalink
1.0.0 prep work (kyma-project#63)
Browse files Browse the repository at this point in the history
* switch to 1.0.0 release
  • Loading branch information
tehcyx authored and a-thaler committed Apr 26, 2019
1 parent 3eb3ecf commit 3e1a912
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ required = [

[[constraint]]
name = "github.com/kyma-project/kyma"
version = "0.9.1"
version = "1.0.0"

[[constraint]]
name = "github.com/pkg/errors"
Expand Down
8 changes: 4 additions & 4 deletions pkg/kyma/cmd/install/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The command will:
Aliases: []string{"i"},
}

cobraCmd.Flags().StringVarP(&o.ReleaseVersion, "release", "r", "0.9.1", "kyma release to use")
cobraCmd.Flags().StringVarP(&o.ReleaseVersion, "release", "r", "1.0.0", "kyma release to use")
cobraCmd.Flags().StringVarP(&o.ReleaseConfig, "config", "c", "", "URL or path to the installer configuration yaml")
cobraCmd.Flags().BoolVarP(&o.NoWait, "noWait", "n", false, "Do not wait for completion of kyma-installer")
cobraCmd.Flags().StringVarP(&o.Domain, "domain", "d", "kyma.local", "domain to use for installation")
Expand Down Expand Up @@ -712,9 +712,9 @@ func (cmd *command) patchMinikubeIP() error {
minikubeIP = strings.TrimSpace(minikubeIP)

patchMap := map[string][]string{
"configmap/application-connector-overrides": []string{"application-registry.minikubeIP"},
"configmap/assetstore-overrides": []string{"asset-store-controller-manager.minikubeIP", "test.integration.minikubeIP"},
"configmap/core-test-ui-acceptance-overrides": []string{"test.acceptance.ui.minikubeIP"},
"configmap/application-connector-overrides": []string{"application-registry.minikubeIP"},
"configmap/core-overrides": []string{"test.acceptance.ui.minikubeIP", "apiserver-proxy.minikubeIP", "configurations-generator.minikubeIP"},
"configmap/assetstore-overrides": []string{"asset-store-controller-manager.minikubeIP", "test.integration.minikubeIP"},
}
for k, v := range patchMap {
for _, pData := range v {
Expand Down

0 comments on commit 3e1a912

Please sign in to comment.