-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make it easier for others to re-run gitops scripts
This should make it much easier for others to re-run the scripts by making the paths relative.
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 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 |
---|---|---|
|
@@ -48,8 +48,7 @@ To avoid defining many environment variables we'll simplify by creating an | |
place it where we've cloned understack. A complete file would like like | ||
|
||
```bash title="/path/to/uc-deploy/my-k3s.env" | ||
UC_REPO="$HOME/devel/understack" | ||
UC_DEPLOY="$HOME/devel/uc-deploy" | ||
UC_DEPLOY="$(pwd)/$(dirname ${BASH_SOURCE[0]})" | ||
DEPLOY_NAME="my-k3s" | ||
[email protected]:myorg/uc-deploy.git | ||
UC_DEPLOY_SSH_FILE="$HOME/devel/uc-deploy-key" | ||
|
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
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