Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Boeing OpenEdX Data Pipeline
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CS 5934 Team 2 (Blacksburg)
Boeing OpenEdX Data Pipeline
Compare revisions
663458a5ffd3217a5a0eb1ee1fd5473ef8316d74 to e0a694434e6e8713f051a9fcdd67fcf554908249
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
boeing-capstone-project-a/boeing-openedx-data-pipeline
Select target project
No results found
e0a694434e6e8713f051a9fcdd67fcf554908249
Select Git revision
Branches
main
Swap
Target
boeing-capstone-project-a/boeing-openedx-data-pipeline
Select target project
boeing-capstone-project-a/boeing-openedx-data-pipeline
1 result
663458a5ffd3217a5a0eb1ee1fd5473ef8316d74
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Automate pipeline container removal and fix yaml issue
· a28045ce
Chris Lattman
authored
1 year ago
a28045ce
Merge branch 'easy-restart' into 'main'
· e0a69443
Sydney May
authored
1 year ago
Automate pipeline container removal and fix yaml issue See merge request
!8
e0a69443
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
init-pipeline.sh
+2
-1
2 additions, 1 deletion
init-pipeline.sh
plugin/pipeline-plugin.py
+3
-3
3 additions, 3 deletions
plugin/pipeline-plugin.py
with
5 additions
and
4 deletions
init-pipeline.sh
View file @
e0a69443
#!/bin/bash
docker
rm
-f
tutor-pipeline
mkdir
-p
"
$(
tutor plugins printroot
)
"
/
cp
plugin/pipeline-plugin.py
"
$(
tutor plugins printroot
)
"
/
tutor plugins
enable
pipeline-plugin
...
...
@@ -7,4 +8,4 @@ cp "$(tutor config printroot)"/config.yml "$(tutor plugins printroot)"/templates
cp
service/
*
"
$(
tutor plugins printroot
)
"
/templates/pipeline-plugin/build/pipeline/
tutor config save
tutor images build pipeline
tutor
local
run
-dp
12345:12345/tcp pipeline
\ No newline at end of file
tutor
local
run
--name
tutor-pipeline
-dp
12345:12345/tcp pipeline
\ No newline at end of file
This diff is collapsed.
Click to expand it.
plugin/pipeline-plugin.py
View file @
e0a69443
...
...
@@ -21,8 +21,8 @@ hooks.Filters.ENV_PATCHES.add_item(
(
"
local-docker-compose-services
"
,
"""
pipeline:
image: pipeline:latest
"""
pipeline:
image: pipeline:latest
"""
)
)
This diff is collapsed.
Click to expand it.