Create custom K8s objects

This guide covers creating custom k8s objects like service accounts, secrets, config maps, etc. in your workspace.

  1. Open New Deployment Form. Select Helmfrom the left navbar and then select your workspace

  2. Fill out the form with the following input:

  1. Add the objects in values as an array of manifests. E.g.
manifests:
  - kind: ServiceAccount
    apiVersion: v1
    metadata:
      name: test-sa
      namespace: workspace-2

Note: the k8s resource can be created in any namespace by overwriting in the spec of the k8s object. If not mentioned, it will use the selected workspace by default.