-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add helper script and self-submodule
- Loading branch information
Showing
4 changed files
with
12 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "src/datalab"] | ||
path = src/datalab | ||
url = [email protected]:the-grey-group/datalab | ||
[submodule "src/datalab-ansible-terraform"] | ||
path = src/datalab-ansible-terraform | ||
url = [email protected]:datalab-industries/datalab-ansible-terraform |
Submodule datalab
updated
from 95d599 to aecdc3
Submodule datalab-ansible-terraform
added at
7f1a85
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,7 @@ | ||
#!/bin/bash | ||
set -e -u -o pipefail | ||
commit=$(cd src/datalab-ansible-terraform && git describe --tags) | ||
rsync --exclude vaults --exclude inventory.yml -avr src/datalab-ansible-terraform/ansible . | ||
git add -p ansible | ||
git add $(git ls-files ansible --others --exclude-standard) | ||
git commit ansible -p -m "Sync with upstream definitions from datalab-ansible-terraform $commit" |