Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GÉANT Service Orchestrator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
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
GÉANT Orchestration and Automation Team
GAP
GÉANT Service Orchestrator
Merge requests
!22
add custom labels to provisioning proxy input steps
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add custom labels to provisioning proxy input steps
feature/update-pp-steps
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
Karel van Klink
requested to merge
feature/update-pp-steps
into
develop
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
f3d036ce
1 commit,
1 year ago
4 files
+
84
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
gso/services/provisioning_proxy.py
+
3
−
5
Options
@@ -169,15 +169,13 @@ def deprovision_ip_trunk(subscription: Iptrunk,
@inputstep
(
'
Await provisioning proxy results
'
,
assignee
=
Assignee
(
'
SYSTEM
'
))
def
await_pp_results
(
subscription
:
SubscriptionModel
)
->
State
:
def
await_pp_results
(
subscription
:
SubscriptionModel
,
label_text
:
str
)
->
State
:
class
ProvisioningResultPage
(
FormPage
):
class
Config
:
title
=
f
'
Deploying
{
subscription
.
product
.
name
}
...
'
warning_label
:
Label
=
f
'
{
subscription
.
product
.
description
}
is being
'
\
f
'
deployed right now. Feel free to refresh
'
\
f
'
this page every now and again. Just be
'
\
f
'
sure that you do NOT click submit!
'
warning_label
:
Label
=
label_text
pp_run_results
:
dict
=
None
confirm
:
Accept
=
Accept
(
'
INCOMPLETE
'
)
Loading