Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 5G Campusnetz as usecase / deplyoment example #87

Draft
wants to merge 17 commits into
base: main
Choose a base branch
from
Draft
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
15 changes: 8 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Content Dependencies from docs.package.json
/repo_to_be_edited_
/docs/02-iaas/components
/docs/02-iaas/guides
/docs/02-iaas/guides/configuration-guides
/docs/02-iaas/guides/deploy-guide
/docs/02-iaas/guides/configuration-guide
/docs/02-iaas/guides/operations-guide
/docs/02-iaas/guides/troubleshooting-guides
/docs/02-iaas/guides/upgrade-guides
/docs/02-iaas/guides/troubleshooting-guide
/docs/02-iaas/guides/other-guides
/docs/02-iaas/guides/upgrade-guide
/docs/02-iaas/guides/deploy-guide/*.md
/docs/02-iaas/guides/deploy-guide/services
/docs/02-iaas/guides/deploy-guide/examples/*.md
/docs/02-iaas/guides/deploy-guide/examples/images
/docs/02-iaas/guides/index.md
/docs/02-iaas/deployment-examples/cloud-in-a-box
/docs/02-iaas/deployment-examples/testbed
/docs/03-container/components
/docs/04-operating-scs/components
/docs/04-operating-scs/01-guides
Expand Down
39 changes: 39 additions & 0 deletions docs/02-iaas/deployment-examples/5G Campusnetz/preface.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Preface

## Background

Osnabrück University of Applied Sciences operates its own data center in the laboratory area for digital value creation processes on the Lingen campus. A private cloud based on OpenStack has been running there since 2016; the first release installed was Newton. As part of our 5G campus network project (2022-2027), we decided to operate an installation of the Sovereign Cloud Stack parallel in addition to the existing OpenStack environment. We rely directly on the hardware (so called bare-metal installation) and not on an any kind of already virtualized environment (see testbed). We have documented our installation process and hope for imitators!

All laboratory-relevant workloads that are required for research and teaching will run in the SCS installation later on. The installation is freely available to everyone involved across lab area. It is part of the - so called - Open Campus Infrastructure, which also includes the OpenStack installation. Other components include the 5G core and the edge cloud. The edge cloud is divided into the Starling-X installation project of the Open Infra Foundation and the managed Cloud-in-a-Box cluster of the Sovereign Cloud Stack:

- Open Campus Infrastructure (OCI)
- Sovereign Cloud Stack (IaaS+KaaS)
- OpenStack (IaaS)
- Starling-X (Edge, IaaS+KaaS)
- CIABs
- 5G Core

We first installed a test system. The hardware of the test system consists of the following components:

4 x DELL R6515 with following components:

- 1 x AMD EPYC 7702P `[email protected]`
- 16 x 64GB RAM DDR4-3200
- 2 x 480GB M.2 SATA SSD (for OS) RAID 1
- 8 x 8TB NVMe (storage), S150 onboard
- 2 x 25GbE NICs bond 802.3ad
- 2 x 1GbE NICs n. a.
- 1 x 1GbE iDRAC Enterprise
- 2 x 550W 1+1 redundancy

2 x DELL R7525 with following components:

- 2 x AMD EPYC 7532 `[email protected]`
- 8 x 64GB RAM DDR4-3200
- 2 x 480GB SATA SSD (for OS) RAID 1
- 12 x 18TB SATA HDD 7.2k (storage), PERC H745 no RAID
- 4 x 10GbE SFP+ OCP bond 802.3ad
- 1 x 1GbE iDRAC Enterprise
- 2 x 1.400W 1+1 redundancy

An installation in the productive system (Gen16) will take place later and will result in a separate documentation.
63 changes: 13 additions & 50 deletions sidebarsDocs.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,19 @@ const sidebarsDocs = {
id: 'iaas/components/flavor-manager'
}
]
},
{
type: 'category',
label: 'Deployment Examples',
link: {
type: 'generated-index'
},
items: [
{
type: 'autogenerated',
dirName: '02-iaas/deployment-examples' // '.' means the current docs folder
}
]
}
]
},
Expand Down Expand Up @@ -419,56 +432,6 @@ const sidebarsDocs = {
'operating-scs/guides/openstack-health-monitor/Debian12-Install'
]
},
// {
// type: 'category',
// label: 'Monitoring',
// link: {
// type: 'generated-index'
// },
// items: [
// 'operating-scs/monitoring/index'
// ]
// },
// {
// type: 'category',
// label: 'Incident Management',
// link: {
// type: 'generated-index'
// },
// items: [
// 'operating-scs/incident-management/index'
// ]
// },
// {
// type: 'category',
// label: 'Audits',
// link: {
// type: 'generated-index'
// },
// items: [
// 'operating-scs/audits/index'
// ]
// },
// {
// type: 'category',
// label: 'Lifecycle Management',
// link: {
// type: 'generated-index'
// },
// items: [
// 'operating-scs/lifecycle-management/index'
// ]
// },
// {
// type: 'category',
// label: 'Logging',
// link: {
// type: 'generated-index'
// },
// items: [
// 'operating-scs/logging/index'
// ]
// },
{
type: 'category',
label: 'Metering',
Expand Down
Loading