Oobeya Installation Tutorial (Helm)
This guide explains how to install Oobeya on your Kubernetes cluster with Helm.
PreviousHTTPS Configuration For Docker InstallationsNextOobeya Version Upgrade for Helm Installations
Last updated
kubectl create namespace oobeyakubectl create secret docker-registry oobeya-secret \
--docker-server=https://oobeya.azurecr.io \
--docker-username=(Credentials-Name) \
--docker-password=(Your-Credentials) \
--namespace=oobeyawget https://oobeya-app.s3.us-east-1.amazonaws.com/oobeya-helm-lts.tar
tar -xvf oobeya-helm-lts.tar && cd oobeyavi (pwd)/values.yamlstorage:
mongoStorage:
pvcName: oobeya-mongo-pvc
storageClassName: local-path # StorageClass Name
size: 100Gi # Storage Size
gitwiserStorage:
enabled: true
pvcName: oobeya-gitwiser-pvc
storageClassName: local-path # StorageClass Name
size: 20Gi # Storage Size> use admindb.createUser({
user: "mongodb", # Your USERNAME
pwd: "mongodb", # Your PASSWORD
roles: [
{ role: 'readWrite', db: 'addonsDB' },
{ role: 'readWrite', db: 'admin' },
{ role: 'readWrite', db: 'gatewayDB' },
{ role: 'readWrite', db: 'agilespaceDB' },
{ role: 'readWrite', db: 'config' },
{ role: 'readWrite', db: 'dashboardDB' },
{ role: 'readWrite', db: 'devteamDB' },
{ role: 'readWrite', db: 'gitwiserDB' },
{ role: 'readWrite', db: 'uaaDB' }
]
});oobeyaExternalMongo:
isExternal: false # Set true
host: "oobeya-mongo.oobeya.svc.cluster.local" # Set your MongoDB domain or IP
port: "27017" # Set MongoDB Port
user: ""
pass: ""
authSource: "admin"
databases:
dashboard: "dashboardDB"
devteam: "devteamDB"
gitwiser: "gitwiserDB"
uaa: "uaaDB"
agilespace: "agilespaceDB"
addons: "addonsDB"
gateway: "gatewayDB"vi (pwd)/values.yaml - corsAllowedOrigin: "http://your-IP-or-Domain" - corsAllowedOrigin: "http://your-IP-or-Domain"
- gatewayBaseOrigin: "http://your-IP-or-Domain"ingressNginx:
enabled: false
className: "nginx"
host: "oobeya.local"helm lint .helm upgrade --install oobeya . \
--namespace oobeyahelm upgrade --install oobeya . \
--namespace oobeya \
--set beVersion=2.0.xxx \
--set feVersion=2.0.xxx