Skip to content

Commit

Permalink
Fix params substitution in acs-deploy-check
Browse files Browse the repository at this point in the history
Signed-off-by: Luiz Carvalho <[email protected]>
  • Loading branch information
lcarva committed Mar 1, 2024
1 parent 0549029 commit d0b057c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion task/acs-deploy-check/0.1/acs-deploy-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ spec:
env:
- name: PARAM_INSECURE_SKIP_TLS_VERIFY
value: $(params.insecure-skip-tls-verify)
- name: PARAM_GITOPS_REPO_URL
value: $(params.gitops-repo-url)
script: |
#!/usr/bin/env bash
set +x
Expand Down Expand Up @@ -88,7 +90,7 @@ spec:
echo "Using rox central endpoint ${ROX_CENTRAL_ENDPOINT}"
# Clone gitops repository
git clone $(params.gitops-repo-url) --single-branch --depth 1 gitops
git clone "${PARAM_GITOPS_REPO_URL}" --single-branch --depth 1 gitops
cd gitops
echo "Configuration"
Expand Down

0 comments on commit d0b057c

Please sign in to comment.