Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
a80c17cc
Commit
a80c17cc
authored
Nov 15, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI: Remove useless parameter
parent
5f1219bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
ci-scripts/cls_cluster.py
ci-scripts/cls_cluster.py
+1
-1
ci-scripts/main.py
ci-scripts/main.py
+1
-1
No files found.
ci-scripts/cls_cluster.py
View file @
a80c17cc
...
...
@@ -240,7 +240,7 @@ class Cluster:
def
_undeploy_pod
(
self
,
filename
):
self
.
cmd
.
run
(
f'oc delete -f
{
filename
}
'
)
def
PullClusterImage
(
self
,
HTML
,
RAN
):
def
PullClusterImage
(
self
,
HTML
):
if
self
.
testSvrId
==
None
:
self
.
testSvrId
=
self
.
eNBIPAddress
if
self
.
imageToPull
==
''
:
HELP
.
GenericHelp
(
CONST
.
Version
)
...
...
ci-scripts/main.py
View file @
a80c17cc
...
...
@@ -410,7 +410,7 @@ def ExecuteActionWithParam(action):
string_field
=
test
.
findtext
(
'test_svr_id'
)
if
(
string_field
is
not
None
):
CLUSTER
.
testSvrId
=
string_field
success
=
CLUSTER
.
PullClusterImage
(
HTML
,
RAN
)
success
=
CLUSTER
.
PullClusterImage
(
HTML
)
else
:
logging
.
warning
(
f"unknown action
{
action
}
, skip step"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment