We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 499e80e commit acc8970Copy full SHA for acc8970
1 file changed
manifests/bind9/components/git-ops/Deployment.yaml
@@ -36,15 +36,15 @@ spec:
36
37
echo "Loop Start......";
38
39
- if [ ! -d /git/.git ]; then
+ if [ ! -d /git/source/.git ]; then
40
41
REPO_NAME_FULL="${SSH_REPOSITORY_HOST}/${SSH_REPOSITORY_OWNER}/${SSH_REPOSITORY_NAME}.git"
42
43
echo "Env var REPO_NAME_FULL=[${REPO_NAME_FULL}] setup";
44
45
echo "Clonning repo";
46
47
- git clone -b master ${REPO_NAME_FULL} /git;
+ git clone -b master ${REPO_NAME_FULL} /git/source;
48
49
else
50
@@ -53,7 +53,7 @@ spec:
53
git status;
54
55
echo "********************************************";
56
- cd /git;
+ cd /git/source;
57
58
echo "Checking for repo updates";
59
0 commit comments