Nomploy Nomad Packs

← All packs

cyberchef v0.1.0

Dev tools

CyberChef — the "cyber swiss-army knife": a web app for encryption, encoding, compression, and data analysis with hundreds of composable operations. Deployed as a stateless host-networked Nomad service (runs client-side).

nomad-pack run cyberchef --registry nomploy
1 task http 8095 image mpepping/cyberchef:latest
Variables 8
values.hcl

Save as values.hcl, edit, then run:

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

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

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

# The CyberChef container image (nginx serving the built app). Pin a tag in production.
image = "mpepping/cyberchef:latest"

# Host port for the web app. Default 8095 (the image serves on nginx internally; this pack rebinds it via a rendered nginx config).
port = 8095

# Number of instances (stateless, so >1 is fine on distinct ports/nodes).
count = 1

# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 200
    memory = 128
  }
NameTypeDefaultDescription
job_name string
"cyberchef"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"mpepping/cyberchef:latest"
The CyberChef container image (nginx serving the built app). Pin a tag in production.
port number
8095
Host port for the web app. Default 8095 (the image serves on nginx internally; this pack rebinds it via a rendered nginx config).
count number
1
Number of instances (stateless, so >1 is fine on distinct ports/nodes).
constraints list
[]
Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 200
    memory = 128
  }
The task resources.
Readme

cyberchef

CyberChef — the "cyber swiss-army knife": a web app for encryption/decryption, encoding, compression, and data analysis, built from hundreds of composable operations you chain into a "recipe". Stateless host-networked Nomad service; everything runs client-side.

Usage

nomad-pack registry add nomploy github.com/Nomploy/nomad-packs
nomad-pack run cyberchef --registry nomploy

In nomploy: create a Compose service, type Nomad Pack, pack cyberchef, custom registry github.com/Nomploy/nomad-packs, then Deploy.

Open http://<node-ip>:8095.

Key variables

Variable Default Notes
image mpepping/cyberchef:latest Pin a tag in production.
port 8095 Web app host port (rebinds nginx via a rendered config).
count 1 Stateless, so >1 is fine on distinct ports/nodes.
resources cpu 200 / mem 128 Lightweight.

Notes