Skip to content

Secrets

This content is not available in your language yet.

The Secrets page allows you to view and manage Kubernetes Secrets within your OtterScale cluster. Secrets are used to store and manage sensitive information, such as passwords, OAuth tokens, and SSH keys, keeping them separate from your application code.

The Secrets page displays a list of all secrets in the selected namespace. The table includes the following information:

ColumnDescription
NameThe name of the secret. Clickable: Clicking the name opens a dialog where you can view the decoded key-value pairs stored in the secret.
NamespaceThe Kubernetes namespace where the secret is stored.
TypeThe type of the secret (e.g., Opaque, kubernetes.io/service-account-token), which defines how the data is used.
ImmutableIndicates whether the secret’s data can be changed. A checkmark means it is immutable (read-only), while a cross means it can be modified.
LabelsKey-value pairs attached to the secret for organization and selection.
Created AtThe time elapsed since the secret was created. Hovering over the time displays the exact creation timestamp.

To view the sensitive data stored within a secret:

  1. Click on the Name of the secret in the table.
  2. A dialog window will appear, listing all keys contained in the secret.
  3. The values are automatically decoded (from Base64) and displayed.
  4. Use the Copy button next to a value to copy it to your clipboard.

Currently, the Secrets page provides a secure way to view and audit existing secrets. Creation and management of secrets are typically handled through your deployment workflows, CLI tools, or external secret management systems.