-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add e2e tests and fix page build CI (#197)
* incomplete * feat(tests): new e2e test framework with jq * ci: run e2e in build workflow
- Loading branch information
Showing
14 changed files
with
271 additions
and
145 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
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ dump*.json | |
/depgraph.* | ||
/local | ||
/USAGE.txt | ||
node_modules |
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 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,12 @@ | ||
#!/usr/bin/env bash | ||
|
||
kubectl create deployment demo --image=alpine:3.16 --replicas=2 -- sleep infinity | ||
sleep 5 | ||
kubectl scale deployment demo --replicas=4 | ||
sleep 5 | ||
kubectl set image deployments demo alpine=alpine:3.17 | ||
sleep 5 | ||
kubectl scale deployment demo --replicas=2 | ||
sleep 5 | ||
kubectl delete deployment demo | ||
sleep 30 |
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,8 @@ | ||
local TRACE_DISPLAY_NAME="Deployment" | ||
|
||
declare -A TRACE_SEARCH_TAGS | ||
TRACE_SEARCH_TAGS[cluster]=tracetest | ||
TRACE_SEARCH_TAGS[group]=apps | ||
TRACE_SEARCH_TAGS[resource]=deployments | ||
TRACE_SEARCH_TAGS[namespace]=default | ||
TRACE_SEARCH_TAGS[name]=demo |
Oops, something went wrong.