Skip to content

Commit

Permalink
Merge pull request #9 from SAP/kerenlahav-patch-1
Browse files Browse the repository at this point in the history
Update util.go
  • Loading branch information
kerenlahav authored Oct 9, 2022
2 parents 33543d3 + f9b8b93 commit a7f371e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This document describes the process to migrate a registered Kubernetes platform,
--namespace=sap-btp-operator \
--set manager.secret.clientid=<clientid> \
--set manager.secret.clientsecret=<clientsecret> \
--set manager.secret.url=<sm_url> \
--set manager.secret.sm_url=<sm_url> \
--set manager.secret.tokenurl=<url> \
--set cluster.id=<clusterID>
```
Expand Down
2 changes: 1 addition & 1 deletion migrate/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ func GetSMClient(ctx context.Context, secret *v1.Secret) sm.Client {
return sm.NewClient(ctx, &sm.ClientConfig{
ClientID: string(secretData["clientid"]),
ClientSecret: string(secretData["clientsecret"]),
URL: string(secretData["url"]),
URL: string(secretData["sm_url"]),
TokenURL: string(secretData["tokenurl"]),
SSLDisabled: false,
}, nil)
Expand Down

0 comments on commit a7f371e

Please sign in to comment.