Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/manuals/cli/howtos/adding-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@ In your `upbound.yaml` file, you can define to the external API you wish to refe

The example below defines an external API dependency to the Kubernetes API and an arbitrary CRD living in a git repository.

```shell
spec:
apiDependencies:
- k8s:
version: v1.33.0
type: k8s
- git:
path: cluster/crds
ref: release-1.20
repository: https://github.com/crossplane/crossplane
type: crd
```yaml
spec:
apiDependencies:
- k8s:
version: v1.33.0
type: k8s
- git:
path: cluster/crds
ref: release-1.20
repository: https://github.com/crossplane/crossplane
type: crd
```

## Manage dependency versions
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/apis/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Information on Upbound's APIs:

* [Spaces API][spaces]
* [Crossplane API][crossplane]
* [Testing API][testing]
* [Testing and Project API][testing]
* [Query API][query]

[spaces]: /reference/apis/spaces-api/latest/
Expand Down
14 changes: 8 additions & 6 deletions docs/reference/apis/testing-api/index.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
---
title: Testing API Reference
title: Testing and Project API Reference
description: Documentation for the Testing API resources
---

import CrdDocViewer from '@site/src/components/CrdViewer';

# Testing API Reference
## Testing API reference

This page documents the Custom Resource Definitions (CRDs) for the Testing API.
This section documents the Custom Resource Definitions (CRDs) for the Testing API.

## Composition Tests
### Composition tests

<CrdDocViewer crdUrl="/crds/testing/meta.dev.upbound.io_compositiontests.yaml" />

## End to End Tests
### End to end tests

<CrdDocViewer crdUrl="/crds/testing/meta.dev.upbound.io_e2etests.yaml" />

## Project Tests
## Projects API

This section documents Custom Resource Definitions (CRDs) for Upbound Projects.

<CrdDocViewer crdUrl="/crds/testing/meta.dev.upbound.io_projects.yaml" />

Expand Down