From fa0827f607c91f67e4e459a6c573d9f766f8f3f3 Mon Sep 17 00:00:00 2001 From: Vojdan Kjorveziroski <vojdan.kjorveziroski@finki.ukim.mk> Date: Mon, 3 Jun 2024 18:21:12 +0200 Subject: [PATCH] Replace all NMaaS occurrences with nmaas --- docs/about.md | 4 ++-- docs/guides/application-manager-guide.md | 4 ++-- docs/overrides/partials/copyright.html | 2 +- docs/self-hosted-nmaas/install-guide.md | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/about.md b/docs/about.md index be2381d..cee1db0 100644 --- a/docs/about.md +++ b/docs/about.md @@ -1,6 +1,6 @@ -**NMaaS Platform** is actively developed and maintained as part of the [GÉANT GN5-1](https://geant.org/gn5-1/) project co-funded by the European Union. +**nmaas Platform** is actively developed and maintained as part of the [GÉANT GN5-1](https://geant.org/gn5-1/) project co-funded by the European Union. -NMaaS components are open-source licensed under the Apache 2.0 Licence. +nmaas components are open-source licensed under the Apache 2.0 Licence. ## Useful links diff --git a/docs/guides/application-manager-guide.md b/docs/guides/application-manager-guide.md index bef9b05..3c820f8 100644 --- a/docs/guides/application-manager-guide.md +++ b/docs/guides/application-manager-guide.md @@ -11,7 +11,7 @@ A dedicated wizard composed of several forms was developed to ease this manageme In order to access the applications management area user should open the `Settings` drop down menu available on the top navigation bar and click the Applications button. -The main view lists all the applications available in this particular NMaaS installation or a filtered list of applications to which a given user has management access. For each application its `Name` and `Owner` user is provided. When an application entry is clicked subsequent information about available versions of particular application and their status is displayed. +The main view lists all the applications available in this particular nmaas installation or a filtered list of applications to which a given user has management access. For each application its `Name` and `Owner` user is provided. When an application entry is clicked subsequent information about available versions of particular application and their status is displayed. The application version statuses are the following: @@ -40,7 +40,7 @@ From this view an `Application manager` can perform the following actions: !!! info - The applications from the NMaaS portfolio are being deployed on Kubernetes. To this end each application has to be containerized and described in the form of a Helm chart. + The applications from the nmaas portfolio are being deployed on Kubernetes. To this end each application has to be containerized and described in the form of a Helm chart. !!! info The application administration option is available only for users with System administrator or Application manager roles assigned. diff --git a/docs/overrides/partials/copyright.html b/docs/overrides/partials/copyright.html index c352d69..829a2db 100644 --- a/docs/overrides/partials/copyright.html +++ b/docs/overrides/partials/copyright.html @@ -28,6 +28,6 @@ Made with <span class="twemoji heart"> {% include ".icons/octicons/heart-fill-24.svg" %} - </span> by NMaaS contributors and <a href="https://squidfunk.github.io/mkdocs-material/">Material for MkDocs</a> + </span> by nmaas contributors and <a href="https://squidfunk.github.io/mkdocs-material/">Material for MkDocs</a> {% endif %} </div> \ No newline at end of file diff --git a/docs/self-hosted-nmaas/install-guide.md b/docs/self-hosted-nmaas/install-guide.md index ed9e894..317de32 100644 --- a/docs/self-hosted-nmaas/install-guide.md +++ b/docs/self-hosted-nmaas/install-guide.md @@ -210,14 +210,14 @@ The following manual steps must be performed before deploying nmaas: kubectl create secret generic -n $NMAAS_NAMESPACE nmaas-sp-secret --from-literal=secret=<SSO_SHARED_KEY> ``` -- Create the NMaaS Janitor secret containing the GitLab API key, generated previously: +- Create the nmaas Janitor secret containing the GitLab API key, generated previously: ```bash export NMAAS_NAMESPACE="nmaas-system" kubectl create secret generic -n $NMAAS_NAMESPACE nmaas-gitlab-janitor-token --from-literal=secret=<GITLAB_API_TOKEN> ``` -Once the required secrets have been created, NMaaS can be deployed using the following command (make sure to deploy in the same namespace as GitLab): +Once the required secrets have been created, nmaas can be deployed using the following command (make sure to deploy in the same namespace as GitLab): ```bash export NMAAS_NAMESPACE="nmaas-system" @@ -225,7 +225,7 @@ helm repo add nmaas https://artifactory.software.geant.org/artifactory/nmaas-hel helm install -f values.yaml --namespace $NMAAS_NAMESPACE --version 1.0.0 nmaas nmaas/nmaas ``` -It is recommended to use `nmaas-system` as the namespace where NMaaS and all associated components (PostgreSQL, GitLab) will be deployed. +It is recommended to use `nmaas-system` as the namespace where nmaas and all associated components (PostgreSQL, GitLab) will be deployed. !!! warning "nmaas Deployment Time" Please allow at least 10 minutes for nmaas to be fully deployed, depending on hardware configuration and resource utilization. -- GitLab