Skip to content

Commit

Permalink
chore: add verification docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Randoooom committed Jul 8, 2024
1 parent 10ebcc1 commit e6b3b4d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default defineConfig({
{
text: "Deployment", items: [
{ text: "Helm", link: "/docs/deployment/helm" },
{ text: "Docker", link: "/docs/deployment/docker" }
{ text: "Docker", link: "/docs/deployment/docker" },
{ text: "Verify deployment", link: "/docs/deployment/verify" }
]
},
{
Expand Down
20 changes: 20 additions & 0 deletions docs/docs/deployment/verify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Verify the deployment

To verify and test the deployment of FeedbackFusion, you can run the integration tests. The following prerequisites and instructions will guide you through the process.

## Prerequisites

- **Rust** installed on your machine.
- **cargo-make** installed. You can install it using the following command:
```sh
cargo install cargo-make
```
- The FeedbackFusion application must be accessible on port 8000 on the machine where the tests are executed. This can be achieved via port-forwarding if using Kubernetes.
- Override the `OIDC_PROVIDER`, `CLIENT_ID` and `CLIENT_SECRET` in the Makefile.

## Running Integration Tests

To run the integration tests, execute the following command:

```sh
cargo make integration_test

0 comments on commit e6b3b4d

Please sign in to comment.