Skip to content

rfatolahzade/ParseChart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parse Evolution

Parse Evolution

Steps to change any docker-compose file to helm chart:

Table and Content

Quick Start

Take a look to values file:

git clone https://github.com/rfinland/ParseChart.git
cd ParseChart/charts/parse
nano values.yaml 

As default:

appId: 'MyParseApp'          #Parse appID 
masterkey: 'adminadmin'      #Parse masterkey 
url: '{YOUR Parse url}'      #YOUR Parse url 


postgresql:          
  username: postgres         #postgresql username
  password: postgres1        #postgresql password
  database: postgres         #postgresql database
  data_dir: '/ParesDatabase' #postgresql data directory mounted to default data dir


dashboard: 
  enabled: true               #True if you need the parse dashboard 
  username: user              #dashboard username if you enabled dashboard 
  password: user              #dashboard password if you enabled dashboard 
  url: {YOUR Dashboard url}   #YOUR Dashboard url

https: true                   #Enabling https

certmanager:                  #If you want to use cert-manager as tls connected to letsencrypt
  enabled: false              #If true certs and issuer will create as your urls for parse and dashboard
  

Helming!

helm install parse . -f values.yaml 

If you have your own certs(server.crt,server.key) based on your urls:

kubectl create secret generic parse-tls --from-file=tls.crt=./server.crt --from-file=tls.key=./server.key 

You have to set name of secret inside values file. If you want to use cert-manager and letsencrypt just enable certmanager inside values yaml file:

certmanager:          
  enabled: true

Here you go.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published