caddy-tlsnomad
Caddy TLS Certmagic support for Nomad Variables
File Explorer
- docker-image.yml
- FUNDING.yml
- .gitignore
- config.go
- Dockerfile
- errors.go
- go.mod
- go.sum
- License
- module.go
- README.md
- storage.go
- storage_test.go
- storagedata.go
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
nomad
View Details ▼
nomad
Distributed, highly available, datacenter-aware scheduler.
nomad node status
Show the status of nodes in the cluster:
nomad job validate {{path/to/file.nomad}}
Validate a job file:
nomad job plan {{path/to/file.nomad}}
Plan a job for execution on the cluster:
timeout
View Details ▼
timeout
Run a command with a time limit.
timeout 3s sleep 10
Run `sleep 10` and terminate it after 3 seconds:
timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}
Send a signal to the command after the time limit expires (`TERM` by default, `kill -l` to list all signals):
timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{command}}
Send verbose output to `stderr` showing signal sent upon timeout:
