1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00

TELCODOCS-1688:Adding Telco Core RDS resource in a container image

This commit is contained in:
Ronan Hennessy
2024-04-18 12:15:39 +01:00
committed by openshift-cherrypick-robot
parent f1be317894
commit 28e7ea07b1
2 changed files with 60 additions and 4 deletions

View File

@@ -0,0 +1,59 @@
// Module included in the following assemblies:
//
// * telco_ref_design_specs/core/telco-core-ref-crs.adoc
:_mod-docs-content-type: PROCEDURE
[id="telco-core-rds-container_{context}"]
= Extracting the telco core reference design configuration CRs
You can extract the complete set of custom resources (CRs) for the telco core profile from the `telco-core-rds-rhel9` container image.
The container image has both the required CRs, and the optional CRs, for the telco core profile.
.Prerequisites
* You have installed `podman`.
.Procedure
* Extract the content from the `telco-core-rds-rhel9` container image by running the following commands:
+
[source,terminal]
----
$ mkdir -p ./out
----
+
[source,terminal]
----
$ podman run -it registry.redhat.io/openshift4/telco-core-rds-rhel9:v4.16 | base64 -d | tar xv -C out
----
.Verification
* The `out` directory has the following folder structure. You can view the telco core CRs in the `out/telco-core-rds/` directory.
+
.Example output
[source,text]
----
out/
└── telco-core-rds
├── configuration
│ └── reference-crs
│ ├── optional
│ │ ├── logging
│ │ ├── networking
│ │ │ └── multus
│ │ │ └── tap_cni
│ │ ├── other
│ │ └── tuning
│ └── required
│ ├── networking
│ │ ├── metallb
│ │ ├── multinetworkpolicy
│ │ └── sriov
│ ├── other
│ ├── performance
│ ├── scheduling
│ └── storage
│ └── odf-external
└── install
----

View File

@@ -10,10 +10,7 @@ toc::[]
Use the following custom resources (CRs) to configure and deploy {product-title} clusters with the {rds} profile.
Use the CRs to form the common baseline used in all the specific use models unless otherwise indicated.
[NOTE]
====
The {rds} CRs are available in link:https://github.com/openshift-kni/telco-reference/tree/release-4.15[GitHub].
====
include::modules/telco-core-rds-container.adoc[leveloffset=+1]
include::modules/telco-core-crs-resource-tuning.adoc[leveloffset=+1]