# io.k8s.api.scheduling.v1alpha3.WorkloadReference

From **Kubernetes**.

WorkloadReference references the Workload object together with the template that was used to create a particular PodGroup.

- Type: `object`

## Properties

### `templateName`

- Required: true
- Type: `string`

templateName is the name of a template within the Workload object that was used to create a pod group. It must be a DNS label. This field is required.

### `workloadName`

- Required: true
- Type: `string`

workloadName is the name of the Workload object that contains a template that was used when creating a pod group. It must be a DNS name. This field is required.

## JSON Schema

```json
{"description":"WorkloadReference references the Workload object together with the template that was used to create a particular PodGroup.","properties":{"templateName":{"default":"","description":"templateName is the name of a template within the Workload object that was used to create a pod group. It must be a DNS label. This field is required.","type":"string"},"workloadName":{"default":"","description":"workloadName is the name of the Workload object that contains a template that was used when creating a pod group. It must be a DNS name. This field is required.","type":"string"}},"required":["workloadName","templateName"],"type":"object"}
```
