-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11c4dab
commit 3b24213
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/zsh -eux | ||
|
||
# Creates a lessor-scoped `NOMAD_TOKEN` that can be used in conjunction with | ||
# CI/CD custom var: `NOMAD_VAR_NAMESPACE` | ||
# https://gitlab.com/internetarchive/nomad#custom-namespacing | ||
|
||
|
||
NAMESPACE=${1:?"Usage: <namespace to use, eg: appteam or default>"} | ||
|
||
|
||
# setup the policy | ||
FI=${NAMESPACE}-deploy.policy.hcl | ||
echo ' | ||
namespace "'$NAMESPACE'" { | ||
name = "'$NAMESPACE'-deploy" | ||
policy = "read" | ||
capabilities = ["submit-job", "dispatch-job", "read-logs"] | ||
} ' |tee $FI | ||
|
||
# Apply the policy | ||
nomad acl policy apply -description "$NAMESPACE deploy policy" $NAMESPACE-deploy $FI | ||
rm -fv $FI | ||
|
||
# Create the NOMAD_TOKEN | ||
nomad acl token create -name=$NAMESPACE-deploy -type=client -global=false -policy=$NAMESPACE-deploy |