trustgraph/templates/patterns/pulsar-manager.jsonnet
cybermaggedon f7a30006ad
Make templating work more flexibly (#44)
* Restructure directory
* Config loading
* Variable override points in JSONNET templates, separate pulsar-manager template
* Bump version
* Tidy chunking
* Simplified prompt overrides
* Update config loader
* Fix recursive chunker template
2024-08-30 17:47:35 +01:00

21 lines
709 B
Jsonnet

{
pattern: {
name: "pulsar-manager",
icon: "🏻🛃",
title: "Add Pulsar Manager",
description: "Adds Pulsar Manager which provides a web interface to manage Pulsar. Pulsar Manager is a large container and deployment requiring over 1GB of RAM, so is not deployed by default. This is not a required component, it may be useful to help manage a large operational deployment.",
requires: ["pulsar"],
features: ["pulsar-manager"],
args: [
{
name: "default-admin-password",
type: "string",
width: 20,
description: "Admin password to apply",
default: "pulsaradmin",
required: true,
}
]
},
module: "components/pulsar.jsonnet",
}