Skip to content

Instantly share code, notes, and snippets.

@gogiel
Created June 28, 2018 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gogiel/c863a0e14302a93f0e9cdcf8aa1e3042 to your computer and use it in GitHub Desktop.
Save gogiel/c863a0e14302a93f0e9cdcf8aa1e3042 to your computer and use it in GitHub Desktop.
Rails databases setup on Kubernetes using Helm
releases:
- name: redis-sandbox
chart: stable/redis
values:
- redis.yml
- name: postgres-sandbox
chart: stable/postgresql
values:
- postgres.yml
postgresPassword: 7pFEZORRHG
resources:
limits:
cpu: 0.5
memory: 512M
requests:
cpu: 0
memory: 128M
master:
persistence:
enabled: false
resources:
limits:
cpu: 0.5
memory: 128M
requests:
cpu: 0
memory: 32M
cluster:
enabled: false
usePassword: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment