Secrets are currently limited to experiments run on private clusters
Navigate to the project, cluster, or team page and click the Secrets tab. Click the Create Secret button, enter the secret name and value, and click the Create Secret button to save.
Set team secret
gradient secrets set team --name=<name> --value=<secret>
Set project secret
gradient secrets set project --id=<project_id> --name=<name> --value=<secret>
Set cluster secret
gradient secrets set cluster --id=<cluster_id> --name=<name> --value=<secret>
Navigate to the project or team page and click the Secrets tab.
List team secrets
gradient secrets list team
List project secrets
gradient secrets list project --id=<project_id>
List cluster secrets
gradient secrets list cluster --id=<cluster_id>
Navigate to the project, cluster, or team page and click the Secrets tab. Click the Delete button and confirm the dialog.
Delete team secret
gradient secrets delete team --name=<name>
Delete project secret
gradient secrets delete project --id=<project_id> --name=<name>
Delete cluster secrets
gradient secrets delete cluster --id=<cluster_id> --name=<name>
If the same secret name is created for more than one scope only one will be applied. Secrets have the following precedence: Project > Cluster > Team.
See Experiment Variables for using Secrets with Experiments.