# YAML Workloads

We develop and maintain a [public Git repository](https://github.com/RafaySystems/rafay-cicd-helpers) with functioning examples of workload specifications and automation pipelines that can be leveraged by customers.

---

## Example

This is an illustrative example of a workload definition based on a k8s YAML payload. In this example,

- The workload name **speedtest-app** will be deployed to the namespace **speedtest**
- It has a k8s YAML based payload based in the file "speedtest.yaml"
- The workload will be deployed to **specifically named clusters** in the **defaultproject**

```
name: speedtest-app
namespace: speedtest
project: defaultproject
type: NativeYaml
clusters: "eks-demo3"
payload: ./speedtest.yaml
```
