Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add job for hashi-at-home consul and nomad secrets #145

Merged
merged 4 commits into from
Jun 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions consul-snapshot.nomad

This file was deleted.

75 changes: 75 additions & 0 deletions hah-snapshot.nomad
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# A job to retrieve a consul token from Vault.
job "hah-state-backup" {
datacenters = ["dc1"]
type = "batch"
periodic {
crons = ["1-59/15 * * * * *"]
prohibit_overlap = false
}
group "all" {
count = 1
network {}
vault {
env = true
}
restart {
attempts = 0
}
task "snapshot" {
# Get a vault token so that we can read consul creds
template {
data = <<-EOH
#!/bin/env bash
PATH=${HOME}/.local/bin:${PATH}
source ${NOMAD_SECRETS_DIR}/env
echo Nomad addr: ${NOMAD_ADDR}
ecoh
# Generate Consul Snapshot
curl -v \
-X GET \
-H "X-Consul-Token: ${CONSUL_HTTP_TOKEN}" \
http://localhost:8500/v1/snapshot \
> ${NOMAD_ALLOC_DIR}/data/consul_$(date --iso-8601=date).snap

# Generate Nomad snapshot
curl -v \
-X GET \
-H "X-Nomad-Token: ${NOMAD_TOKEN}" \
${NOMAD_ADDR}/v1/operator/snapshot \
> ${NOMAD_ALLOC_DIR}/data/nomad_$(date --iso-8601=date).snap

# Get the playbook
curl -X GET \
-H "Accept: applicaton/vnd.github+json" \
-H "Authorization: Bearer ${GITHUB_TOKEN}" \
-H "X-Github-Api-Version: 2022-11-28" \
https://api.github.com/repos/brucellino/personal-automation/contents/playbooks/backup-state.yml \
| jq -r .content \
| base64 -d > playbook.yml
pip install --user ansible boto3 botocore
ansible-playbook -c local -i localhost, playbook.yml
EOH
destination = "local/start.sh"
perms = "777"
}
template {
data = <<-EOH
CONSUL_HTTP_TOKEN="{{ with secret "hashi_at_home/creds/cluster-role" }}{{ .Data.token }}{{ end }}"
CONSUL_HTTP_ADDR=http://localhost:8500
GITHUB_TOKEN="{{ with secret "/github_personal_tokens/token" "repositories=personal-automation"
"installation_id=44668070"}}{{ .Data.token }}{{ end }}"
NOMAD_ADDR={{ with service "http.nomad" }}{{ with index . 0 }}http://{{ .Address }}:{{ .Port }}{{ end }}{{ end }}
NOMAD_TOKEN="{{ with secret "nomad/creds/mgmt" }}{{ .Data.secret_id }}{{ end }}"
VAULT_ADDR={{ range service "vault" }}http://{{ .Address }}:{{ .Port }}{{- end }}
EOH
destination = "${NOMAD_SECRETS_DIR}/env"
perms = "400"
env = true
}
driver = "exec"
config {
command = "local/start.sh"
}
}
}
}