├── .gitattributes ├── LICENSE ├── README.md ├── jobs ├── atlantis │ ├── Jenkinsfile │ ├── atlantis.groovy │ └── atlantis.nomad ├── fabio │ ├── Jenkinsfile │ ├── fabio.groovy │ └── fabio.nomad ├── hashi-ui │ ├── Jenkinsfile │ ├── hashi-ui.groovy │ └── hashi-ui.nomad └── replicator │ ├── Jenkinsfile │ ├── replicator.groovy │ └── replicator.nomad ├── util └── stop │ ├── Jenkinsfile │ └── stop.groovy └── variables ├── nonprod ├── atlantis.yaml ├── fabio.yaml ├── hashi-ui.yaml └── replicator.yaml └── prod ├── atlantis.yaml ├── fabio.yaml ├── hashi-ui.yaml └── replicator.yaml /.gitattributes: -------------------------------------------------------------------------------- 1 | *.nomad linguist-language=HCL 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/README.md -------------------------------------------------------------------------------- /jobs/atlantis/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/atlantis/Jenkinsfile -------------------------------------------------------------------------------- /jobs/atlantis/atlantis.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/atlantis/atlantis.groovy -------------------------------------------------------------------------------- /jobs/atlantis/atlantis.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/atlantis/atlantis.nomad -------------------------------------------------------------------------------- /jobs/fabio/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/fabio/Jenkinsfile -------------------------------------------------------------------------------- /jobs/fabio/fabio.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/fabio/fabio.groovy -------------------------------------------------------------------------------- /jobs/fabio/fabio.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/fabio/fabio.nomad -------------------------------------------------------------------------------- /jobs/hashi-ui/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/hashi-ui/Jenkinsfile -------------------------------------------------------------------------------- /jobs/hashi-ui/hashi-ui.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/hashi-ui/hashi-ui.groovy -------------------------------------------------------------------------------- /jobs/hashi-ui/hashi-ui.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/hashi-ui/hashi-ui.nomad -------------------------------------------------------------------------------- /jobs/replicator/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/replicator/Jenkinsfile -------------------------------------------------------------------------------- /jobs/replicator/replicator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/replicator/replicator.groovy -------------------------------------------------------------------------------- /jobs/replicator/replicator.nomad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/jobs/replicator/replicator.nomad -------------------------------------------------------------------------------- /util/stop/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/util/stop/Jenkinsfile -------------------------------------------------------------------------------- /util/stop/stop.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/util/stop/stop.groovy -------------------------------------------------------------------------------- /variables/nonprod/atlantis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/nonprod/atlantis.yaml -------------------------------------------------------------------------------- /variables/nonprod/fabio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/nonprod/fabio.yaml -------------------------------------------------------------------------------- /variables/nonprod/hashi-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/nonprod/hashi-ui.yaml -------------------------------------------------------------------------------- /variables/nonprod/replicator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/nonprod/replicator.yaml -------------------------------------------------------------------------------- /variables/prod/atlantis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/prod/atlantis.yaml -------------------------------------------------------------------------------- /variables/prod/fabio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/prod/fabio.yaml -------------------------------------------------------------------------------- /variables/prod/hashi-ui.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/prod/hashi-ui.yaml -------------------------------------------------------------------------------- /variables/prod/replicator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrasell/nomadfiles/HEAD/variables/prod/replicator.yaml --------------------------------------------------------------------------------