Skip to content

Commit

Permalink
docs(install): new install sections & updated getting started (#3977)
Browse files Browse the repository at this point in the history
* docs(install): new install sections & updated GS

* docs(install): fix link

* Update installation.mdx

Changed spelling to the US version of license (ie not licence)

* Apply suggestions from code review

Co-authored-by: Julianne Fermi <[email protected]>

* Apply suggestions from code review

Co-authored-by: Julianne Fermi <[email protected]>

---------

Co-authored-by: kdhamric <[email protected]>
Co-authored-by: Julianne Fermi <[email protected]>
  • Loading branch information
3 people authored Aug 19, 2024
1 parent a0b2475 commit 416824e
Show file tree
Hide file tree
Showing 9 changed files with 919 additions and 18 deletions.
26 changes: 14 additions & 12 deletions docs/docs/getting-started/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ You can configure Cloud-based Managed Tracetest by using the Tracetest CLI and T

1. [Sign in to Tracetest](https://app.tracetest.io/).
2. Create an [Organization](/concepts/organizations) and [Environment](/concepts/environments).
3. Copy the default [Tracetest Organization API Key/Token](/concepts/organization-tokens) from your Tracetest Organization Tokens page. (Or create a new token.)
4. Copy the Environment ID from your Tracetest Environment Settings page.
5. Configure the CLI with your Organization API Key/Token and Environment ID.
3. Copy your [Tracetest Organization API Key/Token and Environment ID](https://app.tracetest.io/retrieve-token).
4. Configure the CLI with your Organization API Key/Token and Environment ID.

```bash title="Terminal"
tracetest configure -t <TRACETEST_API_KEY> --environment <TRACETEST_ENVIRONMENT_ID>
Expand Down Expand Up @@ -60,7 +59,7 @@ tracetest configure -t <TRACETEST_API_KEY> --environment <TRACETEST_ENVIRONMENT_
Once started, Tracetest Agent exposes OTLP ports 4317 and 4318 to ingest traces via gRCP and HTTP.
INFO Running in desktop mode...
INFO Starting Agent with name Adnans-Air...
INFO Starting Agent with name...
Agent is started! Leave the terminal open so tests can be run and traces gathered from this environment.
You can:
> Open Tracetest in a browser to this environment
Expand Down Expand Up @@ -113,8 +112,6 @@ You can reach services running on your local machine using:
>
{`tracetest-agent:
image: kubeshop/tracetest-agent
command:
- "--mode=verbose"
environment:
- TRACETEST_API_KEY=<TRACETEST_API_KEY>
- TRACETEST_ENVIRONMENT_ID=<TRACETEST_ENVIRONMENT_ID>
Expand All @@ -125,9 +122,9 @@ You can reach services running on your local machine using:

The Tracetest Agent is running in Docker and ready to accept traces.

gRPC: `http://<service-name>:4317`
gRPC: `http://tracetest-agent:4317`

HTTP: `http://<service-name>:4318/v1/traces`
HTTP: `http://tracetest-agent:4318/v1/traces`

:::note Docker Network
Running a test against `localhost` will resolve as `127.0.0.1` inside the Tracetest Agent container.
Expand All @@ -150,7 +147,7 @@ You can reach services running on your local machine using:
language="text"
title="Terminal"
>
{`curl https://raw.githubusercontent.com/kubeshop/tracetest/main/k8s/agent/deploy-agent.sh | bash -s -- default <TRACETEST_API_KEY>`}
{`curl https://raw.githubusercontent.com/kubeshop/tracetest/main/k8s/agent/deploy-agent.sh | bash -s -- default <TRACETEST_API_KEY> --environment <TRACETEST_ENVIRONMENT_ID>`}
</CodeBlock>

The Tracetest Agent is running in Kubernetes and ready to accept traces.
Expand Down Expand Up @@ -235,10 +232,15 @@ flowchart TD

## Install Tracetest On-Prem

:::tip For Development Environment
:::note For Development Environment
This installation is meant for testing purposes only. It uses self signed certificates, so your browser will show a warning about it.
:::

:::tip For Production
For the Production-ready installation:

For the Production-ready installation, [view the official Helm chart readme](https://github.com/kubeshop/tracetest-cloud-charts/blob/main/README.md).
- [View the official Helm chart readme](https://github.com/kubeshop/tracetest-cloud-charts/blob/main/README.md).
- [View the official installation docs](/install/helm).
:::

1. Install [Helm](https://helm.sh/) and [kind](https://kind.sigs.k8s.io/) on your machine. Clone the official Tracetest Helm chart.
Expand All @@ -248,7 +250,7 @@ git clone https://github.com/kubeshop/tracetest-cloud-charts.git
cd ./tracetest-cloud-charts
```

2. Request a **licence key, [here](https://tracetest.io/on-prem-installation)**.
2. Request a **license key, [here](https://tracetest.io/on-prem-installation)**.

3. Run the setup script with a demo. Add your license key when you get prompted.

Expand Down
62 changes: 62 additions & 0 deletions docs/docs/install/cli.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
id: cli
title: Install with CLI
description: Installation and deployment instructions for using the Tracetest CLI to deploy a Tracetest Agent and use the Cloud-based managed Tracetest Control Plane / Dashboard.
hide_table_of_contents: true
keywords:
- tracetest
- tracetest cli install
- tracetest cloud install
- tracetest agent install
- trace-based testing
- observability
- distributed tracing
- testing
image: https://res.cloudinary.com/djwdcmwdz/image/upload/v1698686403/docs/Blog_Thumbnail_14_rsvkmo.jpg
---

import GtagInstallCliTabs from '@site/src/components/GtagInstallCliTabs';

This guide explains how to configure Cloud-based managed Tracetest with the Tracetest CLI and install a Tracetest Agent in your local development environment. This deployment uses the Cloud-based managed Tracetest Control Plane and Dashboard.

## Prerequisites

- [Sign in to Tracetest](https://app.tracetest.io/) and retrieve your [Tracetest Organization API Key/Token and Environment ID](https://app.tracetest.io/retrieve-token).

## Install the Tracetest CLI

<GtagInstallCliTabs></GtagInstallCliTabs>

Configure the CLI to access your Cloud-based managed Tracetest account.

```bash title="Terminal"
tracetest configure -t <TRACETEST_API_KEY> --environment <TRACETEST_ENVIRONMENT_ID>
```

## Install the Tracetest Agent Locally

[Tracetest Agent](/concepts/agent) runs as a standalone process.

```bash title="Terminal"
tracetest start --api-key <TRACETEST_API_KEY> --environment <TRACETEST_ENVIRONMENT_ID>
```

```bash title="Expected Output"
Tracetest start launches a lightweight agent. It enables you to run tests and collect traces with Tracetest.
Once started, Tracetest Agent exposes OTLP ports 4317 and 4318 to ingest traces via gRCP and HTTP.

INFO Running in desktop mode...
INFO Starting Agent with name...
Agent is started! Leave the terminal open so tests can be run and traces gathered from this environment.
You can:
> Open Tracetest in a browser to this environment
(Experimental) Open Dashboard
Stop this agent
```

Tracetest Agent runs tests and ingests traces. It exposes OTLP ports `4317` (gRPC) and `4318` (HTTP) for trace ingestion. In this example you can trigger tests against apps running in your local environment on `localhost` and export traces from your local apps to `localhost` as well.

To ingest traces in this example with Tracetest Agent use these URLs:

- gRPC: `http://localhost:4317`
- HTTP: `http://localhost:4318/v1/traces`
241 changes: 241 additions & 0 deletions docs/docs/install/deployment-architecture.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,241 @@
---
id: deployment-architecture
title: Deployment Architecture
description: bla
keywords:
- tracetest
- trace-based testing
- opentelemetry store demo
- open telemetry demo
- testing
image: https://res.cloudinary.com/djwdcmwdz/image/upload/v1689693872/docs/Blog_Thumbnail_28_ugy2yy.png
---

Tracetest contains two parts:

- A Control Plane which includes the Dashboard, Database + Storage, RBAC, etc.
- An Agent running in your environment that runs tests and ingests traces.

You can deploy Tracetest in two ways.

- Deploy Tracetest Agent and use the Cloud-based managed Control Plane.
- Deploy both Tracetest Agent and Control Plane On-Prem.

## Enterprise Self-hosted Tracetest

With Enterprise self-hosted Tracetest you deploy both the control plane and agent in your own infrastructure.

To deploy Enterprise self-hosted Tracetest follow the [installing with Helm guide](/install/helm).

## Architecture

Enterprise self-hosted Tracetest is composed of multiple services:

- **Frontend**: the WebUI used to interact with Tracetest, allowing users to [create and manage tests](https://docs.tracetest.io/web-ui/creating-tests).
- **Cloud/Core API**: APIs that are called directly by the Frontend, the Tracetest CLI and the Tracetest Agent to perform operations on the systems, like creating and running tests.
- **Ory Ecosystem**: Tracetest relies on the [Ory Ecosystem](https://www.ory.sh/) for authentication and authorization. This includes [Ory Kratos](https://www.ory.sh/kratos/docs/), [Ory Keto](https://www.ory.sh/keto/docs/), and [Ory Oathkeeper](https://www.ory.sh/oathkeeper/docs/).
- **Tracetest Workers**: A set of workers that manage the test execution.
- **Nats**: An instance of [nats.io](https://nats.io/) uses a message broker that works as a communication bridge between the different services.
- **Agent**: Triggers tests and ingests traces.

```mermaid
graph LR
Postgres[("Postgres")]
Mongo[("Mongo")]
Nats
SMTPServer["SMTP Server"]
Ory["Ory Ecosystem\n(AuthZ / AuthN)"]
TracetestAPI["Cloud/Core\nAPI"]
TracetestWorkers["Tracetest\nWorkers"]
TracetestFrontend["Frontend"]
TracetestAgentAPI["Agent\nAPI"]
TracetestAgentIngestAPI["Trace\nIngest API"]
User
User --> TracetestFrontend
User --> Ory
User --> TracetestAPI
subgraph Control Plane
TracetestFrontend --> TracetestAPI
TracetestAPI --> Nats
TracetestWorkers --> Nats
TracetestFrontend --> Ory
TracetestAPI --> Ory
end
subgraph Agent
TracetestAgentAPI --> TracetestAPI
TracetestAgentIngestAPI --> TracetestAgentAPI
end
subgraph ExternalDependencies["External Deps"]
TracetestAPI --> SMTPServer
Ory --> Postgres
TracetestAPI --> Postgres
TracetestAPI --> Mongo
end
```

## Prerequisites

Tracetest expects some preconditions in the environment where it runs.

### DNS

Tracetest needs to be accessible from a DNS route. We recommend you to use an exposed Traefik `IngressRoute`.

This requires a DNS-resolvable name. You can use a public DNS, an intranet DNS, or even host file based,
as long as clients can resolve the host names to the correct IPs.

You can choose any hostname you want. This Helm repo imposes no limitation on this.

If you choose to use a DNS resolving mechanism that is not available within the Kubernetes cluster where Tracetest runs,
you can configure the cluster's CoreDNS to point the selected hostname to the Traefik Service. We provide a [script for this](https://github.com/kubeshop/tracetest-cloud-charts/blob/main/scripts/coredns_config.sh).

If you want to use managed agents and send OpenTelemetry trace data to them from outside the cluster, you need to set a wildcard subdomain.

:::tip Does this mean that Tracetest will be accessible from the internet?
Not neccesarily. By default, most cloud providers will automatically map LoadBalancer services to public IPs.

If you want to make your installation only availble within an intranet or similarly private environment check how to configure Private IPs with your cloud provider docs.
:::

:::note Example
Your main domain is `tracetest.mydomain.com`. You need to setup `tracetest.mydomain.com` and `*.tracetest.mydomain.com` to the LoadBalancer IP.
:::

### Cert Manager

Tracetest uses cert-manager to create sign certificates for JWT tokens and SSL certificates for Ingress.

```bash title="Terminal"
helm repo add jetstack https://charts.jetstack.io --force-update
helm upgrade --install \
cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--version v1.15.0 \
--set crds.enabled=true
```

Cert Manager defines Issuers. If you have existing Issuers that you want to use, you can configure them in `values.yaml`.

In order to have a valid certificate, `cert-manager` requires you to provide proof of ownership of the DNS domain that you are claiming. You can see how to do that in the [Issuers documentation](https://cert-manager.io/docs/configuration/issuers/).

While it is not recommended in a production environment, it is possible by creating a SelfSigned Issuer and create self-signed certificates. With self-signed certificates you will see warnings on the browser when accessing your Tracetest OnPrem instance Web UI.

```bash title="Terminal"
# Create a self signed certificate

cat <<EOF | kubectl apply -f -
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: issuer-selfsigned
labels:
spec:
selfSigned: {}
EOF
```

### Traefik

Tracetest relies on Traefik for its exposed web UI and API, as well as for the managed agents.
The process is simple, but the process for exposing the Traefik deployment might differ depending on the cloud platform.
See [Install Traefik using a Helm Chart](https://doc.traefik.io/traefik/getting-started/install-traefik/#use-the-helm-chart).

### External Services

Tracetest requires two databases to operate: PostgreSQL and MongoDB. You can use managed services or run them in-cluster.

#### PostgreSQL

We recommend using an out-of-cluster instance. The version should not matter, but it is always a good idea to have the latest version.

You can configure the credentials in `values.yaml`:

```yaml
global:
postgresql:
auth:
host: "path.to.my.postgres.instance"
username: "some-pg-user"
password: "some-pg-password"
database: "tracetest"
```
#### MongoDB
We recommend using an out-of-cluster instance. The version should not matter, but it is always a good idea to have the latest version.
You can configure the credentials in `values.yaml`:

```yaml
global:
mongodb:
auth:
protocol: "mongodb"
host: "path.to.my.mongodb.instance"
username: "some-mongo-user"
password: "some-mongo-password"
database: "tracetest"
options:
retryWrites: "true"
authSource: admin
```

### SSO

This chart comes with an **EXTREMELY INSECURE** default GitHub OAuth App. It is used for demo purposes only and should not, under any circumstances, be used in any real environment.

You can enable GitHub and Google SSO by creating corresponding Apps and setting the credentials in `values.yaml`:

```yaml
global:
sso:
google:
clientID: "clientID"
clientSecret: "clientSecret"
github:
clientID: "clientID"
clientSecret: "clientSecret"
```

## Cloud-based Managed Tracetest

With Cloud-based managed Tracetest you only deploy an agent in your infrastructure.

To deploy Tracetest Agent follow the [installation guide](/install/cli).

## Architecture

Cloud-based managed Tracetest only requires you to run one service:

- **Agent**: Triggers tests and ingests traces.

```mermaid
graph LR
TracetestControlPlane["Control Plane API"]
TracetestAgentAPI["Agent\nAPI"]
TracetestAgentIngestAPI["Trace\nIngest API"]
User
subgraph Agent
TracetestAgentIngestAPI --> TracetestAgentAPI
end
subgraph Control Plane
TracetestAgentAPI --> TracetestControlPlane
end
User --> TracetestControlPlane
```

## Prerequisites

- [Sign in to Tracetest](https://app.tracetest.io/) and retrieve your [Tracetest Organization API Key/Token and Environment ID](https://app.tracetest.io/retrieve-token).
Loading

0 comments on commit 416824e

Please sign in to comment.