This repository was archived by the owner on Oct 17, 2022. It is now read-only.
forked from rkourtz/nuodb-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.1
More file actions
25 lines (18 loc) · 1.3 KB
/
help.1
File metadata and controls
25 lines (18 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
.SH DESCRIPTION
NuoDB's architecture consists of two services: Transaction Engines (TEs) and Storage Managers (SMs). The SM is responsible for providing data durability by writing the data to disk. The Community Edition (CE) container does not map volumes for persistent data. In this configuration, all data written to disk is automatically deleted when the container is shutdown.
.PP
This container image contains both the deploying script and the NuoDB containers. Setting the NODE_TYPE environment variable to "DEPLOY" will launch the NuoDB containers starting with the NuoDB Broker instance. The Broker's IP address is provided to the Storage Manager (SM) and Transaction Engine (TE) containers.
.PP
The required environment parameters are:
.B --name " - Name of the OpenShift application being deployed"
.B -e OC_ADDRESS " - The IP address of the master OpenShift node"
.B -e USERNAME " - Username to login into OpenShift via oc CLI"
.B -e PASSWORD " - Password to login into OpenShift via oc CLI"
.B -e NODE_TYPE " - NODE_TYPE should be set to DEPLOY to launch all three NuoDB nodes at the same time."
.SH Example
oc new-app docker.io/nuodbopenshift/nuodb-deployer:latest \
--name nuodb-deployer \
-e "OC_ADDRESS=172.31.17.249" \
-e "USERNAME=developer" \
-e "PASSWORD=developer" \
-e "NODE_TYPE=DEPLOY"