# K8sManifestResource

- Module: [CommunityToolkit.Aspire.Hosting.K3s](/reference/api/typescript/communitytoolkit.aspire.hosting.k3s.md)
- Version: `13.5.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/CommunityToolkit/Aspire/tree/4ff8268fbd97ddd23cb73dc8eff9cc92718156d1)

Represents a Kubernetes manifest (or Kustomize overlay) applied to the parent k3s cluster.

## Definition

```typescript
interface K8sManifestResource
  extends IComputeResource,
    IResource,
    IResourceWithArgs,
    IResourceWithEndpoints,
    IResourceWithEnvironment,
    IResourceWithParent,
    K3sClusterResource]],
    IResourceWithProbes,
    IResourceWithWaitSupport {
  readonly parent: K3sClusterResource;
  readonly path: string;
}
```

## Properties

- `parent`: [K3sClusterResource](/reference/api/typescript/communitytoolkit.aspire.hosting.k3s/k3sclusterresource.md) `get` -- Gets the Parent property
- `path`: `string` `get` -- Gets the absolute host path to the YAML file, plain directory, or Kustomize directory that contains the manifests to apply.
