Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1286cb7fdd | ||
|
|
43d891968e | ||
|
|
24fb31427e | ||
|
|
4f9475825b |
@@ -18,7 +18,9 @@ env:
|
||||
# body cap. PULL uses the public hostname (HTTPS). Same Gitea registry.
|
||||
REGISTRY_PUSH: 192.168.0.2:1234
|
||||
REGISTRY_PULL: git.jpaul.io
|
||||
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
# Image name resolved at runtime from $GITHUB_REPOSITORY (see the "Resolve
|
||||
# repo identity" step). github.event.repository.name is empty on non-
|
||||
# workflow_dispatch events in Gitea, so it's avoided (matches refresh.yml).
|
||||
# Two GPU-pinned Ollama containers on the Gitea host — same infra
|
||||
# zerto-docs uses. :11435 = Titan X, :11436 = 1080 Ti. Indexer
|
||||
# round-robins per batch.
|
||||
@@ -38,6 +40,15 @@ jobs:
|
||||
# Full history so digest-history can walk git log.
|
||||
fetch-depth: 0
|
||||
|
||||
# Derive owner/repo from $GITHUB_REPOSITORY (set on all event types),
|
||||
# not github.event.repository.name (empty on non-dispatch events).
|
||||
- name: Resolve repo identity
|
||||
id: repo
|
||||
run: |
|
||||
echo "owner=${GITHUB_REPOSITORY%%/*}" >> "$GITHUB_OUTPUT"
|
||||
echo "name=${GITHUB_REPOSITORY##*/}" >> "$GITHUB_OUTPUT"
|
||||
echo "resolved repo identity: ${GITHUB_REPOSITORY}"
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
@@ -95,14 +106,14 @@ jobs:
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: 192.168.0.2:1234/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
images: 192.168.0.2:1234/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
tags: |
|
||||
type=raw,value=latest
|
||||
type=sha,prefix=,format=short
|
||||
type=raw,value={{date 'YYYY.MM.DD'}}
|
||||
labels: |
|
||||
org.opencontainers.image.source=https://git.jpaul.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
org.opencontainers.image.url=https://git.jpaul.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
org.opencontainers.image.source=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
org.opencontainers.image.url=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
|
||||
- name: Build & push (amd64)
|
||||
uses: docker/build-push-action@v6
|
||||
@@ -117,8 +128,8 @@ jobs:
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
OWNER="${{ github.repository_owner }}"
|
||||
PKG="${{ github.event.repository.name }}"
|
||||
OWNER="${{ steps.repo.outputs.owner }}"
|
||||
PKG="${{ steps.repo.outputs.name }}"
|
||||
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
||||
@@ -135,7 +146,7 @@ jobs:
|
||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
python scripts/registry_gc.py \
|
||||
--owner "${{ github.repository_owner }}" \
|
||||
--package "${{ github.event.repository.name }}" \
|
||||
--owner "${{ steps.repo.outputs.owner }}" \
|
||||
--package "${{ steps.repo.outputs.name }}" \
|
||||
--keep-days 90 \
|
||||
--keep-latest 5
|
||||
|
||||
@@ -25,9 +25,11 @@ env:
|
||||
REGISTRY_PUSH: 192.168.0.2:1234
|
||||
REGISTRY_PULL: git.jpaul.io
|
||||
|
||||
# Image name derives from the repo at runtime — clones don't need to
|
||||
# edit this. github.* is the Gitea-Actions inherited namespace.
|
||||
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
# Image name is derived at runtime by the "Resolve repo identity" step
|
||||
# from $GITHUB_REPOSITORY. Do NOT use github.event.repository.name — Gitea
|
||||
# leaves it EMPTY on schedule events (only workflow_dispatch populates it),
|
||||
# which produced invalid tags like ".../justin/:latest" and failed the
|
||||
# weekly cron build. $GITHUB_REPOSITORY is set on every event type.
|
||||
|
||||
# Two GPU-pinned Ollama containers on the Gitea host — same infra
|
||||
# zerto-docs uses (deploy/ollama-rag.docker-compose.yml over there).
|
||||
@@ -67,6 +69,16 @@ jobs:
|
||||
# commits back. Persist them across the run.
|
||||
token: ${{ secrets.GITEA_TOKEN }}
|
||||
|
||||
# Derive owner/repo from $GITHUB_REPOSITORY (set on ALL event types),
|
||||
# NOT from github.event.repository.name (empty on schedule events in
|
||||
# Gitea). Everything downstream references these outputs.
|
||||
- name: Resolve repo identity
|
||||
id: repo
|
||||
run: |
|
||||
echo "owner=${GITHUB_REPOSITORY%%/*}" >> "$GITHUB_OUTPUT"
|
||||
echo "name=${GITHUB_REPOSITORY##*/}" >> "$GITHUB_OUTPUT"
|
||||
echo "resolved repo identity: ${GITHUB_REPOSITORY}"
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
@@ -187,7 +199,7 @@ jobs:
|
||||
with:
|
||||
# Tag with the LAN hostname so the push goes over LAN.
|
||||
# docker-compose on the deploy host pulls via git.jpaul.io.
|
||||
images: 192.168.0.2:1234/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
images: 192.168.0.2:1234/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
tags: |
|
||||
type=raw,value=latest
|
||||
type=sha,prefix=,format=short
|
||||
@@ -196,8 +208,8 @@ jobs:
|
||||
# Override auto-derived labels with the PUBLIC URL so Gitea
|
||||
# can auto-link the package back to this repo.
|
||||
labels: |
|
||||
org.opencontainers.image.source=https://git.jpaul.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
org.opencontainers.image.url=https://git.jpaul.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
||||
org.opencontainers.image.source=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
org.opencontainers.image.url=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||
|
||||
- name: Build & push (amd64)
|
||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||
@@ -219,8 +231,8 @@ jobs:
|
||||
env:
|
||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
OWNER="${{ github.repository_owner }}"
|
||||
PKG="${{ github.event.repository.name }}"
|
||||
OWNER="${{ steps.repo.outputs.owner }}"
|
||||
PKG="${{ steps.repo.outputs.name }}"
|
||||
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
||||
@@ -239,7 +251,7 @@ jobs:
|
||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||
run: |
|
||||
python scripts/registry_gc.py \
|
||||
--owner "${{ github.repository_owner }}" \
|
||||
--package "${{ github.event.repository.name }}" \
|
||||
--owner "${{ steps.repo.outputs.owner }}" \
|
||||
--package "${{ steps.repo.outputs.name }}" \
|
||||
--keep-days 90 \
|
||||
--keep-latest 5
|
||||
|
||||
+20
-2
@@ -115,11 +115,11 @@
|
||||
"platform": null,
|
||||
"product": "User Manual",
|
||||
"language": "en-US",
|
||||
"page_count": 623,
|
||||
"page_count": 631,
|
||||
"mode": "toc",
|
||||
"abstract": "",
|
||||
"dates": {
|
||||
"Published": "May 2026"
|
||||
"Published": "July 2026"
|
||||
},
|
||||
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008014en_us",
|
||||
@@ -176,5 +176,23 @@
|
||||
"landing_page": "sf000111242en_us",
|
||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sf000111242en_us",
|
||||
"ocr": true
|
||||
},
|
||||
{
|
||||
"slug": "morpheus_release_notes_9_0_1",
|
||||
"doc_id": "sd00008269en_us",
|
||||
"title": "v9.0.1 Release Notes",
|
||||
"version": "9.0.1",
|
||||
"platform": null,
|
||||
"product": "Release Notes",
|
||||
"language": "en-US",
|
||||
"page_count": 1,
|
||||
"mode": "single",
|
||||
"abstract": "Release notes for HPE Morpheus Enterprise Software version v9.0.1",
|
||||
"dates": {
|
||||
"Published": "July 2026"
|
||||
},
|
||||
"landing_page": "sd00008269en_us",
|
||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008269en_us",
|
||||
"ocr": false
|
||||
}
|
||||
]
|
||||
|
||||
File diff suppressed because one or more lines are too long
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "0051276464b1f16e4303b59d1147179c0b2183a90793a372a1a712e315add586",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-39DE1887-6BEA-45F1-B234-9F2921BD663A-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DISPLAY NAME | USERNAME | EMAIL | ROLE |\n|--------------|----------|-------|------|\n| | | | Morpheus Admin, Sub Account Admin, Subtenant Multirole |\n| | | | Sub Account Admin |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "015d2e50c87122dc63e3762665ed57542b09345e947da13d822657f05116af0f",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-496FBC66-FFC3-4D76-B3D1-F0E4F31A838D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Column 1 | Column 2 | Column 3 |\n|----------|----------|-----------|\n| Cloud: MVM | Host (Hypervisor): ah-mvm-01 | Resource Pool: ah-docs-cluster |\n| Instance : ah-mvm-ubuntu-03 | VM Type : Ubuntu 18.04 | Type: Managed VM |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "01667188389538148d8a0a8ed915fce1f4556e3b7929426f00c4b1cac16f4030",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-25AEAFA2-3766-4411-9796-FCCD26396206-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DETAILS | USE EXISTING | EXISTING OPTION TYPE |\n|---------|--------------|----------------------|\n| | Yes | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "01d665df21179144ba6253dc9dd08304455f6a594327db6d56e93bcea05bc34f",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8506AA86-13D4-4086-B361-5C5AB0CFC5E9-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Volume ### | Ltr | Label | Fs | Type | Size | Status | Info |\n|-------------|-----|-------------|-----|----------|--------|-----------|-----------|\n| Volume 0 | D | VMware Tool | CDFS| DVD-ROM | 126 MB | Healthy | |\n| Volume 1 | | | NTFS| Partition| 89 GB | Healthy | |\n| Volume 2 | | | FAT32| Partition| 100 MB | Healthy | Hidden |\n| Volume 3 | | | NTFS| Partition| 523 MB | Healthy | Hidden |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "02aa397a59389b442a401de076c80de0f10e5b3bfbe5c0437c14118641f7423a",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-443A34ED-8373-4AB9-9F26-730FF70DDD3C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS NAME | TYPE | BUS/SLOT | ASSIGNEE | ACTIONS |\n|-----------------------------------------------------------------------------|--------------|----------|-----------|-------------|\n| NVIDIA Corporation - GA107 [GeForce RTX 3050 6GB] (pci_0000_01_00_0) | Nvidia GPU | 1:0 | N/A | ACTIONS |\n| Linux Foundation - 2.0 root hub (usb_usb1) | Generic USB Device | 1:1 | N/A | ACTIONS |\n| Linux Foundation - 3.0 root hub (usb_usb2) | Generic USB Device | 2:1 | N/A | ACTIONS |\n| Corsair - Voyager Mini (usb_3_3) | Generic USB Device | 3:5 | N/A | ACTIONS |\n| Linux Foundation - 2.0 root hub (usb_usb3) | Generic USB Device | 3:1 | N/A | ACTIONS |\n| MediaTek Inc. - Wireless_Device (usb_3_10) | Generic USB Device | 3:3 | N/A | ACTIONS |\n| Microdia - Dual Mode Camera (8006 VGA) (usb_3_1_4) | Generic USB Device | 3:4 | N/A | ACTIONS |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "033d7059c09743a529ea8a916834431cf76ad715fb31032700e4e4d9f8bed784",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-47C7B1DB-2DE5-4A66-B1A9-EAFC3B87601B-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| VIRTUAL IMAGE | TECHNOLOGY | OWNER | CLOUD |\n|---------------|------------|-------|-------|\n| morpheus ubuntu 24.04 | IBM Cloud | System | |\n| Morpheus Ubuntu 24.04 20240604 | VMware | System | |\n| Morpheus Ubuntu 24.04 20240604 | ESXi | System | |\n| Morpheus Ubuntu 24.04 20240604 | Hyper-V | System | |\n| Morpheus Ubuntu 24.04 20240604 | SCVMM | System | |\n| Morpheus Ubuntu 24.04 20240604 | Nutanix Prism Element | System | |\n| Morpheus Ubuntu 24.04 20240604 | OpenStack | System | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "042a3b703f488eb953e01099d24a32a04dcfb1580638455bc9dbbddb5575f883",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-935505B8-57F2-4C03-A95C-CF46F2AFF987-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Instance Type | Layouts | Node Type |\n|---------------|---------|-----------|\n| AWS v2.4 | | CentOS v7 |\n| AWS v2.3.5 | | Windows 8 |\n| Azure v2.4 | | Ubuntu v7 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "059796ff07e91a892cbb930f6d4903db2175b7ef67197ad02d6f4b276a788664",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-984BC461-04D2-4759-9E91-D9ACF2C6EB23-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Home |\n|------|\n| 0 of 1 files uploaded |\n| Uploading 17763.365... | 0% at 1691.98 KB/s |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "08b1996b46414e0ac5f205d7b28bb73d27467ae7ee70e705e1b93f10331e8655",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3A823ED0-F545-4405-AC60-EAF927081936-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Bucket: Wiki Images File Share | # Files: 1 | Size: 117.7KiB |\n|---------------------------------|-------------|----------------|\n| Owner: Morpheus | | |\n | File Path: morpheus-archives/8e3167b673d5/ | Created: 01/25/2022 09:29 AM | Last Updated: 01/26/2023 03:10 PM |\n| Public URL: No | Tenants: | Visibility: Private |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "0a172b1d587c4024d09135d7093baf7a21a5dbb71521a29265eac4dd1da67ed0",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-E44477FD-45A4-44BD-A7CA-0587E51A09ED-high.gif",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Yes or No | Required Text |\n|-----------|---------------|\n| Select | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "0b0dd3ebd7dad31929f2a9a7dcd9f46059007bce08e58619c9d8df0ed6ebcac7",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-828B4DE9-16E1-4F18-9F19-FDC0410DB2C6-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TYPE | NAME | VERSION | DESCRIPTION |\n|----------------|-------------------------------------------|---------|-----------------------------------------------------------------------------|\n| Alibaba Docker Host | Alibaba Docker Host | 18.04 | This will provision a single docker host vm in alibaba |\n| Amazon Docker Host | Amazon Docker Host | 16.04 | This will provision a single docker host vm in amazon |\n| Azure Docker Host | Azure Docker Host | 16.04 | This will provision a single docker host vm in azure |\n| Copy of MKS Kubernetes 1.20 Cluster on Ubuntu 18.04 | Copy of MKS Kubernetes 1.20 Cluster on Ubuntu 18.04 | 16.04 | provision a kubernetes 1.20 cluster on ubuntu 18.04 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "1221f9857c540e7042790c04e6cdfcd93034bb13609e0ca054b6db6f7c9e6a30",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-6107BD26-E1BA-4F6E-888A-10CEDF3C01D7-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| CREDENTIAL STORE | NAME | DESCRIPTION |\n|------------------|------|-------------|\n| Internal | | |\n| QA Cypher | | |\n\n| ENABLED | USERNAME | PASSWORD |\n|------------------|----------|----------|\n| \u2714 | | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "14dd7277ac31ce0af0184cb5415645377cd15edba28362adb23bd53840537b12",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3C5798EF-8010-4C2C-A9C1-B1A07D5BBCE3-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| HOST | ah-mvm-01 |\n| --- | --- |\n| PLACEMENT STRATEGY | Pinned |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "16ee3dd7f0b96119e2c7eda83ceb721c8f7425d73bb9fd932d72a4e99cc9f4f1",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C3ECE586-166D-49EB-85B2-42D73E125E79-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TYPE | NAME | DETAILS | ACTIVE |\n|------|------|---------|--------|\n| Azure AD SAML SSO | Azure - Personal | ENTITY ID: https://morpheus._________/saml/dW2dTbqgX<br>SP ACS URL: https://morpheus._________/externalLogin/callback/dW2dTbqgX<br>LOGIN REDIRECT URL: https://login.microsoftonline.com/9a2a0272-_________-a64a2de7c074/saml2<br>SIGN ON URL: https://morpheus._________/externalLogin/redirect/5<br>LOGOUT POST URL: https://morpheus._________/logout<br>SP METADATA: | Yes |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "182c11b2138ea7673b99a20e3ded02fc32b6967d21e4b218e949055ad8e18a3e",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-0D1DD7D2-5438-441D-9D5D-515401798FE8-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION |\n| --- | --- |\n| Apache-BP | Apache VM on AWS with Plan Options and Markdown |\n\n| ENABLED | FEATURED |\n| --- | --- |\n\n| VISIBILITY | Private |\n| --- | --- |\n\n| LOGO |  |\n| --- | --- |\n\n| CONFIG | Configuration Wizard |\n| --- | --- |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "1b252744f09eb18d5bc56d54a370ac0ab5bfc711791814fa5adebc0956c10936",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8BD09052-92FA-4310-AE20-7EF52079B937-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION |\n| --- | --- |\n| My SCAP Security Bundle | test |\n\n| SOURCE | URL |\n| --- | --- |\n| url | https://github.com/ComplianceAsCode/content/releases/downlo |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "1e4f301ab68b1aa16907e9017916603ade2b088e2a2ae0d519df39a7a5f5bbfa",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-5C1016FB-39ED-4A2E-9D73-3CE2F1C29456-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| GROUP | CLOUD | NAME | ENVIRONMENT | LABELS |\n|-------|-------|------|-------------|--------|\n| All Clouds | MVM | `${userInitials}-${cloudCode}-${type}-${sequence.toString().padLeft(2,'0')}` | Select | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "1edc2416537692cc8d938f2b5b52691fce2ff4343510ff0398fcdd0e0a3cd018",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D2229A74-662F-4D7F-91A4-166C0050AEE5-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Operating system | Architecture | Date modified |\n|------------------|--------------|---------------|\n| Windows Server 2019 Standard Evaluation | x64 | 11/5/2022 |\n| Windows Server 2019 Standard Evaluation (Desktop Experience) | x64 | 11/5/2022 |\n| Windows Server 2019 Datacenter Evaluation | x64 | 11/5/2022 |\n| Windows Server 2019 Datacenter Evaluation (Desktop Experience) | x64 | 11/5/2022 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "20b4a67177a79306474f117a97dd52a508a8be860523fec625dcce82fe7b2256",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-65C72DC3-8755-45A9-978E-2E3F840D4F91-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| IP ADDRESS | CLOUD | STATUS | VM |\n|------------|-----------------|---------|-------------------|\n| 10.3 | QA OpenStack | Free | |\n| | QA OpenStack (all) | Free | |\n| | QA OpenStack | Free | |\n| | QA OpenStack (all) | Free | |\n| | QA OpenStack (all) | Assigned | sa-opv3-ubuntu-2 |\n| | QA OpenStack | Assigned | sa-opv3-ubuntu-2 |\n| | QA Openstack Yoga | Assigned | |\n| 190.1 | QA Huawei | Free | |\n| 80.1 | QA OpenTelekom | Assigned | dd-otc2-ubuntu-107|"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "2242c6e387dc79744b19771789ba205264db230bc8bd306915624971bc329aac",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-B9FCD0BE-6651-4DA3-BC61-3AB7E704065C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| GROUP | CLOUD | NAME | ENVIRONMENT TAG | TAGS |\n|-------|-------|------|-----------------|------|\n| All Clouds | VMware | ${userInitials}-${account}-${cloudCode}-${type}-${sequence} | Select: Environment | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "2462d119b5cf079ea1948c70653310b36a3786a8c66b34b6f8188132a739c9e8",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-A94BDC5A-C89C-426E-9EF6-2914BC84AC21-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS NAME | TYPE | BUS/SLOT | ASSIGNEE | ACTIONS |\n|-----------------------------------------------------------------------------|------------|----------|-----------|-------------|\n| NVIDIA Corporation - GA107 [GeForce RTX 3050 6GB] (pci_0000_01_00_0) | Nvidia GPU | 1:0 | N/A | ACTIONS |\n| Linux Foundation - 2.0 root hub (usb_usb1) | Generic USB Device | 1:1 | N/A | ACTIONS |\n| Linux Foundation - 3.0 root hub (usb_usb2) | Generic USB Device | 2:1 | N/A | ACTIONS |\n| Corsair - Voyager Mini (usb_3_3) | Generic USB Device | 3:5 | N/A | ACTIONS |\n| Linux Foundation - 2.0 root hub (usb_usb3) | Generic USB Device | 3:1 | N/A | ACTIONS |\n| MediaTek Inc. - Wireless_Device (usb_3_10) | Generic USB Device | 3:3 | N/A | ACTIONS |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "2782392cb611e9272e0d3913999d87e54c46dc870994d6510515107266bfd0f5",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-EC09C556-7F46-4036-ABDF-7E36BE8BFD8D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Remote Layout | JAPANESE [QWERTY] |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "28cb76e06e543dd5847861c3b939326fae2b6dc3913b218b2512c62ea127f44a",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-F721FD37-B1E8-48D5-A817-E9A23048CACD-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Cluster Type | Description |\n|--------------|-------------|\n| Docker Cluster | Docker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code. |\n| EKS Cluster | Amazon Elastic Kubernetes Service (Amazon EKS) is a managed Kubernetes service to run Kubernetes in the AWS cloud. |\n| External Kubernetes Cluster | Kubernetes, also known as K8s, is an open-source system for automating deployment, scaling, and management of containerized applications. |\n| GKE Cluster | GKE is the industry's first fully managed Kubernetes service with full Kubernetes API, 4-way autoscaling, release channels, and multi-cluster support. |\n| HPE VM | HPE Virtual Machines is a KVM-based virtualization solution with various storage options and OVS networking (Ubuntu 22.04 base). |\n| Kubernetes Cluster | Kubernetes, also known as K8s, is an open-source system for automating deployment, scaling, and management of containerized applications. |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "29715a199b4da3e236cda650c045a07ab96a7683ed8c5b07fd8f0bb946b60209",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-2A352500-C7FF-43CD-B91B-AD299208090B-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | NAMESPACE |\n| --- | --- |\n| alertmanager-main | monitoring |\n| alertmanager-main-generated | monitoring |\n| alertmanager-main-tls-assets | monitoring |\n| alertmanager-main-token-fb96l | monitoring |\n| attachdetach-controller-token-swp24 | kube-system |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "2be49a01cef7c6af05d0cef31db5dd1a75059b0233df575b581adfed21a76cc7",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-F76B03BD-5880-4AC2-8B3D-98537D873BDE-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| SERVER | Select |\n|--------|--------|\n| sj-pvc-ubu-01 | |\n| ah-pvc-mvm-01 | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "2fcbb7ee461c407d8721f287c2b2df0803693aab07ea5249feed8776d730b9f1",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-84DB6665-2DF9-46C0-9DB1-623644B30196-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Virtual Image | Description |\n|---------------|-------------|\n| morpheus ubuntu 24.04 - vhd | Morpheus Ubuntu 24.04 20240604 - vmdk |\n| Morpheus Ubuntu 24.04 20240604 - vhd | Morpheus Ubuntu 24.04 20240604 - qcow2 |\n| Morpheus Ubuntu 24.04 20240604 - qcow2 | Morpheus Ubuntu 24.04 20240604 - qcow2 |\n| Morpheus Ubuntu 24.04 20240604 - qcow2 | Morpheus Ubuntu 24.04 20240604 - qcow2 |\n| Ubuntu 24.04 LTS (Digital Ocean Marketplace) - qcow2 | Ubuntu 24.04 LTS (Digital Ocean Marketplace) - qcow2 |\n| ubuntu/images/hvm-ssd-gp3/ubuntu-noble-24.04-amd64-server-20240423 - ami | Ubuntu 24.04 LTS (Digital Ocean Marketplace) - qcow2 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "31d7ace22e7f346ee7f864b6d680906455bb86ae8bfe71e61fc757a502aeaaa5",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BF683E2D-8807-45D4-8E2B-B807A250D92B-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Key | Value |\n| --- | --- |\n| \"key\": \"a\" | \"value\": \"b\" |\n| \"key\": \"c\" | \"value\": \"d\" |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "3442d3fa01297feca855a5f1cee7a8b9ec890e28c3229ded5d89907bee4e448c",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-88E093F0-4EAB-4E6D-A023-F1C70F06812A-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| POWER | OS | NAME | TYPE | CLOUD | IP ADDRESS | COMPUTE | MEMORY | STORAGE | STATUS |\n|-------|----------|-----------------|----------------|----------------|----------------|----------|--------|---------|--------|\n| On | Ubuntu | qa-kube-master | Kube Controller| QA Kubernetes | 10.32.20.236 | 8 | 32 | 9 | \u2713 |\n| On | Ubuntu | qa-kube-worker1 | Kube Worker | QA Kubernetes | 10.32.20.237 | 10 | 52 | 10 | \u2713 |\n| On | Ubuntu | qa-kube-worker2 | Kube Worker | QA Kubernetes | 10.32.20.239 | 16 | 81 | 12 | \u2713 |\n| On | Ubuntu | qa-kube-worker3 | Kube Worker | QA Kubernetes | 10.32.20.238 | 10 | 50 | 14 | \u2713 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "363ba0d10cb7abca003103bc06a724015af6dfff02d43b005d3f00606c372466",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-688399E1-CBDA-4B89-AC61-80CF6FCBEBCD-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS | NAME | INSTANCE | TYPE | CLOUD | ADDRESS(ES) | COMPUTE | MEMORY | STORAGE |\n|--------|----------------|------------------------------|------------|--------|----------------|---------|--------|---------|\n| Play | ubuntu_44 | ah-mvm-ubuntu-01 | Ubuntu 22.04 | MVM | 192.168.22.252:22 | 0 | 0 | 17 |\n| Play | ubuntu_46 | ah-mvm-ubuntu-02 | Ubuntu 22.04 | MVM | 192.168.22.232:22 | 0 | 0 | 26 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "36fd3aa9a8afa1895763f8c4faa6e3c7e4bb306f22f249f350dea22ec056a7b9",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-15EB662D-9111-4C88-826F-235318761007-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Configuration Options | Value |\n|-----------------------|-------|\n| LAYOUT | Morpheus MVM 1.0 HCI Cluster on Existing Ubuntu 22.04 |\n| SSH HOSTS | ah-mvm-01, 192.168.20.15<br>ah-mvm-02, 192.168.20.14<br>ah-mvm-03, 192.168.20.13 |\n| SSH PORT | 22 |\n| SSH USERNAME | morpheus |\n| SSH PASSWORD | \\*\\*\\*\\*\\*\\* |\n| SSH KEY | MVM |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "3922c049d11f93d7d396a486b7fc699ff702cd2eac95cd78ddbfd21d7690198e",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D85300D8-59A9-406D-99F4-2A83E4812C52-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS | NAME | INSTANCE | TYPE | CLOUD | ADDRESS(ES) | COMPUTE | MEMORY | STORAGE |\n|--------|----------------|------------------------------|------------|--------|-------------------------|----------|---------|----------|\n| Running | ubuntu_43 | ah-mvm-ubuntu-03 | Ubuntu 18.04 | MVM | 192.168.22.210:22 | 1 | 43 | 18 |\n| Running | ubuntu_44 | ah-mvm-ubuntu-01 | Ubuntu 22.04 | MVM | 192.168.22.252:22 | 4 | 69 | 28 |\n| Running | ubuntu_46 | ah-mvm-ubuntu-02 | Ubuntu 22.04 | MVM | 192.168.22.232:22 | 0 | 0 | 26 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "392ed13a1d30465f58734bb73312d5dbd7bad8a1df19a064edc20a6ab1a833ae",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-9514094E-8567-4571-ACFD-C334FA3A166C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Configuration Option | Value |\n|----------------------|-------|\n| Version | 22.04 |\n| Layout | OpenStack VM |\n| Plan | m1.large |\n| Cores | 4 |\n| Memory | 8 GB |\n| Price | $168.00 / Month |\n| Resource Pool | morpheus |\n| Volumes | 80 |\n| Networks | tm-open-net |\n| Availability Zone | nova |\n| Security Group | default|\n| Server Group (Affinity) | Select |\n| Floating IP | Available IPs: <br>10.3[blacked out] |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "3afc1127d0e415eb24f4c82161dce39a351acf61fba1d588ae22bfdeca118baa",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-2F7949E9-D5DB-4089-970D-854F88DA140D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": null
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "3c0b4e2ac951ba3dcdad6fcad0044e159b05d927c4d3e1dd79bf9870a1056446",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-5AC07D64-3534-439B-925D-858854858310-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS NAME | TYPE | BUS/SLOT | ASSIGNEE |\n|-------------|------------|----------|---------------------|\n| NVIDIA Corporation - GA107 [GeForce RTX 3050 6GB] (pci_0000_01_00_0) | Nvidia GPU | 1:0 | ah-pvc-mvm-01 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "3eb349f845fca4b460a9ecc20cf1731097a076ff2e61a44592c51c5398e0285c",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BC2EC859-76DA-4EC4-883C-DBA8BAD9DD52-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION |\n|----------------|-------------------------|\n| automation | don't delete |\n| calico-apiserver | |\n| calico-system | |\n| default | |\n| kube-node-lease | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4234c73b5e453fb10b0cde0017d03e39e94c4da212b8579468d3567d678d85af",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-5C55D002-8AF1-4F8D-9EAE-D6839820B80F-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Line | Content |\n|------|--------------------------------------------------------------------------|\n| 1 | resource \"task\" \"Price Phase Task\" { |\n| 2 | name = \"Price Phase Task\" |\n| 3 | uuid = \"77790589-fce9-41cb-8224-6ec2cb71f4c8\" |\n| 4 | dateCreated = \"2022-10-26T15:34:01.000Z\" |\n| 5 | executeTarget = \"local\" |\n| 6 | lastUpdated = \"2022-10-26T15:57:36.000Z\" |\n| 7 | options = [ |\n| 8 | { |\n| 9 | content = { uuid = \"68043802-43a4-4564-81a1-db349314097d\" } |\n| 10 | optionType = { code = \"groovyScript\" } |\n| 11 | } |\n| 12 | ] |\n| 13 | resultType = \"value\" |\n| 14 | taskType = { code = \"groovyTask\" } |\n| 15 | } |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4291d52736d8567dc8771528c7b60067666cf715c6f789dd69f15b213eb16b93",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-65A40826-21ED-4A71-83F9-0951FA0B62B7-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | TYPE |\n|------|------|\n| My Terraform | Terraform |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "42ac6a1dd17f507d3940babae4eb3c15fd238d696a33e466ca3a0a06ce372046",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-6EC36C91-5E13-4B5B-AB20-10DE225F85B3-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| SSH KEY | RPC HOST | INTERNAL IP | EXTERNAL IP | LABELS |\n|---------|----------|-------------|-------------|--------|\n| Select | English US (VMware) | Danish | Dutch (Belgian) | English (UK PC) |\n| | | | | English (US) |\n| | | | | Finnish |\n| | | | | French |\n| | | | | French (Belgian) |\n| | | | | French (Swiss) |\n| | | | | German |\n| | | | | German (Swiss) |\n| | | | | Icelandic |\n| | | | | Italian |\n| | | | | Japanese |\n| | | | | Norwegian |\n| | | | | Portuguese |\n| | | | | Spanish |\n\n| KEYBOARD LAYOUT | POWER SCHEDULE |\n|-----------------|----------------|\n| Select | Select |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "431fbc2749960970ac15f8a37706037ed0918da0ac112debcb482837f386a53b",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-871C2818-8DD3-478D-ADC4-613602524004-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| VM IMAGE | F5New |\n|----------|-------|\n| LOG FOLDER | |\n| CONFIG FOLDER | |\n| DEPLOY FOLDER | |\n| VAPP PROPERTIES | net.mgmt.addr |\n| | user.admin.pwd |\n| | user.root.pwd |\n| | net.mgmt.gw |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4671676545612c3c99a0af93a4a6d91436e763f0ce3363a808cdc9d97abfc4bb",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-583CAD5E-6A57-49DB-AEAB-704F815F73D7-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TYPE | NAME | PLATFORM | LABELS | SIZE | VISIBILITY | TENANTS | SOURCE | STATUS |\n|------------|-------------|------------------|---------|--------|------------|--------------|-----------|-----------|\n| VMDK | F5New | linux 64-bit | Private | 2.2GiB | Morpheus QA | Uploaded | Active |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "48935bed7565afc06f3170ad8920c7e81c2bcb965afd4a954f246471e48ed285",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-186CA89B-1E7C-49B9-9C71-3CD0CE4E9A59-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Provisioning | Cloud |\n|--------------|-------|\n| Disks | Exposed Ports |\n| Group | Layout |\n| Networks | Plan |\n| Resource Pool | Security Groups |\n| Tags | Vmware Folders |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "48d602594668936aa6e76a8b439259ef9159ba557b52ae37daa18c738612331b",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C5C8E073-11BC-4D5A-A900-14571F77280D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | TYPE | RESOURCE POOL | ACTIONS |\n|------------|----------------|--------------------|---------|\n| Web Servers| Keep Separate | hvm-cluster | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4a81a26e2bc25e551476fdfa300ce67f7a316b0e33f324ab78bf26a53b185b20",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3FAFD413-3475-44A9-811A-575B689D836D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Day | Start Time (AM) | End Time (PM) |\n|-----------|-----------------|---------------|\n| Monday | 6:00 | 18:00 |\n| Tuesday | 6:00 | 18:00 |\n| Wednesday | 6:00 | 18:00 |\n| Thursday | 6:00 | 18:00 |\n| Friday | 6:00 | 18:00 |\n| Saturday | 0:00 | |\n| Sunday | 0:00 | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4b0c52bdf101113a6b51915795b4d7c72b847c5bbd7a705a9028757b2e142ff8",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-34E14A70-071B-4A63-BD76-5D0A1261BC20-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS NAME | TYPE | BUS/SLOT | ASSIGNEE |\n|-----------------------------------------------------------------------------|----------------|----------|-----------|\n| NVIDIA Corporation - GA107 [GeForce RTX 3050 6GB] (pci_0000_01_00_0) | Nvidia GPU | 1:0 | N/A |\n| Linux Foundation - 2.0 root hub (usb_usb1) | Generic USB Device | 1:1 | N/A |\n| Linux Foundation - 3.0 root hub (usb_usb2) | Generic USB Device | 2:1 | N/A |\n| Corsair - Voyager Mini (usb_3_3) | Generic USB Device | 3:5 | N/A |\n| Linux Foundation - 2.0 root hub (usb_usb3) | Generic USB Device | 3:1 | N/A |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4b90144155d3014c14451dcf4119225e21f28ba1b32831ffe814cc96709cae52",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-4820885E-F91A-4F9E-881B-4C5ECEC0F160-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Field | Value |\n|----------------|-----------------------------------------------------------------------|\n| NAME | Ubuntu - Forms |\n| CODE | ubuform |\n| DESCRIPTION | Ubuntu Deployment Utilizing Forms |\n| CATEGORY | (empty) |\n| LABELS | (empty) |\n| ENABLED | \u2714\ufe0f |\n| FEATURED | \u2714\ufe0f |\n| ALLOW QUANTITY | \u274c |\n| VISIBILITY | Private |\n| LOGO | ubuntu |\n| DARK LOGO | ubuntu |\n| CONFIG | 1 { |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4b9295cf180a4aee6354a08ee4ef0e22ceb0a930b00c73991c89e9a8c2a389b9",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-03AD0B76-424F-40CE-BF86-0D1D4C81A991-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TYPE | NAME | PERSISTENT | ENABLED | POOL USAGE |\n|------------|---------|------------|---------|------------|\n| openSUSE | Suse | \u2713 | \u2713 |  |\n| Windows | Windows | \u2713 | \u2713 |  |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4bc651874b14c4cb14c044b75c999af18d059e9e58ef175adecba9578c1761bf",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-4F832198-6A42-4B65-96DB-614E7AA109F5-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Advanced Options |\n| --- |\n| **SCALE FACTOR** | 1 |\n| **HOSTNAME** | `${userInitials}-${cloudCode}-${type}-${sequence.toString().padLeft(2,'0')}` |\n| **DOMAIN** | Use Default |\n| **TIME ZONE** | Use Default |\n| **PORTS** | name | port | No LB |\n| **QEMU ARGUMENTS** | |\n| **SKIP AGENT INSTALL** | |\n| **ENABLE NESTED VIRTUALIZATION** | |\n| **ATTACH VIRTIO DRIVERS** | |\n| **TAGS** | Name | Value |\n| **ENVIRONMENT PREFIX** | |\n| **ENVIRONMENT VARIABLES** | Name | Value |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4c97d5aac27565d8dec22a8db917bbb13053f2da3e063672e7e0e6f4a81cc014",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-41F98D9A-033E-4560-8F99-824818F25590-high.gif",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Group | Cloud | Network |\n|-------|-------|---------|\n| Select | Select | Select |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4da2db275f79dc98d8d20ffeecc0355222ae0fb0dde4017714ab3e2b54d5ae52",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D9CD7CB0-1B54-42D7-A75C-010C489E9E09-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | SOURCE | TARGET | RESOURCE POOL | GROUP |\n|------|--------|--------|---------------|-------|\n| My Migration | QA VMware | QA MorpheusVM | QA MVM Cluster | QA MorpheusVM |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "4f8ea240117466c5bad741c45e34c951f6ecba391aa7101778df4600636410dc",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-06C21D16-B31C-492D-9170-EAC44622138F-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION | CATEGORY |\n| --- | --- | --- |\n| Spud Marketing | Simple 2 Tier CMS Application Template. spud engine.com | web |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "5297d2ab287f2eac0b355e30ac27a7fffa9477a338e131d7db27ca5390b6e6c3",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-42D2FAC8-D054-4AEC-8D10-59C6B15EE02A-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Type: | Kubernetes Cluster |\n| --- | --- |\n| Created By: | Tommy Marks |\n| Date Created: | 02/16/2022 07:08 PM |\n| Worker CPU: | 13.0% |\n| Worker Memory: | 14.0GiB/22.8GiB |\n| Worker Storage: | 37.2GiB/300.0GiB |\n| Enabled: | Yes |\n| Managed: | Yes |\n| Layout: | MKS Kubernetes 1.23 Cluster on Ubuntu 20.04 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "5aa2d1b1b9d3d58e998dc503c0817015b0e355375d793191189b77ce0da75bcd",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-9DE2A41A-C675-4E94-819C-7DB350F6B8DA-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Technology | Description |\n|------------|-------------|\n| Huawei | Provision any Huawei image to the Huawei Cloud. Utilize the image alongside your other instances. |\n| Hyper-V | Spin up any VM Image on your hyper-v based infrastructure. |\n| IBM Cloud | Easily provision IBM Cloud virtual machines for use as instances within your application stack. |\n| Kubernetes | Easily provision a Kubernetes spec for use as an instance within your application. |\n| KVM | Provision any kvm image to a KVM Hypervisor. Utilize the image alongside your other instances. |\n| MVM | High-performance virtual machine optimized for Morpheus MVM hypervisor, offering seamless deployment and management in on-premises environments. |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "5ea117ed90d8ed6e65ab3d976299cc46a3d9c422a3886da8bb01f6c48f02907e",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-79EB5F32-18B1-4437-9727-EA6FEC436A5C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DETAILS |\n| --- |\n| **NAME** | new form |\n| **CODE** | form code |\n| **DESCRIPTION** | add a short description for the form |\n| **CONTEXT** | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "5ebc281a0a01f441f55689584d0ad8dc1829ba33ec968fe26469b6c57cb4ec58",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-E3A8EE0B-A475-4D68-B6C5-626CB50D9772-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TYPE | NAME | FEATURED | VISIBILITY |\n|------------|----------------|----------|------------|\n| VMware | | | Private |\n| Resource | Apache | | Private |\n| Apache | Apache Example | \u2713 | Private |\n| Resource | | | Public |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "63d42a516abecc93ac7c0b1317e07f3c6c8163eeb2064034282d2a340ae6fc0c",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-B80B0A34-FE78-4289-A475-03068127D897-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION |\n| --- | --- |\n| Windows | Windows 10 Desktop |\n| MIN IDLE | 1 |\n| INITIAL POOL SIZE | 1 |\n| MAX IDLE | 2 |\n| MAX SIZE | 2 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "66ae9143892f108654a686e99b9bce9d2cc1da8fd9b21c31711e9a20e7d60035",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-18F5E0CD-4DD0-4720-8DA0-E81B1048013B-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Action | Description |\n|--------|-------------|\n| CANCEL | Cancels entering maintenance mode |\n| CONFIRM | Confirms entering maintenance mode |\n\nThe text within the dialog box explains what happens when you enter maintenance mode:\n- Entering maintenance mode will remove a host from the pool.\n- All VMs running must first be offloaded. If they can be live migrated, they will be; if powered off, they will be moved elsewhere when possible.\n- The operation will fail until it is remedied.\n\nThe specific VM mentioned in the dialog box is `ah-mvm-ubuntu-02`, which will be moved during maintenance mode."
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "67dc381102639918f652a87a7f9747a27511b8633ac364b1fb31c5c31fc0d7f6",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8B62B5BD-FAF8-40F3-84C6-E905D7E4E72F-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Configuration Option | Value |\n|----------------------|-------|\n| LAYOUT | Single MVM VM |\n| PLAN | 1 CPU, 4GB Memory |\n| RESOURCES POOL | ah-mvm |\n| VOLUMES | root (40 GB) |\n| NETWORKS | Compute VLAN 23 - Virt IO DHCP |\n| IMAGE | Windows Server 2019 |\n| HOST | ah-mvm-01 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "68c0c250e4e9607bcb84e1b1b6a77e3d7c38c76993d0167cf8c89fe25c166d92",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-7E6E76A0-2B8D-49C7-ADBE-3D515134ED07-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Resources | CREATE | UPDATE | CONFLICT | UNCHANGED |\n|-----------|--------|--------|----------|------------|\n| Create | account-integration | file-content | task python | task Email test |\n| Create | d96b3462-0ee0-48e5-a354- | a1f5c6ba-791c-49e1-975c-0 | 20429be8-6c53-42da-aa61- | code-repository |\n| Create | task Python Task (Git-sourced) |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "69473fad860c3d88e13955cc69ad5c7bf495b1ec9980f0fb8075b879f307d8ce",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-9C039E15-FE97-4CFD-987E-07A16E644534-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | TYPE | ACTIVE | SERVERS |\n|------|------|--------|---------|\n| | Keep Separate | \u2713 | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "7485b1cd0282c2424a1885b19a1068c79bbfedc2f9c2d26372c1a1b359dd1e37",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-14CAAF3E-4218-42AA-9D8B-8511E2C5E913-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Configuration Options | Value |\n|-----------------------|-------|\n| VERSION | 7.3 |\n| LAYOUT | Docker CentOS Container |\n| PLAN | 128MB Memory, 1GB Storage |\n| VOLUMES | 1 GB |\n| PUBLIC KEY | Select |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "74ead48087e93cbc5022e570e7d0ab8041ad8d2c2b908cf7c48c57db112dc78e",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D5D3548C-0254-4864-A53B-0147E5742FBC-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | DESCRIPTION | TYPE | PACKAGE TYPE | ENABLED |\n|------|-------------|------|--------------|---------|\n| calico 3.17.2 package | install calico networking | network | calico | \u2713 |\n| calico 3.17.2 package IP-in-IP Encapsulation | install calico networking | network | calico | \u2713 |\n| calico 3.20.0 package | install calico networking | network | calico | \u2713 |\n| calico 3.21.0 package | install calico 3.21 networking | network | calico | \u2713 |\n| calico 3.22.0 package | install calico 3.22 networking | network | calico | \u2713 |\n| calico 3.22.1 package | install calico 3.22.1 networking | network | calico | \u2713 |\n| calico 3.24.2 package | install calico 3.24.2 networking | network | calico | \u2713 |\n| calico 3.26.0 package | install calico 3.26.0 networking | network | calico | \u2713 |\n| kubernetes calico 3.25.0 package | install calico 3.25.0 networking | network | calico | \u2713 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "78f98304ca2877ed37abe42530517b9ca35c9305747c3e0b8a43960e57e2cd6e",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-40BAFA08-1439-49F9-B642-C7C3FAED943F-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Localization Test | Groupe | Type de contexte |\n|-------------------|--------|------------------|\n| Morpheus Clouds | | S\u00e9lectionner |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "7ae2eb2896ada38b8454e021aab1de367cb407990bad7454f79e1623eddfbfe9",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-4AF17304-D863-46CD-B761-F76CA83B5DA1-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| HOST | ah-mvm-01 |\n| --- | --- |\n| PLACEMENT STRATEGY | Auto |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "7d271bd09f22a9cf87b94bd56b063d7cd5f7738b353fa9ff81c972b182d6d06f",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C56262F7-FB82-4802-A8D8-DEE2D9FE3DB1-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | CODE |\n| --- | --- |\n| Ubuntu | ubuntu |\n\n| DESCRIPTION | CATEGORY |\n| --- | --- |\n| | OS |\n\n| LABELS | ICON |\n| --- | --- |\n| ubuntu | download.png |\n\n| DARK MODE IMAGE | |\n| --- | --- |\n| | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "8117476460eab8e9225141b14c12f19d78c69de12c74e6a9750e76296a7dad85",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D7231A7E-44FC-46F2-BF5A-99020D46CF48-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Field | Description |\n|----------------|-----------------------------------------------------------------------------|\n| NAME | The name of the node type |\n| LABELS | A comma-separated list of labels used to group/organize items |\n| SHORT_NAME | A short name with no spaces for display in your container list |\n| VERSION | Version number |\n| TECHNOLOGY | Dropdown menu currently set to \"VMware\" |\n| ENVIRONMENT | Environment variables (Name and Value) |\n| VARIABLES | Environment variables settings |\n| VMware VM Options | |\n| Virtual Image | Selected option |\n| OS Type | Not selected |\n| VM IMAGE | Dropdown menu currently set to \"Select\" |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "81803ee3f58424f9b228aa3980f9a33f2f95b97e64492adefa2c836b034b333c",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-87BE27BB-2F87-4323-B45A-8A8D0C89DE4B-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| GROUP | CLOUD |\n|-------|-------|\n| All Clouds | MVM |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "8298fa45046b8ffbbaa3064687f60794582a076c168ba59edc6d7b23b07fb7e7",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-83AEDC4E-1DB0-4F7E-ABD9-A3D11F699F3D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Language to install: | English (United States) |\n|---------------------|----------------------------|\n| Time and currency format: | English (United States) |\n| Keyboard or input method: | US |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "842b2767c2c155f380c4308761aa5745a2f86360b591b86892592aad3c442cb3",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-90F23A24-CA56-4100-94CD-13EA1247EBD5-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | TYPE | SOURCE HOST | SOURCE DIRECTORY |\n|------|------|-------------|------------------|\n| new-nfs-datastore | NFS Pool | nfsserver.example.com | /mnt/nfsshare |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "845a7a23ffc1ab179500e32fddea1123a519a95fdcc83ca9004df2383b46cf1f",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-E526F230-60CB-4FB1-ACCE-EA127DA5E7D2-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Folder/File Name | Description |\n|------------------|-------------|\n| option-type | |\n| option-type-list | |\n| task | |\n| Email test.scribe | |\n| Price Phase Task.scribe | |\n| Python Task (Git-sourced).scribe | |\n| Test Bash.scribe | |\n| python.scribe | |\n| task-set | |\n| task-set-task | |\n| README.md | |\n\n| Action Menu | Description |\n|-----------------|-------------|\n| Import Resources | |\n| Create Terraform Spec Template | |\n| Create Shell Script Task | |\n| Create PowerShell Script Task | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "87833fd00e4af6ae3fa771a9cf9f094f53550e0f6a330198eb8295361245f0b7",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-69BB84AC-5461-4818-A90F-10BB7308E937-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS | NAME | INSTANCE | TYPE | CLOUD | ADDRESS(ES) | COMPUTE | MEMORY | STORAGE |\n|--------|------|----------|------|-------|--------------|---------|--------|---------|\n| Failed | MVM | MVM HCI Host | VM Host | Linux | 192.168.20.14:22 | 0 | 0 | 325.0GiB |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "8c903bc02b692d3930a2d07a4a3370e515e9e0acc9356c13fbda163ba9730d9a",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-4AE6BBA1-CDFA-4D64-A10E-5797AD61C438-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Name | Total size | Free space | Type |\n|----------------|-------------|--------------|------------|\n| Drive 0 Unallocated Space | 100.0 GB | 100.0 GB | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "8f8ae9b7a2a8e51b2d162a9a3039200d43a0dc38f651abdcec86dc1ab4c5c116",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-97074F85-A232-4095-9625-CEAF93C468A2-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Property Key | Type | Value | User Configurable |\n|--------------|------------|-----------|--------------------|\n| net.mgmt.addr | string | \"\" | true |\n| net.mgmt.gw | string | \"\" | true |\n| user.root.pwd | string | \"\" | true |\n| user.admin.pwd | string | \"\" | true |\n\n**Network Properties:**\n- **mgmt-addr**: F5 BIG-IP VE's management address in the format of \"IP/prefix\"\n- **mgmt-gw**: F5 BIG-IP VE's management default gateway\n\n**User Properties:**\n- **root-pwd**: F5 BIG-IP VE's SHA-512 shadow or plain-text password for \"root\" user\n- **admin-pwd**: F5 BIG-IP VE's SHA-512 shadow or plain-text password for \"admin\" user"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "90e4d96cf04db3ec3d5d1c100cfc3753b35c4ab90a29c13c3175c56aa899bed8",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-1FD71B7E-138D-4F35-B57F-AA2C3AA2E357-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Configuration Options | Value |\n|-----------------------|-------|\n| LAYOUT | Single HPE VM |\n| PLAN | GPU Plan |\n| Cores | 2 |\n| Memory | 2 GB |\n| Price | No pricing configured $ |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "9273c7b7530beaea54bc3922d639fed5d082d9ca695c7087ed0982117ad235f1",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-7B17FB9E-19D1-42B2-9696-7856C59EC92F-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Networks |\n| --- | --- |\n| SOURCE | TARGET |\n| VLAN0043 - QA | Compute |\n\n| Storage |\n| --- | --- |\n| SOURCE | TARGET |\n| ESXi-DC2-QA-LUN01 | mvm-qa-vol01 (4092.39 Gib) |\n\n| Linux Settings |\n| --- | --- |\n| USERNAME | |\n| PASSWORD | |\n| SSH KEY | Select |\n\n| Migration Options |\n| --- | --- |\n| SKIP PRECHECKS | |\n| SKIP GUEST TOOLS | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "94f2f97e027c35fc39f6ea52bcbeec7ca28cca19ceeedd8ff1548001a0455388",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-200CE557-64D2-4090-9C52-EE941972E411-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Name | Last commit message | Last commit date |\n|------|------------------------------------------------------------------------------------|------------------|\n| . | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| account-integration | scribe [Python Task (Git-sourced).scribe, a1f5c6ba-791c-49e1-975c-0f...] | 15 minutes ago |\n| code-repository | scribe [Python Task (Git-sourced).scribe, a1f5c6ba-791c-49e1-975c-0f...] | 15 minutes ago |\n| container-type-port | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| container-type-set | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| container-type | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| file-content | scribe [Test Operational Workflow.scribe, 43d7a6cc-e6ef-49d6-9667-c4...] | 8 minutes ago |\n| instance-type-layout| scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| instance-type | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| option-type-list | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| option-type | scribe [aws.scribe, tr.scribe, manual csv.scribe, bafe06ca-fbf2-439d...] | 8 minutes ago |\n| task-set-task | scribe [Test Operational Workflow.scribe, 43d7a6cc-e6ef-49d6-9667-c4...] | 8 minutes ago |\n| task-set | scribe [Test Operational Workflow.scribe, 43d7a6cc-e6ef-49d6-9667-c4...] | 8 minutes ago |\n| task | scribe [Test Operational Workflow.scribe, 43d7a6cc-e6ef-49d6-9667-c4...] | 8 minutes ago |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "99b1916a090c6c7d6ea352eadccc83ea72597c422c6c216c496d57376ee102de",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8941A511-5E0F-4C6B-85F2-BAF23A4AD8CA-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Red Hat VirtIO SCSI controller (E:\\amd64\\2k16\\viostor.inf) | Red Hat VirtIO SCSI controller (E:\\amd64\\2k19\\viostor.inf) |\n|-------------------------------------------------------------|--------------------------------------------------------------|\n| Red Hat VirtIO SCSI controller (E:\\amd64\\2k22\\viostor.inf) | Red Hat VirtIO SCSI controller (E:\\amd64\\w10\\viostor.inf) |\n| Red Hat VirtIO SCSI controller (E:\\amd64\\2k8R2\\viostor.inf) | Red Hat VirtIO SCSI controller (E:\\amd64\\w11\\viostor.inf) |\n| Red Hat VirtIO SCSI controller (E:\\amd64\\w7\\viostor.inf) | |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "9cbe011abf4d19dfacce84a8a83130ae7ea9ef19905d2a5a3d49d26fdffeeb6a",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-87EF931F-9CF2-4909-BD82-654F0658AE7D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Scoring system | Score | Maximum | Percent |\n|----------------|-------|---------|---------|\n| urn:xcddf:scoring:default | 28.125000 | 100.000000 | 28.13% |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "a0c73e06b2000acb26cc948b1c010b574075d518251416e8853e93c093a9a7c4",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-FEED6AA7-831F-4630-93F2-BD77DAB2EF2C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| **Key Points** | **Details** |\n|-----------------|--------------|\n| History | HPE was formed in 2015 as a result of the merger between Hewlett-Packard (HP) and Enterprise Services, a subsidiary of Dell. The company has a long history dating back to 1939 when William Redington Hewlett and David Packard founded HP in a small garage in Palo Alto, California. |\n| Business Segments | HPE operates through two main business segments: Enterprise Group and Technology Services. The Enterprise Group provides hardware, software, and services to help customers build, manage, and secure their IT infrastructures. The Technology Services segment offers a range of services, including cloud computing, application management, and cybersecurity. |\n| Products and Services | HPE offers a wide range of products and services, including servers, storage devices, networking equipment, software, and services. Some of its popular products include the ProLiant server, the 3PAR storage array, and the Aruba networking portfolio. |\n| Cloud Computing | HPE is a leading provider of cloud computing solutions, offering a range of services and tools to help customers build and manage their own clouds, as well as consume cloud services from HPE. The company's cloud offerings include HPE Helion Managed Cloud Services, HPE Helion Cloud Platform, and HPE Helion Development Platform. |\n| Artificial Intelligence (AI) and Machine Learning (ML) | HPE is a pioneer in the field of AI and ML, with a range of solutions and services designed to help customers leverage these technologies to improve their business outcomes. The company's AI and ML offerings include the HPE Ezmeral AI Platform, HPE Machine Learning Studio, and HPE Vertica for AI and ML workloads. |\n| Cybersecurity | HPE is a leading provider of cybersecurity solutions, offering a range of products and services designed to help customers protect their IT infrastructures from cyber threats. The company's cybersecurity offerings include the HPE Aruba ClearPass security management platform, the HPE Aruba NetProtect network security solution, and the HPE Fortify on Demand application security service. |\n| Partnerships and Collaborations | HPE has a strong track record of forming partnerships and collaborations with other technology companies to deliver joint solutions and services to customers. Some of its key partners include Microsoft, Cisco, and SAP. |\n| Locations | HPE has operations in over 170 countries around the world, with major locations in North America, Europe, Asia, and Australia. The company's global headquarters is located in San Jose, California. |\n| Employment | HPE employs over 50,000 people worldwide, with a diverse range of roles including engineering, sales, marketing, and support. The company offers a range of career development opportunities and programs to help employees grow and succeed. |\n| Community Involvement | HPE is committed to giving back to the communities where it operates, with a focus on education, innovation, and social responsibility. The company supports a range of charitable organizations and initiatives around the world. |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "a587b9e69f18e25a729a49993135bd3fe6eeea8bbeafb551cd38b257dc6382ee",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-F3A370B1-BB00-4177-8AF4-D6E5A2975918-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | LDAP Option List |\n| --- | --- |\n| DESCRIPTION | |\n| TYPE | LDAP |\n| VISIBILITY | Private |\n| Request Options | |\n| LDAP URL | ldap://ldap.mycompany.com:389/dc=mycompany,dc=com |\n| USERNAME | [email protected] |\n| PASSWORD | |\n| LDAP QUERY | {(&(objectClass=user)(cn=<%=phrase%>*)} |\n| TRANSLATION SCRIPT | Create a js script to translate the result data object into an Array containing objects with properties name and value. The input data is provided as data and the result should be put on the global variable results. |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "a7c33664c0776bb9329a870b1421a881d8106768c4a949fd7406d2ed5fa55579",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-5B05E0B0-B6AA-440E-947C-C9683D20BF9C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Action | Description |\n|--------|-------------|\n| Remove Infrastructure | Permanently deletes the host and associated infrastructure from the Cloud. |\n| Remove Associated Instances | Deletes any associated instances along with the host. |\n| Release Floating IP | Releases the floating IP address used by the host. |\n| Force Delete | (Not checked) Forcibly deletes the host without confirmation. |\n\n**Warning:** Deleting this host `sa-opv3-ubuntu-2` will permanently delete it from the Cloud. To only delete the record but leave in the Cloud, uncheck \"Remove Infrastructure\". If \"Inventory Existing Instances\" is enabled on the Cloud, the host will be re-synced as discovered.\n\nType `DELETE` to confirm."
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "af2d3777f673795987eb51cce0d05e4316aaa9533015215e9227663287f43b4c",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-B75612CA-1867-4066-937C-B66FA952D251-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Option | Description |\n|--------------|--------------------------------------------------|\n| Guest | Access as a regular user |\n| Hypervisor | Access with administrative privileges |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "b563ee984724277a7a3bd32d21b74993074dacbc47776bba6bddbea6f38a84a7",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8FF3A6DF-6A14-4A7D-B4C1-7E6BDB83B44D-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DATA DEVICE | /dev/sdb |\n|-------------|----------|\n| MANAGEMENT NET INTERFACE | eth0 |\n| STORAGE NET INTERFACE | eth1 |\n| COMPUTE NET INTERFACE | eth2 |\n| COMPUTE VLANS | 22-25 |\n| OVERLAY NET INTERFACE | - |\n| CPU TYPE | x86_64 |\n| CPU MODEL | host-model |\n| DYNAMIC PLACEMENT | On |\n| POWER POLICY | Balanced |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "b61fac50ce51fb6d1be253e5392138517010d716ea9e70ebd69e2796fd1a5ea0",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-23D2DBDA-8840-4B60-A4B2-04DAD55E279E-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| POWER | OS | NAME | TYPE | CLOUD | IP ADDRESS | COMPUTE | MEMORY | STORAGE | STATUS |\n|-------|----|------------|----------|--------|------------|---------|--------|---------|--------|\n| ON | | ah-mvm-01 | VM Host | MVM | 192.168.20.14 | 24 | 23 | 3 | \u2714\ufe0f |\n| ON | | ah-mvm-02 | VM Host | MVM | 192.168.20.17 | 64 | 29 | 3 | \u2714\ufe0f |\n| ON | | ah-mvm-03 | VM Host | MVM | 192.168.20.15 | 14 | 29 | 2 | \u2714\ufe0f |\n| ON | | ah-mvm-04 | VM Host | MVM | 192.168.20.13 | 14 | 11 | 3 | \u2714\ufe0f |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "b760888541a8dc6421957902a2d68df314254433aa016f54238dbcabbd20d204",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-B953106A-64A3-4A8C-9BA9-428AE4A26C8A-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DETAILS |\n| --- |\n| **NAME** | Production Form |\n| **CODE** | prod |\n| **DESCRIPTION** | Use for standard production deployments |\n| **CONTEXT** | |\n\n| PLACEMENT |\n| --- |\n| GROUP | All Clouds |\n| CLOUD | QA VMware |\n| POOL | No Pools Found |\n\n| SIZING |\n| --- |\n| LAYOUT | No Layouts Found |\n| PLAN | No Plans Found |\n| Cores:1 | Memory:0.0 MB Price:No pricing configured |\n| NETWORK | LOADING |\n| DISK | LOADING |\n\n| ADDITIONAL CONFIGURATION |\n| --- |\n| TAGS | key | value | + | edit | delete |\n\n| FIELD GROUP |\n| --- |\n| + ADD FIELD GROUP |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "b8a9109bc33adfe39c19788140f20843b44abf924a6db4b1c7e168f13584cdae",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-436A53AF-DF69-439A-83EE-7F9AB7045072-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Field | Description |\n|----------------|-----------------------------------------------------------------------------|\n| NAME | The name of the operating system type image |\n| CODE | A code or identifier for the operating system type image |\n| DESCRIPTION | A description of the operating system type image |\n| PLATFORM | The platform on which the resource operates or is compatible with |\n| VISIBILITY | Visibility settings (e.g., private, public) |\n| VENDOR | The company/organization providing the operating system |\n| OS VERSION | The version of the operating system |\n| CATEGORY | Identifies the environment or platform on which the resource operates |\n| OS NAME | Represents the name used to identify specific operating systems |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "b910c8df449fbe81d4759caa6f9346ef63fae3e51aaf1a19ed449c1902f1bcca",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-A56F50AC-F22B-4AB1-84B2-AE09A887951C-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| TITLE | SEVERITY | RESULT |\n|-----------------------------------------------------------------------|----------|--------|\n| Windows Server 2019 users must be prompted to authenticate when the system wakes from sleep (plugged in). | medium | PASS |\n| Windows Server 2019 users must be prompted to authenticate when the system wakes from sleep (on battery). | medium | PASS |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "ba72f6842fac7ac02476c690a2552a903c7661fd43e4796cb18447bace8b2efe",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-486B12EC-23D0-4977-9075-9BAE63439855-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Metric | Value |\n|--------------|-------|\n| Jobs | 290 |\n| Executions Today | 10 |\n| Daily Executions | 19 |\n| Completed | 9 |\n| Failed | 1 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bae11b3366f2b4df18db60430dc842bc79f3ba585b51278c10500ce8ad45401b",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-EEC38EAD-A903-41BD-8C98-BACAC114BA0E-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| App Name | Status | Impact |\n|----------|--------|--------|\n| AzureArcSysTray | On | Not measured |\n| VMware Tools Core Service | Off | No impact |\n| Windows Security notification icon | On | Not measured |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bbd2a6d9cb61585ac1bb45415c90f1d204aec9794d701e3b2750d04da925bff3",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-FEF15F44-AFFC-4639-B948-E5077F44A1AA-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| STATUS | NAME | TYPE | SCAN DATE | SCORE | RESULTS |\n|--------|------|------|-----------|-------|---------|\n| \u2705 | scap security bundle 0.1.51 | SCAP Package | 10/15/2020 06:54 PM | 28.12 | 29 passed | 39 failed | 3 |\n| \u2705 | scap security bundle 0.1.51 | SCAP Package | 10/15/2020 06:48 PM | 28.12 | 29 passed | 39 failed | 3 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bc00f3deded513c922178921d91df70d5b3ee00ebec6708db1202479e42e3789",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-714A8DE9-4992-4DB9-B9E2-5CAAD363B7A2-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Option | Description |\n|----------------------|-----------------------------------------------------------------------------|\n| New Credentials | Creates new credentials for API access |\n| username and password| Uses username and password for authentication |\n| Existing Credentials | Reuses existing stored credentials |\n| VMware Admin Username and Password | Uses VMware admin credentials |\n| Local Credentials | Selects local system credentials |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bd0feeafa05d993969d2df1320ae191a7e48d576fbddd689b3b8650e8a6199ab",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-37B0DB77-147F-4EA0-BD49-CB4DA1253ED4-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | API HOST |\n| --- | --- |\n| Morpheus|Credential Store | https://3.145.178.224 |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bd217c4bc442d28c8634cbe1c5cb7b0aa99d18405ed5f8bbf34b9e425bbfa823",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-ADEB1679-C4C4-4345-B276-57B434C94563-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Field Name | Description |\n|------------|-------------|\n| NAME | |\n| DESCRIPTION| |\n| FIELD NAME | This is the input fieldName property that the value gets assigned to. |\n| EXPORT AS TAG | |\n| TYPE | Text |\n| LABEL | This is the input label that shows typically to the left of a custom option. |\n| PLACEHOLDER| |\n| DEFAULT VALUE| |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "bf8252dfdde569f33453341e0f30ce26454c6534257833fd577fc28d78331790",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-2A54A030-6474-4ACB-B3A2-8E428EBF215E-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DETAILS | |\n|---------|------------------------------------------------------------------|\n| USE EXISTING | Morpheus Clouds |\n| TYPE | Group |\n| FIELD LABEL | Choose Group |\n| LOCALIZED LABEL | Group |\n| i18n code for the label | group |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "c016465ad7b778db58e8ff45e9b388ea921895797cfa8ccd684ee3f93639ea48",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-8E7A4B9B-FC72-4F3D-9EB8-6625130B3DA4-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| Field | Value |\n|----------------|----------------------------|\n| GROUP | All Clouds |\n| CLOUD | QA VMware |\n| POOL | No Pools Found |\n| LAYOUT | No Layouts Found |\n| PLAN | No Plans Found |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "c1c6940dc1c0f110598412065a7039d50cff21c2c1e9e963f666c2389e2168b6",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C069FB35-5152-45DA-B2FE-5C7DDE5F3563-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| NAME | BUCKET | # FILES | SIZE | TENANTS | VISIBILITY | PUBLIC URL |\n|---------------------|------------------------------|---------|------------|-----------|------------|-------------|\n| local-wiki-images | Wiki Images File Share | 1 | 117.7KiB | Private | No | No |\n| wiki-image-hosting | Wiki Image Hosting | 1 | 117.7KiB | Private | No | No |"
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sha": "c334f34338e8d5e5d2d036dc577586d41a060874835675b7717e1956bd2e0dce",
|
||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-07A59B83-A70F-407E-83F5-B6ABCB054D52-high.png",
|
||||
"model": "qwen2.5vl:7b",
|
||||
"certain": true,
|
||||
"markdown": "| DETAILS |\n| --- |\n| **NAME** | new fieldgroup |\n| **DESCRIPTION** | A short description of what types of fields are in this group |\n| **COLLAPSIBLE** | \u2610 |\n| **VISIBILITY FIELD** | [fieldName that will trigger visibility of this option] |\n\n| ACTIONS |\n| --- |\n| CANCEL | SAVE |"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user