Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions modules/telco-hub-rds-container.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
// Module included in the following assemblies:
//
// * scalability_and_performance/telco_hub_ref_design_specs/telco-hub-rds.adoc

:_mod-docs-content-type: PROCEDURE
[id="telco-hub-rds-container_{context}"]
= Extracting the telco hub reference design configuration CRs

You can extract the complete set of custom resources (CRs) for the telco hub profile from the `openshift-telco-hub-rds-rhel9` container image.
The container image has both the required CRs, and the optional CRs, for the telco hub profile.

.Prerequisites

* You have installed `podman`.

.Procedure

. Log on to the container image registry with your credentials by running the following command:
+
[source,terminal]
----
$ podman login registry.redhat.io
----

. Extract the content from the `openshift-telco-hub-rds-rhel9` container image by running the following commands:
+
[source,terminal]
----
$ mkdir -p ./out
----
+
[source,terminal]
----
$ podman run -it registry.redhat.io/openshift4/openshift-telco-hub-rds-rhel9:v4.19 | base64 -d | tar xv -C out
----

.Verification

* The `out` directory has the following directory structure. You can view the telco hub CRs in the `out/telco-hub-rds/` directory by running the following command:
+
[source,terminal]
----
$ tree -L 4 out/telco-hub-rds/
----
+
.Example output
[source,text]
----
out/telco-hub-rds/
├── configuration
│ ├── example-overlays-config
│ │ ├── acm
│ │ │ ├── acmMirrorRegistryCM-patch.yaml
│ │ │ ├── kustomization.yaml
│ │ │ ├── options-agentserviceconfig-patch.yaml
│ │ │ └── storage-mco-patch.yaml
│ │ ├── gitops
│ │ │ ├── argocd-tls-certs-cm-patch.yaml
│ │ │ ├── init-argocd-app.yaml
│ │ │ └── kustomization.yaml
│ │ ├── logging
│ │ │ ├── cluster-log-forwarder-patch.yaml
│ │ │ ├── kustomization.yaml
│ │ │ └── README.md
│ │ ├── lso
│ │ │ ├── kustomization.yaml
│ │ │ └── local-storage-disks-patch.yaml
│ │ ├── odf
│ │ │ ├── kustomization.yaml
│ │ │ └── options-storage-cluster.yaml
│ │ └── registry
│ │ ├── catalog-source-image-patch.yaml
│ │ ├── idms-operator-mirrors-patch.yaml
│ │ ├── idms-release-mirrors-patch.yaml
│ │ ├── itms-generic-mirrors-patch.yaml
│ │ ├── itms-release-mirrors-patch.yaml
│ │ ├── kustomization.yaml
│ │ └── registry-ca-patch.yaml
│ ├── kustomization.yaml
│ ├── README.md
│ └── reference-crs
│ ├── kustomization.yaml
│ ├── optional
│ │ ├── logging
│ │ ├── lso
│ │ └── odf-internal
│ └── required
│ ├── acm
│ ├── gitops
│ ├── registry
│ └── talm
├── install
│ ├── mirror-registry
│ │ ├── imageset-config.yaml
│ │ └── README.md
│ └── openshift
│ ├── agent-config.yaml
│ └── install-config.yaml
└── scripts
└── check_current_versions.sh
----
Loading