Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpc-factory
Manage
Activity
Members
Labels
Plan
Issues
74
Issue boards
Milestones
Wiki
Code
Merge requests
13
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rc
hpc-factory
Commits
d10875b8
Commit
d10875b8
authored
7 months ago
by
Bo-Chun Chen
Browse files
Options
Downloads
Patches
Plain Diff
fix: add missing semicolon
parent
3e3aa063
No related branches found
Branches containing commit
No related tags found
2 merge requests
!130
Feat remove resource autocreation
,
!117
This MR merges the feat-hpc-factory branch, which was focused on building and deploying proxy images for the COD cluster.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
with
2 additions
and
2 deletions
.gitlab-ci.yml
+
2
−
2
View file @
d10875b8
...
@@ -161,7 +161,7 @@ deploy_http_proxy_node:
...
@@ -161,7 +161,7 @@ deploy_http_proxy_node:
cmd+=" --security-group webserver_sec_group"
cmd+=" --security-group webserver_sec_group"
cmd+=" --security-group allow-ssh"
cmd+=" --security-group allow-ssh"
cmd+=" --user-data user_data.txt"
cmd+=" --user-data user_data.txt"
if [ -n $HTTP_PROXY_PORT ];then cmd+=" --port $HTTP_PROXY_PORT" fi
if [ -n $HTTP_PROXY_PORT ];then cmd+=" --port $HTTP_PROXY_PORT"
;
fi
cmd+=" --wait $HTTP_PROXY_INSTANCE_NAME"
cmd+=" --wait $HTTP_PROXY_INSTANCE_NAME"
-
export HTTP_PROXY_INSTANCE_ID=$(bash -c "$cmd")
-
export HTTP_PROXY_INSTANCE_ID=$(bash -c "$cmd")
-
|
-
|
...
@@ -199,7 +199,7 @@ deploy_ssh_proxy_node:
...
@@ -199,7 +199,7 @@ deploy_ssh_proxy_node:
cmd+=" --network $PROXY_NETWORK"
cmd+=" --network $PROXY_NETWORK"
cmd+=" --security-group allow-ssh"
cmd+=" --security-group allow-ssh"
cmd+=" --user-data user_data.txt"
cmd+=" --user-data user_data.txt"
if [ -n $SSH_PROXY_PORT ];then cmd+=" --port $SSH_PROXY_PORT" fi
if [ -n $SSH_PROXY_PORT ];then cmd+=" --port $SSH_PROXY_PORT"
;
fi
cmd+=" --wait $SSH_PROXY_INSTANCE_NAME"
cmd+=" --wait $SSH_PROXY_INSTANCE_NAME"
-
export SSH_PROXY_INSTANCE_ID=$(bash -c "$cmd")
-
export SSH_PROXY_INSTANCE_ID=$(bash -c "$cmd")
-
|
-
|
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment