Overview
Once you’ve deployed a Managed Kubernetes Cluster, you’ll need to configure the following:
Create a Kubernetes Namespace
Kubernetes lets you create multiple virtual clusters called Namespaces on a single physical cluster. Namespaces let you distribute your cluster resources across multiple users by creating resource quotas. Kubernetes Namespace – acts as a workspace with optional quotas and limits for each pod (containers). Creating a Namespace lets you support environments with multiple users (10 or more users) who are spread across many teams, projects, or regions. Namespaces provide a scope for names so that you can add unique resource-names within a Namespace. You’ll need to separately add these resource-names to each Namespace as these cannot be added on a global level.
You cannot nest Namespaces inside one another and you can have only one Kubernetes resource for a Namespace. You don’t have to create multiple namespaces for segregating slightly varying resources. Example: Different versions of the software within the same Namespace.
In such cases, you can add labels for various versions to differentiate between your resources.
Kubernetes best practice
It is recommended that you create a dedicated namespace for your applications.
Avoid using the default namespace.
To create a Namespace:
Login to your HyperCloud™ Platform (HCP) account.
Click Service Orchestration and navigate to Containers > Click open your provisioned Kubernetes Cluster.
Click Action > Click New Namespace.
Enter a Name for your Namespace in the New Namespace dialog.
Click Save.
Kubernetes Secret
Kubernetes Secret lets you store and manage your passwords, OAuth tokens, and SSH Keys. It is recommended that you store your credentials in a Secret than defining it in a Pod or a container image. Your Secret credentials are hidden configurations and can be referenced by containers during runtime.
Notes
You can create a Kubernetes Secret within a namespace.
Once you create a Secret within a namespace, it can be accessed only by the deployments within the current namespace.
Refer to the Kubernetes Secret Overview, for more details
To create a Kubernetes Secret on your HCP portal:
Login to your HCP Portal account.
Click Service Orchestration and navigate to Containers > Click open your provisioned Kubernetes Cluster > Click Action > Click New Secret.
Enter these details in the New Secret dialog:
Enter a Name for your Kubernetes Secret.
From the Namespace drop-down list, select a namespace for which you want to create the Secret.
Select the Secret Type from the drop-down list.
Click Save.
To view your newly created Kubernetes Secret:
Click Kubernetes Namespace.
Click open the Namespace where you created the Kubernetes Secret.