-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add simplified Helm chart with a guide (#43)
* k8s: added basic manifest files * fix postgres manifest * cleanup * add tt agent * simplify manifests * add readme * improve readme * add port env * delete kompose file * added deps to helm chart * remove stream simplify chart --------- Co-authored-by: Matheus Nogueira <[email protected]>
- Loading branch information
1 parent
e04430a
commit 5da696c
Showing
9 changed files
with
156 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,18 @@ | ||
dependencies: | ||
- name: postgresql | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 11.1.19 | ||
version: 12.1.6 | ||
- name: rabbitmq | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 8.30.0 | ||
version: 11.2.2 | ||
- name: redis | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 16.8.5 | ||
digest: sha256:7cba0f80b53fc0f7da7cf6402dd131cbfbeab5d7615feb26a005f3f861277195 | ||
generated: "2022-04-15T14:45:15.128266901-03:00" | ||
version: 17.3.17 | ||
- name: opentelemetry-collector | ||
repository: https://open-telemetry.github.io/opentelemetry-helm-charts | ||
version: 0.92.0 | ||
- name: jaeger | ||
repository: https://jaegertracing.github.io/helm-charts | ||
version: 3.0.10 | ||
digest: sha256:3004524c4ef3f6cb0d3b04bd4f652b239ff0f0ffb73b39ae96c89f71d7221591 | ||
generated: "2024-08-28T14:20:10.713465+02:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Install Pokeshop with Helm | ||
|
||
1. Update Helm dependencies | ||
|
||
```bash | ||
helm dependency update | ||
``` | ||
|
||
2. Install the Helm chart | ||
|
||
```bash | ||
helm install -f ./values.yaml pokeshop . | ||
``` | ||
|
||
3. [Get your Tracetest API key and env id](https://app.tracetest.io/retrieve-token) | ||
4. Install Tracetest Agent | ||
|
||
```bash | ||
helm repo add tracetestcloud https://kubeshop.github.io/tracetest-cloud-charts --force-update && helm install agent tracetestcloud/tracetest-agent --set agent.apiKey=<TRACETEST_API_KEY> --set agent.environmentId=<TRACETEST_ENVIRONMENT_ID> | ||
``` | ||
|
||
5. Create and run a test by going to [`app.tracetest.io`](https://app.tracetest.io) and using the internal Kubernetes service networking: | ||
|
||
- **POST** `http://pokeshop-pokemon-api:8081/pokemon/import` - Body: `{ "id": 1 }` | ||
- **GET** `http://pokeshop-pokemon-api:8081/pokemon` | ||
|
||
![](https://res.cloudinary.com/djwdcmwdz/image/upload/v1725358889/docs/app.tracetest.io_organizations_ttorg_e66318ba6544b856_environments_ttenv_4b0e8945dbe5045a_test_Q6Mr5o3Ig_run_24_trigger_agj1ls.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters