Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Kam D Kasravi committed Mar 6, 2019
1 parent 1676f56 commit 085c9cc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bootstrap/cmd/kfctl/cmd/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ var applyCmd = &cobra.Command{
log.Errorf("invalid resource: %v", resourceErr)
return
}
options := map[string]interface{}{}
options := map[string]interface{}{
string(kftypes.OAUTH_ID): applyCfg.GetString(string(kftypes.OAUTH_ID)),
string(kftypes.OAUTH_SECRET): applyCfg.GetString(string(kftypes.OAUTH_SECRET)),
}
kfApp, kfAppErr := loadKfApp(options)
if kfAppErr != nil {
log.Errorf("couldn't load KfApp: %v", kfAppErr)
Expand Down

0 comments on commit 085c9cc

Please sign in to comment.