https://github.com/radanalyticsio/winemap-data-loader
This is a python s2i that loads the wine review data into a postgesql pod on openshift
https://github.com/radanalyticsio/winemap-data-loader
Last synced: 9 months ago
JSON representation
This is a python s2i that loads the wine review data into a postgesql pod on openshift
- Host: GitHub
- URL: https://github.com/radanalyticsio/winemap-data-loader
- Owner: radanalyticsio
- Created: 2017-11-09T14:20:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-25T15:27:32.000Z (about 8 years ago)
- Last Synced: 2025-04-10T21:16:03.718Z (about 1 year ago)
- Language: Python
- Size: 1.68 MB
- Stars: 0
- Watchers: 0
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# winemap-data-loader
Creates a postgresql container on OpenShift and then loads wine review data from a data loader image as a kubernetes [job](http://kubernetesbyexample.com/jobs/)
```sh
oc cluster up
oc new-project winemap
oc new-app --template=postgresql-persistent \
-p POSTGRESQL_USER=username \
-p POSTGRESQL_PASSWORD=password \
-p POSTGRESQL_DATABASE=wineDb
```
```sh
oc create -f https://raw.githubusercontent.com/radanalyticsio/winemap-data-loader/master/wine-data-loader.yaml
oc new-app --template=wine-data-loader
```