Adding Secrets via UI

  1. Select Kubernetes environment
  2. Click +Create from input

File mapping approach

kind: Secret
apiVersion: v1
metadata:
  name: app-secret-key
  namespace: your-namespace
stringData:
  app-secret-key: "myPlainTextSecret123"
type: Opaque

Environment variable approach

kind: Secret
apiVersion: v1
metadata:
  name: app-secret
  namespace: your-namespace
stringData:
  SECRET_KEY: "myPlainTextSecret123"
type: Opaque

Made by @gatisr

Page last modified: 10:00 12.02.2026.

This site uses Just the Docs, a documentation theme for Jekyll.