-
Notifications
You must be signed in to change notification settings - Fork 216
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alex Castilio dos Santos <[email protected]>
- Loading branch information
1 parent
a3088c8
commit ed7505c
Showing
8 changed files
with
207 additions
and
45 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Scale Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- alexcastilio/scale-test-workflow | ||
# schedule: | ||
# - cron: "0 0 * * *" | ||
|
||
# permissions: | ||
# contents: read | ||
# id-token: write | ||
|
||
jobs: | ||
call-scale-test: | ||
uses: ./.github/workflows/scale-test.yaml | ||
with: | ||
num_deployments: 10 | ||
num_replicas: 10 | ||
# TODO: Fix value | ||
num_netpol: 0 | ||
cleanup: false |
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
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,17 @@ | ||
package params | ||
|
||
import ( | ||
"os" | ||
) | ||
|
||
var ( | ||
Location = os.Getenv("LOCATION") | ||
SubscriptionID = os.Getenv("AZURE_SUBSCRIPTION_ID") | ||
ResourceGroup = os.Getenv("AZURE_RESOURCE_GROUP") | ||
ClusterName = os.Getenv("CLUSTER_NAME") | ||
NodesPerPool = os.Getenv("NODES_PER_POOL") | ||
NumDeployments = os.Getenv("NUM_DEPLOYMENTS") | ||
NumReplicas = os.Getenv("NUM_REPLICAS") | ||
NumNetworkPolicies = os.Getenv("NUM_NET_POL") | ||
CleanUp = os.Getenv("CLEANUP") | ||
) |
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