Templates
Customize YAML configuration templates to use in seqerakit
commands to create, update, or delete Seqera resources. Create or delete multiple resources with a single command by combining them into a single configuration file.
To use the templates on this page:
- Copy the template text or download the YAML files you need.
- Edit the values to specify your resource details, and save as a
.yaml
file. - Specify the YAML template file in your
seqerakit
commands:- To create the resources specified in the file:
seqerakit file.yaml
- To delete the existing resources specified in the file:
seqerakit file.yaml --delete
info
See Specify targets to create or delete only selected resources from configuration templates that contain multiple resource entries.
See End-to-end example for a template that contains examples of all Seqera resources that can be created with Seqerakit.
Administration
Manage organizations, organization members, workspaces, teams, and participants.
Organizations
Add or delete organizations.
## To see the full list of options available, run: "tw organizations add -h"
organizations:
- name: 'your-organization' # required
full-name: 'Your Organization LLC' # required
description: 'Your organization description' # optional
location: 'Global' # optional
website: 'https://domain.com/' # optional
overwrite: True # optional
Members
Add or delete organization members.
## To see the full list of options available, run: "tw members add -h"
members:
- user: 'user@domain.com' # required
organization: 'your-organization' # required
overwrite: True # optional
Workspaces
Add or delete workspaces.
## To see the full list of options available, run: "tw workspaces add -h"
workspaces:
- name: 'workspace-1' # required
full-name: 'Workspace one' # required
organization: 'your-organization' # required
description: 'Your workspace description' # optional
visibility: 'PRIVATE' # optional
overwrite: True # optional