File tree Expand file tree Collapse file tree
on-prem-installers/onprem Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767 DOCKERHUB_TOKEN : ${{ inputs.docker_password }}
6868 DOCKERHUB_USERNAME : ${{ inputs.docker_username }}
6969 DEPLOYMENT_TYPE : ${{ inputs.deployment_type }}
70+ DEPLOY_REPO_BRANCH : ${{ github.sha }}
7071 shell : bash
7172 run : |
7273 set +x
Original file line number Diff line number Diff line change 5757 TF_VAR_docker_username : ${{ inputs.docker_username }}
5858 TF_VAR_docker_password : ${{ inputs.docker_password }}
5959 KUBECONFIG : ${{ github.workspace }}/terraform/orchestrator/files/kubeconfig
60+ TF_VAR_deploy_repo_branch : ${{ github.sha }}
6061 shell : bash
6162 run : mage deploy:onPrem
6263
Original file line number Diff line number Diff line change 3838 clusterDomain: ${ CLUSTER_DOMAIN}
3939
4040 ## Argo CD configs
41- utilsRepoURL: "https://github.com/open-edge-platform/orch-utils"
42- utilsRepoRevision: ${ UTILS_REPO_BRANCH}
4341 deployRepoURL: "https://github.com/open-edge-platform/edge-manageability-framework"
4442 deployRepoRevision: ${ DEPLOY_REPO_BRANCH}
4543
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ export DEPLOY_VERSION=v2026.0.0
2121export ORCH_INSTALLER_PROFILE=onprem
2222
2323# Git Repositories Configuration
24- export UTILS_REPO_BRANCH=" main"
2524export DEPLOY_REPO_BRANCH=" main"
2625
2726# =============================================================================
Original file line number Diff line number Diff line change @@ -304,7 +304,6 @@ resource "null_resource" "copy_files" {
304304 " bash -c 'source /home/ubuntu/functions.sh; update_config_variable /home/ubuntu/onprem.env OXM_PXE_SERVER_INT ${ var . oxm_pxe_server_int } '" ,
305305 " bash -c 'source /home/ubuntu/functions.sh; update_config_variable /home/ubuntu/onprem.env OXM_PXE_SERVER_IP ${ var . oxm_pxe_server_ip } '" ,
306306 " bash -c 'source /home/ubuntu/functions.sh; update_config_variable /home/ubuntu/onprem.env OXM_PXE_SERVER_SUBNET ${ var . oxm_pxe_server_subnet } '" ,
307- " bash -c 'source /home/ubuntu/functions.sh; update_config_variable /home/ubuntu/onprem.env UTILS_REPO_BRANCH ${ var . utils_repo_branch } '" ,
308307 " bash -c 'source /home/ubuntu/functions.sh; update_config_variable /home/ubuntu/onprem.env DEPLOY_REPO_BRANCH ${ var . deploy_repo_branch } '" ,
309308 " cat /home/ubuntu/onprem.env" ,
310309 " echo 'onprem.env updated successfully'"
Original file line number Diff line number Diff line change @@ -326,12 +326,6 @@ variable "git_proxy" {
326326 default = " "
327327}
328328
329- variable "utils_repo_branch" {
330- type = string
331- description = " The branch of the utils repository to use."
332- default = " main"
333- }
334-
335329variable "deploy_repo_branch" {
336330 type = string
337331 description = " The branch of the deploy repository to use."
You can’t perform that action at this time.
0 commit comments