├── .copywrite.hcl ├── .github ├── pull_request_template.md ├── scripts │ ├── files-to-identifiers.sh │ └── version-from-identifier.sh └── workflows │ ├── copywrite.yml │ ├── notify-integration-release.yml │ └── validate-packs.yml ├── .gitignore ├── LICENSE ├── README.md ├── ci └── validate.sh ├── packs ├── alertmanager │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── alertmanager.nomad.tpl │ └── variables.hcl ├── aws_ebs_csi │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _constraints.tpl │ │ ├── _location.tpl │ │ ├── _resources.tpl │ │ ├── controller.nomad.tpl │ │ └── node.nomad.tpl │ └── variables.hcl ├── aws_efs_csi │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ └── aws-efs-csi-nodes.nomad.tpl │ └── variables.hcl ├── backstage │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── backstage.nomad.tpl │ └── variables.hcl ├── boundary │ ├── .ci │ │ └── vars-required.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── boundary.nomad.tpl │ └── variables.hcl ├── caddy │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── caddy.nomad.tpl │ └── variables.hcl ├── ceph │ ├── CHANGELOG.md │ ├── README.md │ ├── config │ │ ├── bad.json │ │ ├── ceph.conf │ │ ├── good.json │ │ └── stdout.log │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _config.tpl │ │ ├── _constraints.tpl │ │ ├── _location.tpl │ │ ├── _resources.tpl │ │ └── ceph.nomad.tpl │ └── variables.hcl ├── ceph_rbd_csi │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _constraints.tpl │ │ ├── _location.tpl │ │ ├── _resources.tpl │ │ ├── controller.nomad.tpl │ │ └── node.nomad.tpl │ └── variables.hcl ├── chaotic_ngine │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── chaotic_ngine.nomad.tpl │ └── variables.hcl ├── csi_openstack_cinder │ ├── .ci │ │ └── vars-required.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── cloud.conf.example │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── csi_openstack_cinder.nomad.tpl │ └── variables.hcl ├── ctfd │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── ctfd.nomad.tpl │ └── variables.hcl ├── democratic_csi_nfs │ ├── .ci │ │ └── vars-required.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _constraints.tpl │ │ ├── _helpers.tpl │ │ ├── _location.tpl │ │ ├── _plugin_config_file.tpl │ │ ├── _resources.tpl │ │ ├── controller.nomad.tpl │ │ └── node.nomad.tpl │ └── variables.hcl ├── drone │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── drone.nomad.tpl │ └── variables.hcl ├── faasd │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── faasd.nomad.tpl │ ├── variables.hcl │ └── vars.nomad ├── fabio │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── fabio.nomad.tpl │ └── variables.hcl ├── grafana │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── grafana.nomad.tpl │ └── variables.hcl ├── haproxy │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── haproxy.nomad.tpl │ └── variables.hcl ├── hashicups │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ └── hashicups.nomad.tpl │ └── variables.hcl ├── hello_world │ ├── .ci │ │ └── vars-options.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── hello_world.nomad.tpl │ └── variables.hcl ├── influxdb │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── influxdb.nomad.tpl │ ├── variables.hcl │ └── vars.nomad ├── jaeger │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── jaeger.nomad.tpl │ └── variables.hcl ├── jenkins │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ ├── vars.nomad │ │ ├── vars_cloud.nomad │ │ └── vars_jasc.nomad │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── jenkins.nomad.tpl │ └── variables.hcl ├── kibana │ ├── CHANGELOG.md │ ├── README.md │ ├── kibana.yml │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── kibana.nomad.tpl │ ├── variables.hcl │ └── vars.nomad ├── loki │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── loki.nomad.tpl │ └── variables.hcl ├── nextcloud │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── nextcloud.nomad.tpl │ └── variables.hcl ├── nginx │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── nginx.nomad.tpl │ └── variables.hcl ├── nomad_autoscaler │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── nomad_autoscaler.nomad.tpl │ └── variables.hcl ├── nomad_ingress_nginx │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── _nginx_conf.tpl │ │ └── nginx.nomad.tpl │ └── variables.hcl ├── opentelemetry_collector │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ ├── basic.hcl │ │ ├── privileged.hcl │ │ ├── traefik_vars.hcl │ │ └── with_traefik.hcl │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── opentelemetry_collector.nomad.tpl │ └── variables.hcl ├── outline │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── outline.nomad.tpl │ └── variables.hcl ├── prometheus │ ├── CHANGELOG.md │ ├── README.md │ ├── alerts_vars.nomad │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── prometheus.nomad.tpl │ └── variables.hcl ├── prometheus_consul_exporter │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── prometheus_consul_exporter.nomad.tpl │ └── variables.hcl ├── prometheus_node_exporter │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── prometheus_node_exporter.nomad.tpl │ └── variables.hcl ├── prometheus_snmp_exporter │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── prometheus_snmp_exporter.nomad.tpl │ └── variables.hcl ├── promtail │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── promtail.nomad.tpl │ └── variables.hcl ├── rabbitmq │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _consulservices.tpl │ │ ├── _helpers.tpl │ │ ├── _pki.tpl │ │ ├── _rabbitenv.tpl │ │ └── rabbit.nomad.tpl │ └── variables.hcl ├── redis │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── redis.nomad.tpl │ └── variables.hcl ├── signoz │ ├── .ci │ │ └── vars-required.hcl │ ├── README.md │ ├── configs │ │ ├── clickhouse │ │ │ ├── cluster.xml │ │ │ ├── config.xml │ │ │ ├── custom-function.xml │ │ │ ├── storage.xml │ │ │ └── users.xml │ │ └── signoz │ │ │ └── otel-collector-config.yaml │ ├── metadata.hcl │ ├── outputs.tpl │ ├── setup.sh │ ├── specs │ │ ├── password.nv.hcl │ │ ├── policy.hcl │ │ ├── volume-clickhouse.hcl │ │ ├── volume-signoz.hcl │ │ └── volume-zookeeper.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── clickhouse.nomad.tpl │ │ ├── otel-collector.nomad.tpl │ │ ├── schema-migrator-async.nomad.tpl │ │ ├── schema-migrator-sync.nomad.tpl │ │ └── signoz-app.nomad.tpl │ └── variables.hcl ├── simple_service │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── simple_service.nomad.tpl │ └── variables.hcl ├── sonarqube │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── sonarqube.nomad.tpl │ └── variables.hcl ├── tempo │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── tempo.nomad.tpl │ └── variables.hcl ├── tfc_agent │ ├── .ci │ │ └── vars-required.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── tfc_agent.nomad.tpl │ └── variables.hcl ├── tfe_fdo_nomad │ ├── .ci │ │ └── vars-required.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── tfe.agent.nomad.tpl │ │ └── tfe.nomad.tpl │ └── variables.hcl ├── traefik │ ├── CHANGELOG.md │ ├── README.md │ ├── examples │ │ └── traefik.hcl │ ├── metadata.hcl │ ├── outputs.tpl │ ├── templates │ │ ├── _helpers.tpl │ │ └── traefik.nomad.tpl │ └── variables.hcl ├── vector │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ │ ├── _helpers.tpl │ │ └── vector.nomad.tpl │ └── variables.hcl └── wordpress │ ├── CHANGELOG.md │ ├── README.md │ ├── metadata.hcl │ ├── templates │ ├── _helpers.tpl │ └── wordpress.nomad.tpl │ └── variables.hcl └── scripts ├── fixem.sh ├── update-parser-v2.sh └── validate.sh /.copywrite.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.copywrite.hcl -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/files-to-identifiers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/scripts/files-to-identifiers.sh -------------------------------------------------------------------------------- /.github/scripts/version-from-identifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/scripts/version-from-identifier.sh -------------------------------------------------------------------------------- /.github/workflows/copywrite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/workflows/copywrite.yml -------------------------------------------------------------------------------- /.github/workflows/notify-integration-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/workflows/notify-integration-release.yml -------------------------------------------------------------------------------- /.github/workflows/validate-packs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/.github/workflows/validate-packs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | rendered/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/README.md -------------------------------------------------------------------------------- /ci/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/ci/validate.sh -------------------------------------------------------------------------------- /packs/alertmanager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/CHANGELOG.md -------------------------------------------------------------------------------- /packs/alertmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/README.md -------------------------------------------------------------------------------- /packs/alertmanager/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/metadata.hcl -------------------------------------------------------------------------------- /packs/alertmanager/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/outputs.tpl -------------------------------------------------------------------------------- /packs/alertmanager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/alertmanager/templates/alertmanager.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/templates/alertmanager.nomad.tpl -------------------------------------------------------------------------------- /packs/alertmanager/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/alertmanager/variables.hcl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/CHANGELOG.md -------------------------------------------------------------------------------- /packs/aws_ebs_csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/README.md -------------------------------------------------------------------------------- /packs/aws_ebs_csi/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/metadata.hcl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/outputs.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/templates/_constraints.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/templates/_constraints.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/templates/_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/templates/_location.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/templates/_resources.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/templates/controller.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/templates/controller.nomad.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/templates/node.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/templates/node.nomad.tpl -------------------------------------------------------------------------------- /packs/aws_ebs_csi/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_ebs_csi/variables.hcl -------------------------------------------------------------------------------- /packs/aws_efs_csi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_efs_csi/CHANGELOG.md -------------------------------------------------------------------------------- /packs/aws_efs_csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_efs_csi/README.md -------------------------------------------------------------------------------- /packs/aws_efs_csi/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_efs_csi/metadata.hcl -------------------------------------------------------------------------------- /packs/aws_efs_csi/outputs.tpl: -------------------------------------------------------------------------------- 1 | AWS EFS CSI nodes successfully deployed. 2 | -------------------------------------------------------------------------------- /packs/aws_efs_csi/templates/aws-efs-csi-nodes.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_efs_csi/templates/aws-efs-csi-nodes.nomad.tpl -------------------------------------------------------------------------------- /packs/aws_efs_csi/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/aws_efs_csi/variables.hcl -------------------------------------------------------------------------------- /packs/backstage/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/CHANGELOG.md -------------------------------------------------------------------------------- /packs/backstage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/README.md -------------------------------------------------------------------------------- /packs/backstage/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/metadata.hcl -------------------------------------------------------------------------------- /packs/backstage/outputs.tpl: -------------------------------------------------------------------------------- 1 | Congrats! You deployed the backstage pack on Nomad. 2 | -------------------------------------------------------------------------------- /packs/backstage/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/backstage/templates/backstage.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/templates/backstage.nomad.tpl -------------------------------------------------------------------------------- /packs/backstage/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/backstage/variables.hcl -------------------------------------------------------------------------------- /packs/boundary/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/boundary/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/CHANGELOG.md -------------------------------------------------------------------------------- /packs/boundary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/README.md -------------------------------------------------------------------------------- /packs/boundary/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/metadata.hcl -------------------------------------------------------------------------------- /packs/boundary/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/outputs.tpl -------------------------------------------------------------------------------- /packs/boundary/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/boundary/templates/boundary.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/templates/boundary.nomad.tpl -------------------------------------------------------------------------------- /packs/boundary/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/boundary/variables.hcl -------------------------------------------------------------------------------- /packs/caddy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/CHANGELOG.md -------------------------------------------------------------------------------- /packs/caddy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/README.md -------------------------------------------------------------------------------- /packs/caddy/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/metadata.hcl -------------------------------------------------------------------------------- /packs/caddy/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/outputs.tpl -------------------------------------------------------------------------------- /packs/caddy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/caddy/templates/caddy.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/templates/caddy.nomad.tpl -------------------------------------------------------------------------------- /packs/caddy/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/caddy/variables.hcl -------------------------------------------------------------------------------- /packs/ceph/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/CHANGELOG.md -------------------------------------------------------------------------------- /packs/ceph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/README.md -------------------------------------------------------------------------------- /packs/ceph/config/bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/config/bad.json -------------------------------------------------------------------------------- /packs/ceph/config/ceph.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/config/ceph.conf -------------------------------------------------------------------------------- /packs/ceph/config/good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/config/good.json -------------------------------------------------------------------------------- /packs/ceph/config/stdout.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/config/stdout.log -------------------------------------------------------------------------------- /packs/ceph/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/metadata.hcl -------------------------------------------------------------------------------- /packs/ceph/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/outputs.tpl -------------------------------------------------------------------------------- /packs/ceph/templates/_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/templates/_config.tpl -------------------------------------------------------------------------------- /packs/ceph/templates/_constraints.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/templates/_constraints.tpl -------------------------------------------------------------------------------- /packs/ceph/templates/_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/templates/_location.tpl -------------------------------------------------------------------------------- /packs/ceph/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/templates/_resources.tpl -------------------------------------------------------------------------------- /packs/ceph/templates/ceph.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/templates/ceph.nomad.tpl -------------------------------------------------------------------------------- /packs/ceph/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph/variables.hcl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/CHANGELOG.md -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/README.md -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/metadata.hcl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/outputs.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/templates/_constraints.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/templates/_constraints.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/templates/_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/templates/_location.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/templates/_resources.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/templates/controller.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/templates/controller.nomad.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/templates/node.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/templates/node.nomad.tpl -------------------------------------------------------------------------------- /packs/ceph_rbd_csi/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ceph_rbd_csi/variables.hcl -------------------------------------------------------------------------------- /packs/chaotic_ngine/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/CHANGELOG.md -------------------------------------------------------------------------------- /packs/chaotic_ngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/README.md -------------------------------------------------------------------------------- /packs/chaotic_ngine/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/metadata.hcl -------------------------------------------------------------------------------- /packs/chaotic_ngine/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/outputs.tpl -------------------------------------------------------------------------------- /packs/chaotic_ngine/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/chaotic_ngine/templates/chaotic_ngine.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/templates/chaotic_ngine.nomad.tpl -------------------------------------------------------------------------------- /packs/chaotic_ngine/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/chaotic_ngine/variables.hcl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/CHANGELOG.md -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/README.md -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/cloud.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/cloud.conf.example -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/metadata.hcl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/outputs.tpl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/templates/csi_openstack_cinder.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/templates/csi_openstack_cinder.nomad.tpl -------------------------------------------------------------------------------- /packs/csi_openstack_cinder/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/csi_openstack_cinder/variables.hcl -------------------------------------------------------------------------------- /packs/ctfd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/CHANGELOG.md -------------------------------------------------------------------------------- /packs/ctfd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/README.md -------------------------------------------------------------------------------- /packs/ctfd/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/metadata.hcl -------------------------------------------------------------------------------- /packs/ctfd/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/outputs.tpl -------------------------------------------------------------------------------- /packs/ctfd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/ctfd/templates/ctfd.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/templates/ctfd.nomad.tpl -------------------------------------------------------------------------------- /packs/ctfd/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/ctfd/variables.hcl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/CHANGELOG.md -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/README.md -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/metadata.hcl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/outputs.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/_constraints.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/_constraints.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/_location.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/_location.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/_plugin_config_file.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/_plugin_config_file.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/_resources.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/_resources.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/controller.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/controller.nomad.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/templates/node.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/templates/node.nomad.tpl -------------------------------------------------------------------------------- /packs/democratic_csi_nfs/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/democratic_csi_nfs/variables.hcl -------------------------------------------------------------------------------- /packs/drone/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/CHANGELOG.md -------------------------------------------------------------------------------- /packs/drone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/README.md -------------------------------------------------------------------------------- /packs/drone/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/metadata.hcl -------------------------------------------------------------------------------- /packs/drone/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/drone/templates/drone.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/templates/drone.nomad.tpl -------------------------------------------------------------------------------- /packs/drone/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/drone/variables.hcl -------------------------------------------------------------------------------- /packs/faasd/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/CHANGELOG.md -------------------------------------------------------------------------------- /packs/faasd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/README.md -------------------------------------------------------------------------------- /packs/faasd/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/metadata.hcl -------------------------------------------------------------------------------- /packs/faasd/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/outputs.tpl -------------------------------------------------------------------------------- /packs/faasd/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/faasd/templates/faasd.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/templates/faasd.nomad.tpl -------------------------------------------------------------------------------- /packs/faasd/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/variables.hcl -------------------------------------------------------------------------------- /packs/faasd/vars.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/faasd/vars.nomad -------------------------------------------------------------------------------- /packs/fabio/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/CHANGELOG.md -------------------------------------------------------------------------------- /packs/fabio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/README.md -------------------------------------------------------------------------------- /packs/fabio/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/metadata.hcl -------------------------------------------------------------------------------- /packs/fabio/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/outputs.tpl -------------------------------------------------------------------------------- /packs/fabio/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/fabio/templates/fabio.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/templates/fabio.nomad.tpl -------------------------------------------------------------------------------- /packs/fabio/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/fabio/variables.hcl -------------------------------------------------------------------------------- /packs/grafana/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/CHANGELOG.md -------------------------------------------------------------------------------- /packs/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/README.md -------------------------------------------------------------------------------- /packs/grafana/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/metadata.hcl -------------------------------------------------------------------------------- /packs/grafana/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/outputs.tpl -------------------------------------------------------------------------------- /packs/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/grafana/templates/grafana.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/templates/grafana.nomad.tpl -------------------------------------------------------------------------------- /packs/grafana/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/grafana/variables.hcl -------------------------------------------------------------------------------- /packs/haproxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/CHANGELOG.md -------------------------------------------------------------------------------- /packs/haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/README.md -------------------------------------------------------------------------------- /packs/haproxy/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/metadata.hcl -------------------------------------------------------------------------------- /packs/haproxy/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/outputs.tpl -------------------------------------------------------------------------------- /packs/haproxy/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/haproxy/templates/haproxy.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/templates/haproxy.nomad.tpl -------------------------------------------------------------------------------- /packs/haproxy/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/haproxy/variables.hcl -------------------------------------------------------------------------------- /packs/hashicups/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/CHANGELOG.md -------------------------------------------------------------------------------- /packs/hashicups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/README.md -------------------------------------------------------------------------------- /packs/hashicups/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/metadata.hcl -------------------------------------------------------------------------------- /packs/hashicups/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/outputs.tpl -------------------------------------------------------------------------------- /packs/hashicups/templates/hashicups.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/templates/hashicups.nomad.tpl -------------------------------------------------------------------------------- /packs/hashicups/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hashicups/variables.hcl -------------------------------------------------------------------------------- /packs/hello_world/.ci/vars-options.hcl: -------------------------------------------------------------------------------- 1 | # Copyright (c) HashiCorp, Inc. 2 | # SPDX-License-Identifier: MPL-2.0 3 | 4 | register_service = true 5 | -------------------------------------------------------------------------------- /packs/hello_world/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/CHANGELOG.md -------------------------------------------------------------------------------- /packs/hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/README.md -------------------------------------------------------------------------------- /packs/hello_world/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/metadata.hcl -------------------------------------------------------------------------------- /packs/hello_world/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/outputs.tpl -------------------------------------------------------------------------------- /packs/hello_world/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/hello_world/templates/hello_world.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/templates/hello_world.nomad.tpl -------------------------------------------------------------------------------- /packs/hello_world/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/hello_world/variables.hcl -------------------------------------------------------------------------------- /packs/influxdb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/CHANGELOG.md -------------------------------------------------------------------------------- /packs/influxdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/README.md -------------------------------------------------------------------------------- /packs/influxdb/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/metadata.hcl -------------------------------------------------------------------------------- /packs/influxdb/outputs.tpl: -------------------------------------------------------------------------------- 1 | Congrats on deploying [[ meta "pack.name" . ]]. 2 | -------------------------------------------------------------------------------- /packs/influxdb/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/influxdb/templates/influxdb.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/templates/influxdb.nomad.tpl -------------------------------------------------------------------------------- /packs/influxdb/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/variables.hcl -------------------------------------------------------------------------------- /packs/influxdb/vars.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/influxdb/vars.nomad -------------------------------------------------------------------------------- /packs/jaeger/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/CHANGELOG.md -------------------------------------------------------------------------------- /packs/jaeger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/README.md -------------------------------------------------------------------------------- /packs/jaeger/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/metadata.hcl -------------------------------------------------------------------------------- /packs/jaeger/outputs.tpl: -------------------------------------------------------------------------------- 1 | Jaeger successfully deployed. 2 | -------------------------------------------------------------------------------- /packs/jaeger/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/jaeger/templates/jaeger.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/templates/jaeger.nomad.tpl -------------------------------------------------------------------------------- /packs/jaeger/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jaeger/variables.hcl -------------------------------------------------------------------------------- /packs/jenkins/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/CHANGELOG.md -------------------------------------------------------------------------------- /packs/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/README.md -------------------------------------------------------------------------------- /packs/jenkins/examples/vars.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/examples/vars.nomad -------------------------------------------------------------------------------- /packs/jenkins/examples/vars_cloud.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/examples/vars_cloud.nomad -------------------------------------------------------------------------------- /packs/jenkins/examples/vars_jasc.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/examples/vars_jasc.nomad -------------------------------------------------------------------------------- /packs/jenkins/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/metadata.hcl -------------------------------------------------------------------------------- /packs/jenkins/outputs.tpl: -------------------------------------------------------------------------------- 1 | Congrats on deploying [[ meta "pack.name" . ]]. 2 | -------------------------------------------------------------------------------- /packs/jenkins/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/jenkins/templates/jenkins.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/templates/jenkins.nomad.tpl -------------------------------------------------------------------------------- /packs/jenkins/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/jenkins/variables.hcl -------------------------------------------------------------------------------- /packs/kibana/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/CHANGELOG.md -------------------------------------------------------------------------------- /packs/kibana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/README.md -------------------------------------------------------------------------------- /packs/kibana/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/kibana.yml -------------------------------------------------------------------------------- /packs/kibana/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/metadata.hcl -------------------------------------------------------------------------------- /packs/kibana/outputs.tpl: -------------------------------------------------------------------------------- 1 | Congrats on deploying [[ meta "pack.name" . ]]. 2 | -------------------------------------------------------------------------------- /packs/kibana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/kibana/templates/kibana.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/templates/kibana.nomad.tpl -------------------------------------------------------------------------------- /packs/kibana/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/variables.hcl -------------------------------------------------------------------------------- /packs/kibana/vars.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/kibana/vars.nomad -------------------------------------------------------------------------------- /packs/loki/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/CHANGELOG.md -------------------------------------------------------------------------------- /packs/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/README.md -------------------------------------------------------------------------------- /packs/loki/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/metadata.hcl -------------------------------------------------------------------------------- /packs/loki/outputs.tpl: -------------------------------------------------------------------------------- 1 | Loki successfully deployed. 2 | -------------------------------------------------------------------------------- /packs/loki/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/loki/templates/loki.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/templates/loki.nomad.tpl -------------------------------------------------------------------------------- /packs/loki/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/loki/variables.hcl -------------------------------------------------------------------------------- /packs/nextcloud/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/CHANGELOG.md -------------------------------------------------------------------------------- /packs/nextcloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/README.md -------------------------------------------------------------------------------- /packs/nextcloud/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/metadata.hcl -------------------------------------------------------------------------------- /packs/nextcloud/outputs.tpl: -------------------------------------------------------------------------------- 1 | NextCloud deployed successfully. 2 | -------------------------------------------------------------------------------- /packs/nextcloud/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/nextcloud/templates/nextcloud.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/templates/nextcloud.nomad.tpl -------------------------------------------------------------------------------- /packs/nextcloud/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nextcloud/variables.hcl -------------------------------------------------------------------------------- /packs/nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/CHANGELOG.md -------------------------------------------------------------------------------- /packs/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/README.md -------------------------------------------------------------------------------- /packs/nginx/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/metadata.hcl -------------------------------------------------------------------------------- /packs/nginx/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/outputs.tpl -------------------------------------------------------------------------------- /packs/nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/nginx/templates/nginx.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/templates/nginx.nomad.tpl -------------------------------------------------------------------------------- /packs/nginx/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nginx/variables.hcl -------------------------------------------------------------------------------- /packs/nomad_autoscaler/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/CHANGELOG.md -------------------------------------------------------------------------------- /packs/nomad_autoscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/README.md -------------------------------------------------------------------------------- /packs/nomad_autoscaler/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/metadata.hcl -------------------------------------------------------------------------------- /packs/nomad_autoscaler/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/nomad_autoscaler/templates/nomad_autoscaler.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/templates/nomad_autoscaler.nomad.tpl -------------------------------------------------------------------------------- /packs/nomad_autoscaler/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_autoscaler/variables.hcl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/CHANGELOG.md -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/README.md -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/metadata.hcl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/outputs.tpl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/templates/_nginx_conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/templates/_nginx_conf.tpl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/templates/nginx.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/templates/nginx.nomad.tpl -------------------------------------------------------------------------------- /packs/nomad_ingress_nginx/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/nomad_ingress_nginx/variables.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/CHANGELOG.md -------------------------------------------------------------------------------- /packs/opentelemetry_collector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/README.md -------------------------------------------------------------------------------- /packs/opentelemetry_collector/examples/basic.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/examples/basic.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/examples/privileged.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/examples/privileged.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/examples/traefik_vars.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/examples/traefik_vars.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/examples/with_traefik.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/examples/with_traefik.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/metadata.hcl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/templates/opentelemetry_collector.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/templates/opentelemetry_collector.nomad.tpl -------------------------------------------------------------------------------- /packs/opentelemetry_collector/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/opentelemetry_collector/variables.hcl -------------------------------------------------------------------------------- /packs/outline/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/CHANGELOG.md -------------------------------------------------------------------------------- /packs/outline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/README.md -------------------------------------------------------------------------------- /packs/outline/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/metadata.hcl -------------------------------------------------------------------------------- /packs/outline/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/outline/templates/outline.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/templates/outline.nomad.tpl -------------------------------------------------------------------------------- /packs/outline/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/outline/variables.hcl -------------------------------------------------------------------------------- /packs/prometheus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/CHANGELOG.md -------------------------------------------------------------------------------- /packs/prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/README.md -------------------------------------------------------------------------------- /packs/prometheus/alerts_vars.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/alerts_vars.nomad -------------------------------------------------------------------------------- /packs/prometheus/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/metadata.hcl -------------------------------------------------------------------------------- /packs/prometheus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/prometheus/templates/prometheus.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/templates/prometheus.nomad.tpl -------------------------------------------------------------------------------- /packs/prometheus/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus/variables.hcl -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/CHANGELOG.md -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/README.md -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/metadata.hcl -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/outputs.tpl -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/templates/prometheus_consul_exporter.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/templates/prometheus_consul_exporter.nomad.tpl -------------------------------------------------------------------------------- /packs/prometheus_consul_exporter/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_consul_exporter/variables.hcl -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/CHANGELOG.md -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/README.md -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/metadata.hcl -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/templates/prometheus_node_exporter.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/templates/prometheus_node_exporter.nomad.tpl -------------------------------------------------------------------------------- /packs/prometheus_node_exporter/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_node_exporter/variables.hcl -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/CHANGELOG.md -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/README.md -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/metadata.hcl -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/templates/prometheus_snmp_exporter.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/templates/prometheus_snmp_exporter.nomad.tpl -------------------------------------------------------------------------------- /packs/prometheus_snmp_exporter/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/prometheus_snmp_exporter/variables.hcl -------------------------------------------------------------------------------- /packs/promtail/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/CHANGELOG.md -------------------------------------------------------------------------------- /packs/promtail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/README.md -------------------------------------------------------------------------------- /packs/promtail/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/metadata.hcl -------------------------------------------------------------------------------- /packs/promtail/outputs.tpl: -------------------------------------------------------------------------------- 1 | Promtail successfully deployed. 2 | -------------------------------------------------------------------------------- /packs/promtail/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/promtail/templates/promtail.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/templates/promtail.nomad.tpl -------------------------------------------------------------------------------- /packs/promtail/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/promtail/variables.hcl -------------------------------------------------------------------------------- /packs/rabbitmq/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/CHANGELOG.md -------------------------------------------------------------------------------- /packs/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/README.md -------------------------------------------------------------------------------- /packs/rabbitmq/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/metadata.hcl -------------------------------------------------------------------------------- /packs/rabbitmq/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/outputs.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/templates/_consulservices.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/templates/_consulservices.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/templates/_pki.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/templates/_pki.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/templates/_rabbitenv.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/templates/_rabbitenv.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/templates/rabbit.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/templates/rabbit.nomad.tpl -------------------------------------------------------------------------------- /packs/rabbitmq/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/rabbitmq/variables.hcl -------------------------------------------------------------------------------- /packs/redis/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/CHANGELOG.md -------------------------------------------------------------------------------- /packs/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/README.md -------------------------------------------------------------------------------- /packs/redis/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/metadata.hcl -------------------------------------------------------------------------------- /packs/redis/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/outputs.tpl -------------------------------------------------------------------------------- /packs/redis/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/redis/templates/redis.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/templates/redis.nomad.tpl -------------------------------------------------------------------------------- /packs/redis/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/redis/variables.hcl -------------------------------------------------------------------------------- /packs/signoz/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/signoz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/README.md -------------------------------------------------------------------------------- /packs/signoz/configs/clickhouse/cluster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/clickhouse/cluster.xml -------------------------------------------------------------------------------- /packs/signoz/configs/clickhouse/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/clickhouse/config.xml -------------------------------------------------------------------------------- /packs/signoz/configs/clickhouse/custom-function.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/clickhouse/custom-function.xml -------------------------------------------------------------------------------- /packs/signoz/configs/clickhouse/storage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/clickhouse/storage.xml -------------------------------------------------------------------------------- /packs/signoz/configs/clickhouse/users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/clickhouse/users.xml -------------------------------------------------------------------------------- /packs/signoz/configs/signoz/otel-collector-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/configs/signoz/otel-collector-config.yaml -------------------------------------------------------------------------------- /packs/signoz/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/metadata.hcl -------------------------------------------------------------------------------- /packs/signoz/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/outputs.tpl -------------------------------------------------------------------------------- /packs/signoz/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/setup.sh -------------------------------------------------------------------------------- /packs/signoz/specs/password.nv.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/specs/password.nv.hcl -------------------------------------------------------------------------------- /packs/signoz/specs/policy.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/specs/policy.hcl -------------------------------------------------------------------------------- /packs/signoz/specs/volume-clickhouse.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/specs/volume-clickhouse.hcl -------------------------------------------------------------------------------- /packs/signoz/specs/volume-signoz.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/specs/volume-signoz.hcl -------------------------------------------------------------------------------- /packs/signoz/specs/volume-zookeeper.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/specs/volume-zookeeper.hcl -------------------------------------------------------------------------------- /packs/signoz/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/signoz/templates/clickhouse.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/clickhouse.nomad.tpl -------------------------------------------------------------------------------- /packs/signoz/templates/otel-collector.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/otel-collector.nomad.tpl -------------------------------------------------------------------------------- /packs/signoz/templates/schema-migrator-async.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/schema-migrator-async.nomad.tpl -------------------------------------------------------------------------------- /packs/signoz/templates/schema-migrator-sync.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/schema-migrator-sync.nomad.tpl -------------------------------------------------------------------------------- /packs/signoz/templates/signoz-app.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/templates/signoz-app.nomad.tpl -------------------------------------------------------------------------------- /packs/signoz/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/signoz/variables.hcl -------------------------------------------------------------------------------- /packs/simple_service/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/CHANGELOG.md -------------------------------------------------------------------------------- /packs/simple_service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/README.md -------------------------------------------------------------------------------- /packs/simple_service/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/metadata.hcl -------------------------------------------------------------------------------- /packs/simple_service/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/outputs.tpl -------------------------------------------------------------------------------- /packs/simple_service/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/simple_service/templates/simple_service.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/templates/simple_service.nomad.tpl -------------------------------------------------------------------------------- /packs/simple_service/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/simple_service/variables.hcl -------------------------------------------------------------------------------- /packs/sonarqube/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/CHANGELOG.md -------------------------------------------------------------------------------- /packs/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/README.md -------------------------------------------------------------------------------- /packs/sonarqube/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/metadata.hcl -------------------------------------------------------------------------------- /packs/sonarqube/outputs.tpl: -------------------------------------------------------------------------------- 1 | Congrats on deploying [[ meta "pack.name" . ]]. 2 | -------------------------------------------------------------------------------- /packs/sonarqube/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/sonarqube/templates/sonarqube.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/templates/sonarqube.nomad.tpl -------------------------------------------------------------------------------- /packs/sonarqube/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/sonarqube/variables.hcl -------------------------------------------------------------------------------- /packs/tempo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/CHANGELOG.md -------------------------------------------------------------------------------- /packs/tempo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/README.md -------------------------------------------------------------------------------- /packs/tempo/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/metadata.hcl -------------------------------------------------------------------------------- /packs/tempo/outputs.tpl: -------------------------------------------------------------------------------- 1 | Tempo successfully deployed. 2 | -------------------------------------------------------------------------------- /packs/tempo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/tempo/templates/tempo.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/templates/tempo.nomad.tpl -------------------------------------------------------------------------------- /packs/tempo/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tempo/variables.hcl -------------------------------------------------------------------------------- /packs/tfc_agent/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/tfc_agent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/CHANGELOG.md -------------------------------------------------------------------------------- /packs/tfc_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/README.md -------------------------------------------------------------------------------- /packs/tfc_agent/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/metadata.hcl -------------------------------------------------------------------------------- /packs/tfc_agent/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/outputs.tpl -------------------------------------------------------------------------------- /packs/tfc_agent/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/tfc_agent/templates/tfc_agent.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/templates/tfc_agent.nomad.tpl -------------------------------------------------------------------------------- /packs/tfc_agent/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfc_agent/variables.hcl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/.ci/vars-required.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/.ci/vars-required.hcl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/CHANGELOG.md -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/README.md -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/metadata.hcl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/outputs.tpl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/templates/tfe.agent.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/templates/tfe.agent.nomad.tpl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/templates/tfe.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/templates/tfe.nomad.tpl -------------------------------------------------------------------------------- /packs/tfe_fdo_nomad/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/tfe_fdo_nomad/variables.hcl -------------------------------------------------------------------------------- /packs/traefik/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/CHANGELOG.md -------------------------------------------------------------------------------- /packs/traefik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/README.md -------------------------------------------------------------------------------- /packs/traefik/examples/traefik.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/examples/traefik.hcl -------------------------------------------------------------------------------- /packs/traefik/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/metadata.hcl -------------------------------------------------------------------------------- /packs/traefik/outputs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/outputs.tpl -------------------------------------------------------------------------------- /packs/traefik/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/traefik/templates/traefik.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/templates/traefik.nomad.tpl -------------------------------------------------------------------------------- /packs/traefik/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/traefik/variables.hcl -------------------------------------------------------------------------------- /packs/vector/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/CHANGELOG.md -------------------------------------------------------------------------------- /packs/vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/README.md -------------------------------------------------------------------------------- /packs/vector/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/metadata.hcl -------------------------------------------------------------------------------- /packs/vector/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/vector/templates/vector.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/templates/vector.nomad.tpl -------------------------------------------------------------------------------- /packs/vector/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/vector/variables.hcl -------------------------------------------------------------------------------- /packs/wordpress/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/CHANGELOG.md -------------------------------------------------------------------------------- /packs/wordpress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/README.md -------------------------------------------------------------------------------- /packs/wordpress/metadata.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/metadata.hcl -------------------------------------------------------------------------------- /packs/wordpress/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/templates/_helpers.tpl -------------------------------------------------------------------------------- /packs/wordpress/templates/wordpress.nomad.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/templates/wordpress.nomad.tpl -------------------------------------------------------------------------------- /packs/wordpress/variables.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/packs/wordpress/variables.hcl -------------------------------------------------------------------------------- /scripts/fixem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/scripts/fixem.sh -------------------------------------------------------------------------------- /scripts/update-parser-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/scripts/update-parser-v2.sh -------------------------------------------------------------------------------- /scripts/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/nomad-pack-community-registry/HEAD/scripts/validate.sh --------------------------------------------------------------------------------