An open API service indexing awesome lists of open source software.

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

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
```