Skip to content

Commit 9a8aed3

Browse files
authored
Merge pull request #15 from cisco-open/add-sign-task
Add sign task
2 parents aa593ea + 8ff170f commit 9a8aed3

File tree

6 files changed

+69
-7
lines changed

6 files changed

+69
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Catalyst SD-WAN Lab 2.0.10 [May 13, 2024]
2+
3+
- Added sign task
4+
15
# Catalyst SD-WAN Lab 2.0.10 [May 10, 2024]
26

37
- Added support for Python 3.12

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ Task indicates the operation to be performed. The following tasks are currently
7777
* [Backup](#backup-task): Backup the Catalyst SD-WAN Lab runnning in CML, including the CML topology and all its nodes, SD-WAN device states and templates / configuration groups.
7878
* [Restore](#restore-task): Restore the Catalyst SD-WAN Lab from backup, onboard and confgure control components and create basic feature templates / configuration groups. If there are any WAN Edges, automatically onboard the WAN Edges back to the SD-WAN Manager using the configuration from the backup.
7979
* [Delete](#delete-task): Delete currently running lab from CML and remove all lab data.
80+
* [Sign](#sign-task): Sign Certificate Signing Request (CSR) using SD-WAN Lab Deployment Tool Root CA
8081

8182
Task-specific parameters are provided after the task argument.
8283

@@ -96,6 +97,7 @@ Task-specific parameters are provided after the task argument.
9697
backup Backup running Catalyst SD-WAN lab pod.
9798
restore Restore Catalyst SD-WAN POD from backup.
9899
delete Delete the CML lab and all the lab data.
100+
sign Sign CSR using the SD-WAN Lab Deployment Tool Root CA.
99101
100102
optional arguments:
101103
-h, --help show this help message and exit
@@ -309,6 +311,18 @@ This task has several task-specific parameters.
309311
--lab <lab_name> Lab name
310312
--force Delete the lab without asking for confirmation. Note the all lab data will be lost!
311313

314+
### Sign Task
315+
This tasks reads the Certificate Signing Request (CSR) from a file and signs it using SD-WAN Lab Deployment Tool Root CA.
316+
At the end, the task prints the signed certificate in standard output.
317+
318+
This task has several task-specific parameters.
319+
320+
sdwan-lab delete -h
321+
usage: sdwan-lab.py sign [-h] <csr_file>
322+
323+
positional arguments:
324+
<csr_file> Certificate Signing Request (CSR) File
325+
312326
## Limitations and scale
313327
The tool supports the following scale per CML lab:
314328

catalyst_sdwan_lab/__main__.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import catalyst_sdwan_lab
2424

25-
from .tasks import add, backup, delete, deploy, restore, setup
25+
from .tasks import add, backup, delete, deploy, restore, setup, sign
2626

2727
# Setup logging
2828
log = logging.getLogger(__name__)
@@ -490,6 +490,15 @@ def main() -> None:
490490
]
491491
)
492492

493+
sign_parser = task_subparsers.add_parser(
494+
"sign", help="Sign CSR using the SD-WAN Lab Deployment Tool Root CA."
495+
)
496+
sign_parser.add_argument(
497+
"csr_file",
498+
metavar="<csr_file>",
499+
help="Certificate Signing Request (CSR) File",
500+
)
501+
493502
cli_args = main_parser.parse_args()
494503

495504
# Depending on the selected task, prompt for additional arguments (if needed).
@@ -580,6 +589,11 @@ def main() -> None:
580589
)
581590
elif cli_args.task == "delete":
582591
delete.main(cml, cli_args.lab, cli_args.force, cli_args.loglevel)
592+
elif cli_args.task == "sign":
593+
sign.main(
594+
cli_args.csr_file,
595+
cli_args.loglevel,
596+
)
583597

584598

585599
def verify_cml_version(cml: ClientLibrary) -> None:

catalyst_sdwan_lab/tasks/sign.py

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Copyright (c) 2024 Cisco Systems, Inc. and its affiliates.
2+
# Use of this source code is governed by a BSD-style
3+
# license that can be found in the LICENSE file.
4+
#
5+
# SPDX-License-Identifier: bsd
6+
from typing import Union
7+
8+
from .utils import create_cert, load_certificate_details, setup_logging, track_progress
9+
10+
11+
def main(csr_file_path: str, loglevel: Union[int, str]) -> None:
12+
13+
# Setup logging
14+
log = setup_logging(loglevel)
15+
16+
# Prepare the CA for controllers certificate signing
17+
track_progress(log, "Loading root CA details...")
18+
ca_cert, ca_key, ca_chain = load_certificate_details()
19+
20+
track_progress(log, "Loading csr from file...")
21+
with open(csr_file_path, "r") as file:
22+
csr = file.read()
23+
24+
track_progress(log, "Signing CSR...")
25+
cert = create_cert(ca_cert.encode(), ca_key.encode(), csr.encode())
26+
27+
track_progress(log, "Certificate signed: \n")
28+
print(cert.decode())
29+
30+
return

poetry.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "catalyst-sdwan-lab"
3-
version = "2.0.10"
3+
version = "2.0.11"
44
description = "Catalyst SD-WAN Lab Deployment Tool - Automation Tool for managing Cisco Catalyst SD-WAN labs inside Cisco Modeling Labs"
55
license = "BSD-3-Clause"
66
authors = ["Tomasz Zarski <[email protected]>"]
@@ -19,7 +19,7 @@ requests = "^2.28.1"
1919
pyopenssl = "^24.0.0"
2020
pyats = ">=23.1,<=24.2"
2121
passlib = "^1.7.4"
22-
jinja2 = "^3.1.3"
22+
jinja2 = "3.1.4"
2323
cisco-sdwan = "^1.23"
2424
ruamel-yaml = "^0.17.21"
2525
urllib3 = "^1.26.18"

0 commit comments

Comments
 (0)