Skip to content

slack/workflow-demo-multi

Repository files navigation

Setup

# install postgres into namespace `services`
helm install --name postgres --namespace services kubernetes-charts/postgresql --set postgresUser=demo-app,postgresPassword=secret,postgresDatabase=demo-app

# install redis into namespace `services`
helm install --name redis --namespace services kubernetes-charts/redis --set redisPassword=redisSecret

# create application in workflow
deis create demo-app

# configure application to use postgres
deis config:set DATABASE_URL="postgres://demo-app:[email protected]/demo-app"

# configure application to use redis
deis config:set REDIS_URL="redis://:[email protected]"

# configure application to use custom buildpack
deis config:set BUILDPACK_URL="https://github.com/slack/heroku-buildpack-ruby.git#env-from-files"

# push the application
git push deis master

# setup the database
deis run bundle exec rake db:migrate

# scale up worker count
deis scale sidekiq=1

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published