- play_arrow Introduction
- play_arrow Overview
- play_arrow Access and Manage Paragon Automation Account
-
- play_arrow Administration
- play_arrow Introduction
- play_arrow Organization Management
- play_arrow Site Management
- play_arrow User Management
- play_arrow Inventory Management
- play_arrow Audit Logs
-
- play_arrow Observability
- play_arrow Introduction
- play_arrow Troubleshoot Devices
- play_arrow View Network Topology
-
- play_arrow Trust and Compliance
- play_arrow Introduction
- play_arrow Manage Trust Settings and Trust Scores
- Compliance Standards Overview
- About the Compliance Benchmarks Page
- About the Compliance Tailorings Page
- Example: Create a Tailoring Document for NTP Settings
- About the Compliance Checklist Page
- Add a Checklist Template
- Add Checklist for a Device
- Import Scans and Update Rule Results in a Checklist
- Trust Plans Overview
- About the Network Score Formula Page
- Trust Score Overview
- About the Network Score Page
- About the Snapshots Page
- Add a Snapshot for a Target
- play_arrow Manage Compliance Scans
- play_arrow Manage Vulnerabilities
- play_arrow Monitor Integrity
-
- play_arrow Service Orchestration
- play_arrow Introduction
- play_arrow View Service Design Catalog
- play_arrow Manage Customers
- play_arrow Add Resources for Network Services
- play_arrow Manage Service Instances
- play_arrow Provision L3VPN Service
- play_arrow Monitor Service Order Execution Workflows
-
- play_arrow Active Assurance
- play_arrow Introduction
- play_arrow Test Agents
- play_arrow Tests and Monitors
-
- play_arrow Paragon Shell CLI Reference
- play_arrow Introduction
- play_arrow Operational Mode Commands
- file copy
- monitor
- request paragon backup
- request paragon cluster pods reset
- request paragon cluster upgrade
- request paragon config
- request paragon deploy
- request paragon deploy cluster
- request paragon destroy cluster
- request paragon fix-permission
- request paragon load
- request paragon repair-node
- request paragon replace-node
- request paragon restore
- request paragon running-config
- request paragon ssh
- request paragon ssh-key
- request paragon storage cleanup
- request paragon super-user password reset
- request system decrypt password
- request system reboot
- show configuration paragon cluster
- show host disk usage
- show paragon backup
- show paragon certificate expiry-date certificate-type
- show paragon cluster
- show paragon cluster details
- show paragon cluster namespaces
- show paragon cluster nodes
- show paragon cluster pods
- show paragon cluster pods namespace healthbot sort
- show paragon images version
- show paragon images version namespace
- show paragon pvc details
- show paragon version
- play_arrow Configuration Mode Commands
- delete paragon cluster
- load set
- set paragon cluster applications
- set paragon cluster common-services ingress
- set paragon cluster install
- set paragon cluster mail-server
- set paragon cluster nodes
- set paragon cluster ntp
- set paragon cluster papi
- set paragon cluster victoria-metrics
- set paragon monitoring
- set system login
- play_arrow Troubleshooting Commands
- Troubleshoot Using the Paragon Shell CLI Commands
- request support information
- request paragon troubleshooting information
- request paragon debug
- request paragon debug get-tsdb-data
- request paragon debug insights-kafka-data
- request paragon debug kafka
- request paragon debug logs
- request paragon debug logs namespace
- request paragon debug postgres
- request paragon debug redis
- play_arrow Service Orchestration
- About the Service Orchestration cMGD CLI
- set foghorn:core org-id
- set service design default version
- show service order status
- show service order as-json
- show service order as-yaml
- show service designs
- show device dependant configuration
- show insights configuration
- show configuration foghorn:customers
- request service project add
- request service orders sync
- request network resources load
- request service order upload
- request service order place
- request service order modify
- request service order delete
- request service order submit
- request service order provision
- request service design install
- request service design uninstall
-
Upload a Software Image
You must be either a Super User or a Network Admin to upload a software image to Paragon Automation.
Before you upload a software image, ensure that you have downloaded the required software image from the Juniper Software Download page to your local system.
To upload a software image:
Field | Description |
---|---|
Display Name | Enter or modify the software image name. The Display Name field is automatically populated with the name of the file you uploaded. If the name of the software image file uploaded does not meet the naming criteria, you can modify or enter a name. The name can contain only alphanumeric characters, hyphen, period, underscore, and the maximum length allowed is 254 characters. |
Description | Enter the description for the software image file. |
Vendor | Select the vendor of the device from the drop-down list. Paragon Automation supports only Juniper Networks devices. |
Device Series | Select the model of the device from the drop-down list. |
Release | Enter the release number of the OS. Release number indicates the minor software update that addresses bugs and performance issues within a version. For example, Junos OS Evolved 22.3R1. |
Version | Enter the version number of the OS. Version number indicates the major software update that is released every quarter of a year. For example, Junos OS 23.1. |
Expected SHA256 | Provide the expected checksum SHA256 to validate the uploaded data. The images and their SHA256 can be obtained from the Juniper Software Download page. On the Software Download page, select the device from the Find a Product box. Click and expand the Install Package section, and select the software package and checksums for the release. |
Release Notes Link | Provide the link to the release notes. You can find the link to the release notes on the Juniper Software Download page. On the Software Download page, select the device from the Find a Product box. Click and expand the Documentation and Release Notes section, and find the release notes link for the release. |
The following is a sample script to upload a software image to Paragon Automation. Enter appropriate values for:
host
—The hostname of the server from where the software image is to be uploaded to Paragon Automation.user
—The username to access the server.password
—The password to access the server.image-filename
—The name of the software image to be uploaded.path
—The path where the software image is stored on the server.
import base64 import hashlib import json import requests URL = 'https://<host>/api/v1/devicesoftware/' USER = '<user>' PASSWORD = '<password>' ORG_ID = 'ff118da5-000a-483c-91a1-45d478478548' MIN_SIZE = 5 * 1024 * 1024 FILENAME = '<image_filename>' DIRECTORY = '<path>' def file_sha(contents): h = hashlib.sha256() data = contents.read(MIN_SIZE) while data: h.update(data) data = contents.read(MIN_SIZE) return h.hexdigest() def print_sw_images(): response = requests.get(URL + ORG_ID + '/images', auth=(USER, PASSWORD), verify=False) images = decode(response) print('There are %d images' % len(images)) for img in images: print(img.get('name')) def decode(response): if response.status_code != 200: print(response.status_code) print(response.text) exit(1) return json.loads(response.text) def upload(file_name: str, data, file_sha256: str, vendor: str, series: str, release: str, version: str): headers = {'Content-Type': 'application/json'} url = URL + ORG_ID + '/upload' response = requests.post(url, auth=(USER, PASSWORD), headers=headers, verify=False, json={ 'name': file_name, 'expected_sha256': file_sha256, 'device_vendor': vendor, 'device_series_list': [series], 'release': release, 'version': version, }) r = decode(response) upload_id = r.get('id') print('Uploading %s' % upload_id) url = url + '/' + upload_id file_slice = read_min(data) while file_slice: encoded = base64.b64encode(file_slice).decode('utf-8') response = requests.put(url, auth=(USER, PASSWORD), headers=headers, verify=False, json={ 'file_data': 'data:application/octet-stream;base64,' + encoded }) msg = decode(response) print(msg) file_slice = read_min(data) response = requests.put(url, auth=(USER, PASSWORD), headers=headers, verify=False, json={ "complete": True }) msg = decode(response) print(msg) def read_min(file): ret = b'' while len(ret) < MIN_SIZE: file_slice = file.read(MIN_SIZE) ret = ret + file_slice if not file_slice: break return ret if __name__ == '__main__': print_sw_images() with open(DIRECTORY + FILENAME, 'rb') as iso: sha = file_sha(iso) print(sha) with open(DIRECTORY + FILENAME, 'rb') as iso: upload(FILENAME, iso, sha, 'Juniper', 'ACX7100', '22.2R1.12-EVO', '22.2') print_sw_images()
This requirements file can be used to install any dependencies necessary-
requests==2.28.1
Increase VM Disk Space for Software Image Upload
The default quota for image upload is limited to 25% of the total Ceph disk size divided by 3. For example, if you are using minimum recommended 50G Ceph disk space per VM, then the quota for image upload is around 16GB.
If you get a message stating that an error has occurred while uploading an image, increase the maximum size of the Ceph object Storage daemon (OSD) pool to a higher value (for example 20G ) by executing the following command in the installer node of the Paragon Automation cluster:
root@controller-1:~# kubectl patch cephobjectstore -n rook-ceph object-store --type=merge -p '{"spec": {"dataPool": {"quotas": {"maxSize": "20Gi"}}}}' cephobjectstore.ceph.rook.io/object-store patched
To confirm that the Ceph OSD pool size is increased to 20GiB, execute the following command:
root@controller-65:~# kubectl exec -ti -n rook-ceph $(kubectl get po -n rook-ceph -l app=rook-ceph-tools -o jsonpath={..metadata.name}) -- ceph osd pool get-quota object-store.rgw.buckets.data quotas for pool 'object-store.rgw.buckets.data': max objects: N/A max bytes : 20 GiB (current num bytes: 15459654543 bytes)
The max bytes
indicates the Ceph OSD pool size in GiB and bytes.
You can use the software uploaded to Paragon Automation to upgrade the image installed on devices. See Upgrade Software or Upgrade Device Image.