Nomploy Nomad Packs

← All packs

cloudbeaver v0.1.0

Dev tools

CloudBeaver — a browser-based database manager from the DBeaver team: connect to PostgreSQL, MySQL/MariaDB, SQLite, ClickHouse, and many more, and browse schemas, run SQL, and edit data. Deployed as a single host-networked Nomad service with a workspace volume.

nomad-pack run cloudbeaver --registry nomploy
1 task http 8978 1 volume image dbeaver/cloudbeaver:latest
Variables 8
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run cloudbeaver -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "cloudbeaver"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The CloudBeaver container image. Pin a tag in production.
image = "dbeaver/cloudbeaver:latest"

# Host port for the CloudBeaver web UI.
port = 8978

# Named volume for the CloudBeaver workspace — connections, users, settings (/opt/cloudbeaver/workspace).
data_volume = "cloudbeaver_data"

# Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 500
    memory = 512
  }
NameTypeDefaultDescription
job_name string
"cloudbeaver"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"dbeaver/cloudbeaver:latest"
The CloudBeaver container image. Pin a tag in production.
port number
8978
Host port for the CloudBeaver web UI.
data_volume string
"cloudbeaver_data"
Named volume for the CloudBeaver workspace — connections, users, settings (/opt/cloudbeaver/workspace).
constraints list
[]
Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 500
    memory = 512
  }
The task resources.
Readme

cloudbeaver

CloudBeaver — a browser-based database manager from the DBeaver team. Connect to PostgreSQL, MySQL/MariaDB, SQLite, ClickHouse, and many more; browse schemas, run SQL, and edit data.

Single host-networked Nomad service with a workspace volume.

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run cloudbeaver --registry=nomploy

Configure

Variable Default Description
port 8978 Web UI port.
data_volume cloudbeaver_data /opt/cloudbeaver/workspace — connections, users, settings.
image dbeaver/cloudbeaver:latest Container image. Pin a tag in production.
resources { cpu = 500, memory = 512 } Task resources.

Run the setup wizard on first visit, then add connections (a co-located postgres/mariadb/clickhouse pack is on 127.0.0.1). CloudBeaver grants broad database access — keep it internal or behind auth. Pin the job to the node holding the volume with constraints.