Compare commits
10
Commits
b31121d90c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d9d303df67 | ||
|
|
de2560c19f | ||
|
|
12f8a71025 | ||
|
|
4529835cca | ||
|
|
8a67366ad6 | ||
|
|
8eec65aefa | ||
|
|
08c4b4b71d | ||
|
|
43d891968e | ||
|
|
24fb31427e | ||
|
|
4f9475825b |
@@ -18,7 +18,9 @@ env:
|
|||||||
# body cap. PULL uses the public hostname (HTTPS). Same Gitea registry.
|
# body cap. PULL uses the public hostname (HTTPS). Same Gitea registry.
|
||||||
REGISTRY_PUSH: 192.168.0.2:1234
|
REGISTRY_PUSH: 192.168.0.2:1234
|
||||||
REGISTRY_PULL: git.jpaul.io
|
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
|
# Two GPU-pinned Ollama containers on the Gitea host — same infra
|
||||||
# zerto-docs uses. :11435 = Titan X, :11436 = 1080 Ti. Indexer
|
# zerto-docs uses. :11435 = Titan X, :11436 = 1080 Ti. Indexer
|
||||||
# round-robins per batch.
|
# round-robins per batch.
|
||||||
@@ -38,6 +40,15 @@ jobs:
|
|||||||
# Full history so digest-history can walk git log.
|
# Full history so digest-history can walk git log.
|
||||||
fetch-depth: 0
|
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
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@@ -95,14 +106,14 @@ jobs:
|
|||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
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: |
|
tags: |
|
||||||
type=raw,value=latest
|
type=raw,value=latest
|
||||||
type=sha,prefix=,format=short
|
type=sha,prefix=,format=short
|
||||||
type=raw,value={{date 'YYYY.MM.DD'}}
|
type=raw,value={{date 'YYYY.MM.DD'}}
|
||||||
labels: |
|
labels: |
|
||||||
org.opencontainers.image.source=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/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
org.opencontainers.image.url=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||||
|
|
||||||
- name: Build & push (amd64)
|
- name: Build & push (amd64)
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
@@ -117,8 +128,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
OWNER="${{ github.repository_owner }}"
|
OWNER="${{ steps.repo.outputs.owner }}"
|
||||||
PKG="${{ github.event.repository.name }}"
|
PKG="${{ steps.repo.outputs.name }}"
|
||||||
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
||||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
||||||
@@ -135,7 +146,7 @@ jobs:
|
|||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
python scripts/registry_gc.py \
|
python scripts/registry_gc.py \
|
||||||
--owner "${{ github.repository_owner }}" \
|
--owner "${{ steps.repo.outputs.owner }}" \
|
||||||
--package "${{ github.event.repository.name }}" \
|
--package "${{ steps.repo.outputs.name }}" \
|
||||||
--keep-days 90 \
|
--keep-days 90 \
|
||||||
--keep-latest 5
|
--keep-latest 5
|
||||||
|
|||||||
@@ -25,9 +25,11 @@ env:
|
|||||||
REGISTRY_PUSH: 192.168.0.2:1234
|
REGISTRY_PUSH: 192.168.0.2:1234
|
||||||
REGISTRY_PULL: git.jpaul.io
|
REGISTRY_PULL: git.jpaul.io
|
||||||
|
|
||||||
# Image name derives from the repo at runtime — clones don't need to
|
# Image name is derived at runtime by the "Resolve repo identity" step
|
||||||
# edit this. github.* is the Gitea-Actions inherited namespace.
|
# from $GITHUB_REPOSITORY. Do NOT use github.event.repository.name — Gitea
|
||||||
IMAGE: ${{ github.repository_owner }}/${{ github.event.repository.name }}
|
# 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
|
# Two GPU-pinned Ollama containers on the Gitea host — same infra
|
||||||
# zerto-docs uses (deploy/ollama-rag.docker-compose.yml over there).
|
# zerto-docs uses (deploy/ollama-rag.docker-compose.yml over there).
|
||||||
@@ -37,13 +39,13 @@ env:
|
|||||||
OLLAMA_URLS: http://192.168.0.2:11435,http://192.168.0.2:11436,http://192.168.0.125:11434,http://192.168.0.126:11434
|
OLLAMA_URLS: http://192.168.0.2:11435,http://192.168.0.2:11436,http://192.168.0.125:11434,http://192.168.0.126:11434
|
||||||
EMBED_MODEL: nomic-embed-text
|
EMBED_MODEL: nomic-embed-text
|
||||||
|
|
||||||
# Vision OCR of image-only pages (support/lifecycle matrices etc. — see
|
# Vision OCR of image-only data pages (the release-schedule matrix — see
|
||||||
# scrape/vision.py). Uses the host's primary Ollama on :11434, the only one
|
# scrape/vision.py). OCR is a per-bundle opt-in (BundleSpec.ocr), so this
|
||||||
# with a vision model; the embed pool above is nomic-only. qwen2.5vl:7b
|
# only runs on allowlisted docs, NOT every screenshot in the corpus. Uses
|
||||||
# scored best on the release-schedule matrix (55-56/56, ~18s, GPU-resident,
|
# the host's primary Ollama on :11434, the only one with a vision model
|
||||||
# prompt-robust). Content-hash cached in corpus/.vision-cache/; VISION_MAX_NEW
|
# (the embed pool above is nomic-only). qwen2.5vl:7b scored best on the
|
||||||
# bounds NEW OCRs per run so the cache fills incrementally instead of a
|
# matrix (55-56/56, ~18s, GPU-resident). Any failure degrades to the
|
||||||
# multi-hour first pass. Any failure degrades to the pre-vision behavior.
|
# pre-vision behavior.
|
||||||
VISION_OCR: "1"
|
VISION_OCR: "1"
|
||||||
VISION_URL: http://192.168.0.2:11434
|
VISION_URL: http://192.168.0.2:11434
|
||||||
VISION_MODEL: qwen2.5vl:7b
|
VISION_MODEL: qwen2.5vl:7b
|
||||||
@@ -67,6 +69,16 @@ jobs:
|
|||||||
# commits back. Persist them across the run.
|
# commits back. Persist them across the run.
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
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
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@@ -187,7 +199,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
# Tag with the LAN hostname so the push goes over LAN.
|
# Tag with the LAN hostname so the push goes over LAN.
|
||||||
# docker-compose on the deploy host pulls via git.jpaul.io.
|
# 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: |
|
tags: |
|
||||||
type=raw,value=latest
|
type=raw,value=latest
|
||||||
type=sha,prefix=,format=short
|
type=sha,prefix=,format=short
|
||||||
@@ -196,8 +208,8 @@ jobs:
|
|||||||
# Override auto-derived labels with the PUBLIC URL so Gitea
|
# Override auto-derived labels with the PUBLIC URL so Gitea
|
||||||
# can auto-link the package back to this repo.
|
# can auto-link the package back to this repo.
|
||||||
labels: |
|
labels: |
|
||||||
org.opencontainers.image.source=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/${{ github.repository_owner }}/${{ github.event.repository.name }}
|
org.opencontainers.image.url=https://git.jpaul.io/${{ steps.repo.outputs.owner }}/${{ steps.repo.outputs.name }}
|
||||||
|
|
||||||
- name: Build & push (amd64)
|
- name: Build & push (amd64)
|
||||||
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
if: steps.commit.outputs.changed == 'true' || inputs.force_build == true
|
||||||
@@ -219,8 +231,8 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
OWNER="${{ github.repository_owner }}"
|
OWNER="${{ steps.repo.outputs.owner }}"
|
||||||
PKG="${{ github.event.repository.name }}"
|
PKG="${{ steps.repo.outputs.name }}"
|
||||||
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
code=$(curl -s -o /tmp/link.out -w "%{http_code}" -X POST \
|
||||||
-H "Authorization: token ${GITEA_TOKEN}" \
|
-H "Authorization: token ${GITEA_TOKEN}" \
|
||||||
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
"https://git.jpaul.io/api/v1/packages/${OWNER}/container/${PKG}/-/link/${PKG}")
|
||||||
@@ -239,7 +251,7 @@ jobs:
|
|||||||
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
GITEA_TOKEN: ${{ secrets.REGISTRY_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
python scripts/registry_gc.py \
|
python scripts/registry_gc.py \
|
||||||
--owner "${{ github.repository_owner }}" \
|
--owner "${{ steps.repo.outputs.owner }}" \
|
||||||
--package "${{ github.event.repository.name }}" \
|
--package "${{ steps.repo.outputs.name }}" \
|
||||||
--keep-days 90 \
|
--keep-days 90 \
|
||||||
--keep-latest 5
|
--keep-latest 5
|
||||||
|
|||||||
+58
-12
@@ -14,7 +14,8 @@
|
|||||||
"Published": "February 2026"
|
"Published": "February 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007510en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007510en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_user_manual_8_1_1",
|
"slug": "morpheus_user_manual_8_1_1",
|
||||||
@@ -31,7 +32,8 @@
|
|||||||
"Published": "March 2026"
|
"Published": "March 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007621en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007621en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_user_manual_8_1_2",
|
"slug": "morpheus_user_manual_8_1_2",
|
||||||
@@ -48,7 +50,8 @@
|
|||||||
"Published": "April 2026"
|
"Published": "April 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007732en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007732en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_release_notes_8_1_0",
|
"slug": "morpheus_release_notes_8_1_0",
|
||||||
@@ -65,7 +68,8 @@
|
|||||||
"Published": "February 2026"
|
"Published": "February 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "sd00007496en_us",
|
"landing_page": "sd00007496en_us",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007496en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007496en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_release_notes_8_1_1",
|
"slug": "morpheus_release_notes_8_1_1",
|
||||||
@@ -82,7 +86,8 @@
|
|||||||
"Published": "March 2026"
|
"Published": "March 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "sd00007610en_us",
|
"landing_page": "sd00007610en_us",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007610en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007610en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_release_notes_8_1_2",
|
"slug": "morpheus_release_notes_8_1_2",
|
||||||
@@ -99,7 +104,8 @@
|
|||||||
"Published": "April 2026"
|
"Published": "April 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "sd00007733en_us",
|
"landing_page": "sd00007733en_us",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007733en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00007733en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_user_manual_9_0_0",
|
"slug": "morpheus_user_manual_9_0_0",
|
||||||
@@ -109,14 +115,15 @@
|
|||||||
"platform": null,
|
"platform": null,
|
||||||
"product": "User Manual",
|
"product": "User Manual",
|
||||||
"language": "en-US",
|
"language": "en-US",
|
||||||
"page_count": 623,
|
"page_count": 631,
|
||||||
"mode": "toc",
|
"mode": "toc",
|
||||||
"abstract": "",
|
"abstract": "",
|
||||||
"dates": {
|
"dates": {
|
||||||
"Published": "May 2026"
|
"Published": "July 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008014en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008014en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_release_notes_9_0_0",
|
"slug": "morpheus_release_notes_9_0_0",
|
||||||
@@ -133,7 +140,8 @@
|
|||||||
"Published": "May 2026"
|
"Published": "May 2026"
|
||||||
},
|
},
|
||||||
"landing_page": "sd00008017en_us",
|
"landing_page": "sd00008017en_us",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008017en_us"
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008017en_us",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_quickspecs",
|
"slug": "morpheus_quickspecs",
|
||||||
@@ -148,7 +156,8 @@
|
|||||||
"abstract": "",
|
"abstract": "",
|
||||||
"dates": {},
|
"dates": {},
|
||||||
"landing_page": "a50009231enw",
|
"landing_page": "a50009231enw",
|
||||||
"source_url": "https://www.hpe.com/psnow/doc/a50009231enw"
|
"source_url": "https://www.hpe.com/psnow/doc/a50009231enw",
|
||||||
|
"ocr": false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"slug": "morpheus_release_schedule",
|
"slug": "morpheus_release_schedule",
|
||||||
@@ -165,6 +174,43 @@
|
|||||||
"Published": ""
|
"Published": ""
|
||||||
},
|
},
|
||||||
"landing_page": "sf000111242en_us",
|
"landing_page": "sf000111242en_us",
|
||||||
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=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
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"slug": "morpheus_user_manual_9_0_1",
|
||||||
|
"doc_id": "sd00008375en_us",
|
||||||
|
"title": "HPE Morpheus Enterprise Software Documentation v9.0.1",
|
||||||
|
"version": "9.0.1",
|
||||||
|
"platform": null,
|
||||||
|
"product": "User Manual",
|
||||||
|
"language": "en-US",
|
||||||
|
"page_count": 569,
|
||||||
|
"mode": "toc",
|
||||||
|
"abstract": "",
|
||||||
|
"dates": {
|
||||||
|
"Published": "August 2026"
|
||||||
|
},
|
||||||
|
"landing_page": "GUID-709AAADB-A9C1-40B6-AD22-958EE7E6F312",
|
||||||
|
"source_url": "https://support.hpe.com/hpesc/public/docDisplay?docId=sd00008375en_us",
|
||||||
|
"ocr": false
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "004727d68243b46f1c9da3b721ff2fd5c25c8522ddd32779ce764a89eb6d14a3",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-37BE6AA0-10E5-4D0D-BCC1-0834A578B1EC-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Appliance Node | Description |\n|-----------------|-------------|\n| NGINX | Web server and reverse proxy |\n| MySQL | Relational database management system |\n| RabbitMQ | Message broker for distributed computing systems |\n| Elastic | Search engine and analytics platform |\n\nSingle Node Configuration:"
|
|
||||||
}
|
|
||||||
+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": "01ead735c66aba141671ea427e8256b9856d4eca7f389a6749235679950f2d75",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-79453DE4-A795-4FEB-9670-0F214A7163FF-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Successful | Failed |\n|------------|--------|\n| 4 | 0 |"
|
||||||
|
}
|
||||||
+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": "0559dbe594c6eecb13b900ac4f62ff32af05647fb2442ff43044074bbd01aaa2",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BB8CA295-BF75-426C-941D-EBB1FB9233DC-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| HEALTH SUMMARY |\n| --- |\n| Overall | CPU | Memory | Database | Elastic | Queue |\n| \u2705 | \u2705 | \u2705 | \u2705 | \u2705 | \u2705 |\n\n| HEALTH LEVELS |\n| --- |\n| MORPHEUS CPU: 10% |\n| SYSTEM CPU: 17% |\n| MORPHEUS MEMORY: 73% |\n| SYSTEM MEMORY: 93% |\n| USED SWAP: 5% |\n\n| CPU |\n| --- |\n| Processor Count: 8 |\n| System CPU: 16.82% |\n| Process Time: 17 days 22 hours |\n| System Load: 2.16 |\n| Morpheus CPU: 10.39% |\n\n| MEMORY |\n| --- |\n| Morpheus Memory: 15.0GiB |\n| Morpheus Memory Usage: 73.08% |\n| System Free Memory: 4.5GiB |\n| Morpheus Used Memory: 10.9GiB |\n| Morpheus Free Memory: 4.0GiB |\n| System Memory: 62.7GiB |\n| System Memory Usage: 92.77% |\n| System Used Memory: 28.1GiB |\n| System Swap: 1.9GiB |\n\n| DATABASE |\n| --- |\n| Lifetime Connections: 34863 |\n| Max Connections: 151 |\n| Slow Queries: 0 |\n| Buffer Pool Free: 5229 |\n| Full Joins: 0 |\n| Engine Waits: 0 |\n| Engine IO Writes: 6466226 |\n| Engine Log Writes: 3192436 |\n| Buffer Pool Size: 8192 |\n| Old Pages: 2625 |\n| Pending Reads: 0 |\n| Delete Rate: 0.36 / s |\n| Read Write Ratio: 0.573 |\n| Aborted Connections: 0 |\n| Threads Running: 4 |\n| Temp Tables: 0 |\n| Open Tables: 2000 |\n| Key Read Requests: 60 |\n| Lock Waits: 0 |\n| Engine IO Reads: 36304508 |\n| Engine Memory: 131.1MiB |\n| Free Buffers: 937 |\n| Dirty Page Percent: 0.00% |\n| Insert Rate: 0.84 / s |\n| Read Rate: 25,005.75 / s |\n| Uptime: 2 days 13 hours |\n| Max Used Connections: 88 |\n| Threads Connected: 21 |\n| Handler Read First: 0 |\n| Table Scans: 0 |\n| Key Reads: 15 |\n| Handler Read Rnd: 164 |\n| Engine IO Double Writes: 224802 |\n| Dictionary Memory: 7.5MiB |\n| Database Pages: 7082 |\n| Max Dirty Pages: 0.00% |\n| Update Rate: 11.02 / s |\n| Buffer Hit Rate: 100.00%"
|
||||||
|
}
|
||||||
+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": "06ec9653b4a998c26c4ea0955167d9386e2b2dca5335014b6b845d62f4de7097",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-DAC903C8-75F8-45F5-8C24-8217DDD1758F-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Policies | Clouds |\n|----------|--------|\n| Max Cores<br>Max Memory<br>Max VMs | Azure RG1 |\n| Max Cores<br>Max Memory<br>Max VMs | Azure RG2 |\n| Max Cores<br>Max Memory<br>Max VMs | Azure RG3 |\n\n| Groups | Roles |\n|--------|-------|\n| A | Group A |\n| B | Group B |\n| C | Group C |\n| | Feature Set A |\n| | Feature Set B |\n| | Feature Set C |\n\n| Users | |\n|-------|---|\n| A | |\n| B | |\n| C | |"
|
||||||
|
}
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "076d0812f7825491968411125bbf31a6164bb4c968991299e21e29514ac94425",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3073851F-5D93-4F03-94A1-C77B7D140E46-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Key Path | secret/aws/* |\n|----------|---------------|\n| READ | \u2714 |\n| WRITE | \u2714 |\n| UPDATE | |\n| DELETE | |\n| LIST | \u2714 |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "0819a450fc742f430aa7772e4ca095e0a756c6f626caaa6fdef38ddfe20c8bdd",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-444E2530-12E2-439A-A1C7-EED4D7F91D38-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| STATUS | RESOURCE | INFO | START DATE | DURATION |\n|--------|----------|------|------------------|----------|\n| | VMware | shredder.jabalabs.cloud | vSphere Distributed Switch VLAN trunked status | 01/07/2026 07:16 AM | 5d 2h |\n| | VMware | shredder.jabalabs.cloud | vSphere Distributed Switch MTU supported status | 01/07/2026 07:16 AM | 5d 2h |"
|
|
||||||
}
|
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "085c30f9fd4ac67665a7124e4673e280c94765a563e7d7cc2f32550aeec61fcd",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-A11613FB-FC10-42BC-A6A3-3FB44D08260B-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Name | Date Modified | Type | Size |\n|----------------|---------------------|-------------|--------|\n| ActionFiles | 11/5/2022 12:03 PM | File folder | - |\n| en-US | 9/15/2018 2:08 AM | File folder | - |\n| Panther | 7/25/2024 1:36 PM | File folder | - |\n| sysprep | 11/5/2022 12:00 PM | Application | 1,320 KB|\n| Sysprep_succeeded.tag | 7/25/2024 1:38 PM | TAG File | 0 KB |"
|
||||||
|
}
|
||||||
+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": "0b1cd5de03b6e78cef445ee15e2c3521d68095ea1f890c3b923c84e3a065abff",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BCC17FD5-DF6E-4653-96F8-5647B13E6ED8-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Category | Item |\n|----------------|-------------|\n| DESKTOPS | CentOS |\n| | Windows 10 |\n| | desktop |\n| | Doom |\n| | Excel |\n| | NotePad |\n| | Chrome |\n| | Word |\n| | PowerShell |\n| FAVORITE INSTANCES | HyperV-2016-1 |\n| | LabAD |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "0b78951e1901048d014602a73c1768104b66b34258c44386129da68ce5a4346b",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-9916D4B0-7144-4088-98AC-2B2F2E780378-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| CLOUD | COUNT | MEMORY | STORAGE | CPU | PRICE |\n|-------|-------|--------|---------|-----|-------|\n| VMware | 2 | 5.9GiB | 22.0GiB | 1 | $0.07 |"
|
|
||||||
}
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "0c265d6963baa34d0ea65afe5ffcd143192c92fc3764d355f479511ea8ea9b3c",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D08A61BD-C24A-4D73-82C0-45BAEBC26DCB-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| NAME | DESCRIPTION | MONTH TO DATE | PROJECTED TOTAL |\n|------------|--------------------------------------------------|-----------------|------------------|\n| morpheus | | $2,388.69 | $4,227.03 |\n| | | | |\n| | | | |\n| | | | |\n| | | | |"
|
|
||||||
}
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "0d7e95ff875283137ebbdf9dcb476e083050c8cfe8caa48f32e17e24ebfdab59",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BF328552-F0CB-4A16-89DE-DD5E534DDA21-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Report Type | Description |\n|-------------|-------------|\n| Tenant Inventory Summary | View an inventory of VMs and containers by tenant. |\n| Cloud Usage | View a cloud's usage of storage, memory, and compute resources. |\n| Cloud Usage App Summary | View a cloud's usage of storage, memory, and compute resources by app. |\n| Cloud Usage Instance Type Summary | View a cloud's usage of storage, memory, and compute resources by instance type. |\n| Tenant Usage | View a cloud's usage of storage, memory, and compute resources by tenant. |\n| Amazon Reservation Coverage | View how Amazon EC2 instance types are covered by Reserved Instances. |"
|
|
||||||
}
|
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "0e78b42cbc9dafd226f0846194a5cd21876d3db7feb4fd82eefa89d0a9af4b1a",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-74C68A7E-D6DD-4E56-A374-AF1DCA8F68DA-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| NAME | CODE | LOCATION |\n|------------|-------|----------|\n| All Clouds | | |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "108db8dfcfb10934fe7ddde7d91ed6f484ebf9fdf9fe86a72e99a17801f087fd",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3B425176-5841-4C03-B67D-F6B86603E1CD-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| TAG | WORKLOADS | MEMORY | STORAGE | CPU | PRICE | VALUES |\n|--------------------|-----------|------------|------------|-------|--------|--------|\n| Morpheus Server Id | 37 | 4.6TiB | 73.8TiB | 1 | $299.32| |\n| Morpheus Id | 21 | 2.4TiB | 25.4TiB | 1 | $172.56| |"
|
|
||||||
}
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "10bf0d71532812d10314a37a13ab69ad4fdb49490e08156a6a2f993672c3f295",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-4029426C-1AA2-4873-AE1C-CB4677EFB0F7-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Name | Title | Category |\n|------|-------|----------|\n| | | |"
|
|
||||||
}
|
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "1210d0aee2152b2863303cbc02e5dc82474f4ae783733100719cae9a1a3e9748",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-66262EA5-76D1-41C6-AE62-C1CF505E9976-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| INVOICE ID | PERIOD | COMPUTE | STORAGE | NETWORK | EXTRA | MTD | TOTAL |\n|------------|--------------|----------|-----------|------------|-----------|------------|------------|\n| 1326425 | September 2020 | $0 | $0 | $0 | $0 | $43.84 | $1,944.02 (Projected) |\n| 1309811 | August 2020 | $1,309.98 | $1,227.51 | $9.56 | $0 | $2,783.84 | $2,783.84 |\n| 1300026 | July 2020 | $1,524.81 | $4,361.13 | $9.64 | $0 | $6,044.27 | $6,044.27 |\n| 1279589 | June 2020 | $4,448.53 | $61.58 | $8.24 | $0 | $4,518.35 | $4,700.00 |\n| 404134 | May 2020 | $0 | $0 | $0 | $0 | $105.37 | $105.37 |\n| 394365 | April 2020 | $0 | $0 | $0 | $0 | $66.99 | $66.99 |\n| 401131 | March 2020 | $0 | $0 | $0 | $0 | $31.58 | $31.58 |\n| 387577 | February 2020 | $0 | $0 | $0 | $0 | $40.62 | $40.62 |\n| 382300 | January 2020 | $0 | $0 | $0 | $0 | $22.31 | $22.31 |"
|
|
||||||
}
|
|
||||||
+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": "13ec8967b16468d60686f350e2e341669282b9be0ac24fb151ba86dc49d27aab",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-453CA12C-D7A9-4CFE-83D3-B133334EE8C4-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| TYPE | NAME |\n|------------|-----------------------------------------------------------------------|\n| AMI | CentOS Linux 7 x86_64 HVM EBS |\n| QCOW2 | morpheus ubuntu 14.04 |\n| QCOW2 | morpheus_10.iso |\n| QCOW2 | morpheus_11.iso |\n| QCOW2 | morpheus_12.iso |\n| QCOW2 | morpheus_13.iso |\n| QCOW2 | morpheus_14.iso |\n| QCOW2 | morpheus_15.iso |\n| QCOW2 | morpheus_19.iso |\n| QCOW2 | morpheus_20.iso |\n| QCOW2 | morpheus_27.iso |\n| VMDK | win2016 |\n\n| ACCOUNTS | STATUS | ACTIONS |\n|------------|---------------|------------|\n| Account | Available | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |\n| Account | Active | ACTIONS |"
|
||||||
|
}
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "14d43e1548e48a5a45e557ec8e68c8145f54b341265d8ed07ee4d21ca3342d25",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C9464126-F50C-4309-9A8F-892576EBC646-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| NAME | DESCRIPTION | PROXY HOSTS | API KEY |\n|------|-------------|-------------|----------|\n| My Worker | | 10.1.20.15 | |"
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "1609a0928a70f0173675bc070f5ec5a975aa7b73c5e5c906e30edfec6e2ffc16",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-6493DA77-2790-4079-9636-57D2B389DBCD-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Discovery Info | Z-VRA-10.30.21.61 |\n|----------------|--------------------|\n| Resize Resource | VMware Demo Cluster |\n| Date | 12/14/2018 11:05 AM |\n| Cloud | VMware Demo Cluster |\n| Savings | $50.00/month |\n\n| Icon | Label | Value |\n|------|---------|----------|\n| \ud83d\udd04 | Power | |\n| \u2705 | Status | |\n| \ud83d\udd0d | Type | |\n|\ud83d\udc27 | OS | |\n| VMware| Cloud | |\n\n| Usage Plan | Custom VMware |\n|------------|----------------|\n\n| Icon | Label | Value |\n|------|-----------|-------------|\n| \ud83d\udd04 | Compute | 1% of 100% |\n| \u2705 | Memory | 30.0MB of 3.0GB |\n\n| After Resize | Memory: 1.5GiB |\n|--------------|----------------|\n| Icon | Label | Value |\n| \ud83d\udd04 | Compute | 1% of 100% |\n| \u2705 | Memory | 30.0MB of 1.5GB |\n\n| Buttons | Close | Ignore | Execute |"
|
|
||||||
}
|
|
||||||
+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": "183e07b90dd2fbd31a4a60beb53eb2bfc6c7b6883e863c3074d3150c49e9b0a1",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-1FEC124E-FF68-4E72-9872-1D336777E8E5-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "The image you provided does not contain any tabular data that can be transcribed into a GitHub Markdown table. The image shows a login screen for Morpheus with options to log in using Azure SSO or username and password.\n\nIf you have specific information from the image that you would like to convert into a markdown table, please provide the details so I can assist you better."
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "1b3ef9f9775e56c224ec7226797d34581b7c7ea8f76d5412c39e38a0427dac4a",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-F0EDC63A-480C-4013-AC6D-A1C51BA13CC7-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| CONFIGURATION OPTIONS | VALUE |\n|-----------------------|-------|\n| NAME | ${userInitials}-demo-${cloudCode}-${type}-${sequence} |\n| DESCRIPTION | Sample Spud Marketing App |\n| CLOUD | Labs UCS |\n| VERSION | Tomcat 7 jdk 7 |\n| INSTANCE CONFIGURATION| Docker Tomcat |\n| PLAN | 1GB Memory, 10GB Storage |\n| VOLUMES | 10 GB |\n| HOST | Select Server |"
|
|
||||||
}
|
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "1bc3fd167c86f701d8c177cbb2561afe80e892da04cfd0051a49d0725d5618b6",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-274AD26D-C940-4740-BBC7-7970107CCB4B-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| CLIENT ID | ACCESS TOKEN | REFRESH TOKEN | EXPIRES |\n|-----------|--------------|---------------|----------|\n| morph-api | [redacted] | [redacted] | 09/25/2021 10:42 PM |\n| morph-automation | [redacted] | [redacted] | 09/25/2020 11:06 PM |\n| morph-cli | [redacted] | [redacted] | 06/12/2020 09:16 PM |\n| morph-customer | [redacted] | [redacted] | 09/25/2021 10:33 PM |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "1c33e5f4d6f7ee6ac8843fe2ef3d9b5dc61ad2a3bb36ce369414ccbb2c8155e0",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-1DE90FFC-D78A-4AEC-B168-D1AF1DF3E611-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Purchase a License |\n|---------------------|\n| You must apply a license before using Morpheus.<br>If you would like to purchase a license or get a free trial please contact us at <a href=\"mailto:[email protected]\">[email protected]</a>,<br>or call 800-946-9180. |\n| **UPGRADE** |\n\n| Upgrade License Key |\n|---------------------|\n| If you have a new license key, enter it below.<br>If you need a new license key or would like to upgrade, please contact us at <a href=\"mailto:[email protected]\">[email protected]</a>,<br>or call 800-946-9180. |\n| **UPDATE** |"
|
|
||||||
}
|
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "1cb85a129049794b4721f5b21f1f1002ae437a617a32574928b37e3061059ede",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-FC41C95A-2672-476A-B22E-2C2541407BB8-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| NAME | DESCRIPTION | GATEWAY | DNS PRIMARY | DNS SECONDARY | CIDR | VLAN ID |\n|------|-------------|---------|-------------|------------|------|----------|\n| 172.31.0.0/20 (subnet-ecb848b4) | 172.31.0.0/20 | | | | |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "1e1ffb9b2f2d9f3380da47af0df1fa81a23eaa844376dc60624d7acd8ee57797",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3AE2F03E-DBC7-4FC1-BED0-DB5F6B096D9F-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Group | Environment | Cloud | Resource Pool | Plan | Network | Security Group | Name |\n|-------|-------------|-------|----------------|------|----------|-----------------|------|\n| All Clouds | Dev | QA Amazon | labs | T2 Micro - 1 Core, 1GB Memory | 172.31.0.0/20 (subnet-22ba157b) | default | My Workload |"
|
|
||||||
}
|
|
||||||
+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": "1f35231ded89627e7da57fc0b4ff02df37de660fde4add680c0c45e593af1173",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-3D217ABE-3194-420B-A2D6-DD5262F136EC-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| GROUP | ACCESS | DEFAULT |\n|-------|--------|---------|\n| all | \u2705 | |\n| AA | | |\n| AA-DB | | |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "207e759fbbc5b40a0134c1937aa1c98d94b416773bd2c9558fe55fe7ac30f701",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-433AD4AB-C735-49B2-913B-302BF3209248-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Task Name | Start Date | Duration |\n|-----------|------------|----------|\n| Retry Test - Write Pre-Provision Templates | 03/07/2023 03:30 PM | 0s |\n| Retry Test - Write Provision Templates | 03/07/2023 03:30 PM | 0s |\n| Retry Test - Run Task: *Retry Test 1 in *Retry Test Provisioning - Provision | 03/07/2023 03:30 PM | 1s |\n| Retry Test - Run Task: *Retry Test 2 in *Retry Test Provisioning - Provision | 03/07/2023 03:30 PM | 1s |\n| Retry Test - Run Task: *Retry Test 3 in *Retry Test Provisioning - Provision | | |\n| Retry Test - Complete Provisioning | | |"
|
|
||||||
}
|
|
||||||
+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": "212d2405c0678042ce2b0959ea85b567533e8c7e429539838604b773d0e70fca",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-6791DB71-7757-41D2-985E-8E45863D89CD-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Tier | Components |\n|------------|---------------------------------------------------------------------------|\n| APP TIER | NGINX, Tomcat, Guacamole |\n| QUEUE TIER | RabbitMQ |\n| SEARCH TIER| Elasticsearch |\n| DATABASE TIER| Percona |"
|
||||||
|
}
|
||||||
+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": "26024ffa9ee010769a5b3c4ed05d0b010c4bbfe630712ad2074e1837276c69fc",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-9AB26FDA-4C5C-4F4C-ACD5-1013B6D3F162-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| NAME | DESCRIPTION | GATEWAY | DNS PRIMARY | DNS SECONDARY | CIDR | VLAN ID |\n|------|-------------|---------|-------------|------------|------|----------|\n| 172.31.0.0/20 (subnet-ecb848b4) | 172.31.0.0/20 | | | | |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "2703f9599273300532c6f5822e484a45c16e41d97d7ee194a4abe566ad03d987",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-D954DA2F-C2AD-4BD7-B7C3-02CE5AEF0719-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| ORDER PLACED | ITEMS ORDERED | ORDER STATUS |\n|--------------|---------------|--------------|\n| 09/22/2020 | 1 | Complete |"
|
|
||||||
}
|
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "2a7cadedede3d9802e8b87c3bc55cc40a0f248e46504a464fad1391558dc0828",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-EED20D75-2987-4570-A0F2-5AD920F49D1D-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Instance | Type | Address |\n|----------|------------|--------------------|\n| | | |"
|
|
||||||
}
|
|
||||||
+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": "2d6dc114f31f38e2c7843a3767437159f9da6df0ff4e10e2e1c12a46e8e8fbf5",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BF8023AD-C31F-4FF1-A51C-AE47C55EA399-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Type | Name |\n|------------|----------|\n| Amazon Web Services | aws_jw |\n| ESXi | esxi4 |\n| Hyper-V | hyv-den-001 |\n| Azure | jwtest |\n| Morpheus | Morpheus |\n| Nutanix | nutanix |"
|
||||||
|
}
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "2f530b00e421670b3e4a671914f8332f13b41ee1c6ddec8570265f377907b577",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-FBFB8AA8-171F-4668-BD6A-CAE4F5870AA8-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| STATUS | NAME | TYPE | CLOUD | ADDRESS(ES) | COMPUTE | MEMORY | STORAGE |\n|--------|------|------|-------|--------------|---------|--------|---------|\n| Stopped | ah-mvm-mvm-01 | MVM 1.0 | MVM | | 0 | 0 | 0 |"
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "35fb2d3c6bf82a8ca417866184a1c93c40c0551c9f582ccbb8e8cf54dccbb9e1",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-C731E3A8-F507-477B-93AB-71BC98DA37A0-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| INSTANCE TYPE | ON DEMAND HOURS | RESERVED HOURS | TOTAL HOURS | COVERAGE |\n|-------------------------|------------------|-----------------|-------------|----------|\n| DV2/DSV2 SERIES | 384.15 | 0.0 | 384.15 | 0.0% |\n| A SERIES WINDOWS | 1,366.82 | 0.0 | 1,366.82 | 0.0% |\n| A SERIES BASIC | 1,556.2 | 0.0 | 1,556.2 | 0.0% |\n| AV2 SERIES | 178.33 | 0.0 | 178.33 | 0.0% |\n| BS SERIES | 1,534.95 | 0.0 | 1,534.95 | 0.0% |\n| AV2 SERIES WINDOWS | 3.07 | 0.0 | 3.07 | 0.0% |\n| BS SERIES WINDOWS | 381.92 | 0.0 | 381.92 | 0.0% |\n| A SERIES | 383.35 | 0.0 | 383.35 | 0.0% |\n| DV2/DSV2 SERIES WINDOWS | 2.47 | 0.0 | 2.47 | 0.0% |"
|
|
||||||
}
|
|
||||||
+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": "3779689a876258b2047d2eff7638a71c07b4bac94a71d82b4f65266b89515583",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-37B199A3-DCEC-41E4-AE0B-8BE8A37EA55B-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| VirtualBox | VIRTUALBOX |\n|------------|-------------|\n| Virtustream | VIRTUSTREAM |\n| VMware on AWS | VMWARE CLOUD ON AWS |\n| VMware ESXi | VMWARE ESXI |\n| VMware Fusion | VMWARE FUSION |\n| VMware | VMWARE VCENTER |\n| XenServer | XENSEWER |"
|
||||||
|
}
|
||||||
+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": "398ea18cc3872860c5a80effa05be6a5445cf7c7ec08e68cbeec3049a6db64bb",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BA083368-6AF1-4E7D-A035-B175C86AED03-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| TYPE | NAME |\n|------------|----------------|\n| cudemohadev13 | View Details |"
|
||||||
|
}
|
||||||
+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": "3d6dc63120b4c4663f6e686a74cc030401bb68d5e2c4d28eff2ef70206cf2b22",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-A6C1B836-5DF2-47CE-A78A-0A94A1A777C0-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Field | Value |\n|----------------|----------------------|\n| NAME | esxi-dh4 |\n| DESCRIPTION | |\n| VISIBILITY | Public |\n| Enabled | \u2713 |\n| Manage Internal Firewall | \u2713 |\n| USERNAME | username |\n| PASSWORD | ************ |\n| RPC HOST | 172.16.1.52 |\n| INTERNAL IP | 172.16.1.52 |\n| EXTERNAL IP | 172.16.1.52 |"
|
||||||
|
}
|
||||||
-7
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "3e5c1feb5480ae7eb79b7c1b263f5e32ff360c14725cc8b966a93f60368fb119",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-EF84CC50-D2E4-4906-9051-655D7B15CE65-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| TYPE | NAME | TECHNOLOGY | LABELS |\n|------------|----------------|-------------|----------------|\n| Resource | *test | Amazon | aws |\n| Resource | Custom Amazon CentOS | | centos |\n| Resource | Custom App | | app, aws, vmware |\n| Resource | Custom VMware Ubuntu | | ubuntu, vmware |"
|
|
||||||
}
|
|
||||||
+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": "4002b78fe0c1d2cb0c584be4ccfc8d75f548a6c39294ac412ad4033ee8b454d5",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-394CC8A6-5257-4B4C-BF41-E10643BEEE8A-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Action | Description | Start Date | Duration | User |\n|--------|-------------|------------|----------|------|\n| Upgrade | QA Kubernetes Cluster - Upgrading QA Kubernetes Cluster to v1.23.15 from v1.23.8 | 01/17/2023 11:53 AM | 17s | Tommy Marks |\n| Upgrade | QA Kubernetes Cluster - Upgrading QA Kubernetes Cluster to v1.23.8 from v1.23.5 | 11/08/2022 02:54 PM | 4m 54s | Tommy Marks |"
|
||||||
|
}
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "416bcb90cebd3411e9bcf131e84edb4f93d0e61c61c717a833c856ed286f6355",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-77B5C886-86F4-40C1-A0D1-DE6EDDA1EBBB-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| NAME | TYPE | CLOUD | CAPACITY | VISIBILITY | ACCOUNT |\n|------------|--------|--------|----------|------------|---------|\n| datastore1 | Generic| esxi4 | Unknown | Private | Master Account |\n| datastore2 | Generic| esxi4 | Unknown | Private | Master Account |"
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "42588cd48ecf67c8688139c09bbb9676714c4512587e6e98f943abc6ca6e64e0",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-54937FF3-952A-40DE-8C06-8E193416776A-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Date | Memory Usage (GB) |\n|------------|--------------------|\n| Apr-21 | 0 |\n| Apr-24 | 8500 |\n| Apr-27 | 9000 |\n| Apr-30 | 9500 |\n| May-03 | 90000 |\n| May-06 | 95000 |\n| May-09 | 100000 |\n| May-12 | 95000 |\n| May-15 | 100000 |\n| May-18 | 105000 |\n| May-21 | 85000 |\n| May-24 | 90000 |\n| May-27 | 95000 |\n| Jun-02 | 90000 |\n| Jun-05 | 85000 |\n| Jun-08 | 80000 |\n| Jun-11 | 85000 |\n| Jun-14 | 80000 |\n| Jun-17 | 85000 |\n| Jun-20 | 90000 |"
|
|
||||||
}
|
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sha": "426ab1666272c83aeb4ced65adaa4fc5cdbc1199bcdc3be8c0f4bafaec40180d",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-63A43C98-F636-420D-828D-19BF24B01237-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| SCOPE | ROLE |\n|-------|------|\n| Role | cypher_access_test_role |\n\n| APPLY INDIVIDUALLY TO EACH USER IN ROLE |\n|------------------------------------------|\n\n| TENANTS | Search |\n|---------|--------|"
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "44cacfa1e7cf2dc66d8c5311b72b3c686ec565d947f3b1d26ad502770b92f094",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-77399E18-27B9-465D-885C-F34C86B2EA19-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Job Configuration | Value |\n|-------------------|-------|\n| SECURITY PACKAGE | scap security bundle 0.1.51 |\n| SCAN CHECKLIST | /scap-security-guide-0.1.51/ssg-ubuntu1804-ds.xml |\n| SECURITY PROFILE | xccdf_org.ssgproject.content_profile_cis |\n\n| Execution Config | Value |\n|--------------------|-------|\n| SCHEDULE | Daily |\n| RUN NOW | (unchecked) |\n| CONTEXT TYPE | Server |\n| CONTEXT SERVER | de-ubuntu-1 |"
|
|
||||||
}
|
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "4af3aed5fcf9f5c13c9786cf0687bd2410e8248df9589e41ed443a75b1a1792e",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-BA459071-AEAD-4E96-8DB9-FD67DDE9ABC5-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Field | Description |\n|--------------|-----------------------------------------------------------------------------|\n| NAME | My Task |\n| CODE | (empty) |\n| LABELS | A comma-separated list of labels that can be used to group/organize items. |\n| TYPE | Python Script |\n| RESULT_TYPE | None |\n| SOURCE | Local |\n| CONTENT | morpheus['cypher']['read']('') |"
|
|
||||||
}
|
|
||||||
+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": "4d38c5932bae36102e4e56772f090913feb6e0bbd9f922669614942d8c736384",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-FEB50132-F13C-491F-83D8-FEABA6E7BB0C-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Identity Source | SAML SSO Configuration |\n|-----------------|------------------------|\n| TYPE | SAML SSO |\n| NAME | |\n| DESCRIPTION | |\n| LOGIN REDIRECT URL | SAML Login URL Required |\n| SAML LOGOUT REDIRECT URL | SAML Logout Redirect URL (optional) |\n| INCLUDES SAML REQUEST PARAMETER | Yes |\n| SAML REQUEST | No Signature |\n| SAML RESPONSE | Do Not Validate Assertion S |\n| | Encryption RSA Private Key (Optional) |\n\n| Role Mappings | Role Options |\n|----------------|------------------------|\n| DEFAULT ROLE | Little Access |\n| ROLE ATTRIBUTE NAME | memberOf |\n| REQUIRED ROLE ATTRIBUTE VALUE | |\n| LITTLE ACCESS | Assertion Attribute Mappings |\n| SUPER ADMIN - MULTI-TENANT | Assertion Attribute Mappings |\n| SYSTEM ADMIN - MULTI-TENANT | Assertion Attribute Mappings |\n\n| Role Options | Advanced Validation Options |\n|----------------|------------------------------|\n| ENABLE ROLE MAPPING PERMISSION | Show/Hide |\n| MANUAL ROLE ASSIGNMENT | Save Changes |"
|
||||||
|
}
|
||||||
+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
@@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"sha": "4f648ba912d17e2d114818c97455de805b580e24c5dde16c76e1606b0ea5dc8d",
|
|
||||||
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-01557155-5F51-4E18-9423-80740E675D88-high.png",
|
|
||||||
"model": "qwen2.5vl:7b",
|
|
||||||
"certain": true,
|
|
||||||
"markdown": "| Name: | morpheus-export |\n| --- | --- |\n| Type: | GitHub |\n| Default Branch: | main |\n| Owner: | aharker |\n| Code Language: | |\n\n| Organization: | ahark86 |\n| Location: | https://github.com/ahark86/morpheus-export |"
|
|
||||||
}
|
|
||||||
+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": "50c700d1a175624c0aa5c1c4a5fbdf6c60d7b1e3e4abe7b419e491069f62e9a8",
|
||||||
|
"src": "https://support.hpe.com/hpesc/public/api/document/sd00007510en_us/GUID-E72E1043-FF51-4388-9D80-79CC7660C86A-high.png",
|
||||||
|
"model": "qwen2.5vl:7b",
|
||||||
|
"certain": true,
|
||||||
|
"markdown": "| Type | Value |\n|------|-------|\n| Cost This Month | $395 |\n| MAX CPU Usage | 18% |\n| Memory Usage | 40% |\n| Storage Capacity | 13% |\n\n| Summary Details | Value |\n|-----------------|-------|\n| Type | Kubernetes Cluster |\n| Worker CPU | 17.0% |\n| Enabled | Yes |\n| Created By | [Name redacted] |\n| Date Created | 10/29/2023 11:17 PM |\n| Worker Memory | 9.1GiB / 22.7GiB |\n| Managed | Yes |\n| Worker Storage | 39.2GiB / 300.0GiB |\n| Layout | MKS Kubernetes 1.28 Cluster on Ubuntu 20.04 |\n\n| Count Details | Value |\n|---------------|-------|\n| Controllers | 1 |\n| Workers | 3 |\n| Containers | 116 |\n| Services | 23 |\n| Jobs | 3 |\n| Volumes | 1 |"
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user