https://github.com/orange-cloudfoundry/admin-ui-configurer
Wrap admin-ui to make it runnable simply as a cloud foundry app
https://github.com/orange-cloudfoundry/admin-ui-configurer
Last synced: 2 months ago
JSON representation
Wrap admin-ui to make it runnable simply as a cloud foundry app
- Host: GitHub
- URL: https://github.com/orange-cloudfoundry/admin-ui-configurer
- Owner: orange-cloudfoundry
- License: apache-2.0
- Created: 2017-06-22T15:39:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-22T17:15:20.000Z (about 9 years ago)
- Last Synced: 2024-06-20T16:47:32.859Z (about 2 years ago)
- Language: Go
- Size: 854 KB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Admin-ui-configurer
Wrap [admin-ui](https://github.com/cloudfoundry-incubator/admin-ui) to make it runnable simply as a cloud foundry app.
## Deploy
1. Download latest `admin-ui-configurer-bundled.zip` in [release page](https://github.com/orange-cloudfoundry/admin-ui-configurer/releases)
2. Create a mysql service on your cloud foundry where you want to deploy the app (e.g.: `cf cs p-mysql 100mb admin-ui-mysql`)
3. Create an uaa client for your admin-ui, e.g.:
```
uaac client add admin_ui_client \
--authorities clients.write,cloud_controller.admin,cloud_controller.read,cloud_controller.write,doppler.firehose,openid,scim.read,scim.write,sps.write \
--authorized_grant_types authorization_code,client_credentials,refresh_token \
--autoapprove true \
--scope admin_ui.admin,admin_ui.user,openid \
-s myclientsecret
```
4. Extract the previous downloaded zip file and set `manifest.yml` and `config.json` as you want
5. Push your config as a service with this command `cf cups admin-ui-config -p config.json`
6. Deploy by running `cf push`