-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(deploy): use docker run instead of helm test, metrics dashboard scripts #8926
Changes from all commits
f15e1b7
95a0398
bd1fcc8
d3f4866
deb1559
7610950
3d3f6c2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
echo "Run this script after the metrics pods all come up. After running this script, port forward 5601 locally" | ||
echo "Then navigate to https://localhost:5601 and login with user elastic password admin" | ||
kubectl port-forward -n metrics service/metrics-eck-kibana-kb-http 5601:5601 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🎉 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts | ||
helm repo add elastic https://helm.elastic.co | ||
helm repo update | ||
helm dependency build "$(git rev-parse --show-toplevel)/spartan/metrics/" | ||
kubectl create -f https://download.elastic.co/downloads/eck/2.14.0/crds.yaml 2>/dev/null | ||
kubectl create secret generic elasticsearch-es-elastic-user --from-literal=elastic=admin -n metrics | ||
kubectl apply -f https://download.elastic.co/downloads/eck/2.14.0/operator.yaml | ||
helm upgrade --install metrics "$(git rev-parse --show-toplevel)/spartan/metrics/" --wait --namespace metrics --create-namespace --wait-for-jobs=true --timeout=30m |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -299,9 +299,9 @@ e2e-cli-wallet: | |
network-smoke: | ||
ARG values_file | ||
LOCALLY | ||
RUN NAMESPACE=smoke FRESH_INSTALL=true FORCE_BUILD=$force_build VALUES_FILE=${values_file:-default.yaml} ./scripts/network_test.sh ./src/spartan/smoke.test.ts | ||
RUN NAMESPACE=smoke FRESH_INSTALL=true VALUES_FILE=${values_file:-default.yaml} ./scripts/network_test.sh ./src/spartan/smoke.test.ts | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. no longer an arg, we never build anymore instead requesting user does (often passing AZTEC_DOCKER_TAG instead suffices) |
||
network-transfer: | ||
ARG values_file | ||
LOCALLY | ||
RUN NAMESPACE=transfer FRESH_INSTALL=true FORCE_BUILD=$force_build VALUES_FILE=${values_file:-default.yaml} ./scripts/network_test.sh ./src/spartan/transfer.test.ts | ||
RUN NAMESPACE=transfer FRESH_INSTALL=true VALUES_FILE=${values_file:-default.yaml} ./scripts/network_test.sh ./src/spartan/transfer.test.ts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removing helm test config