forked from aws/karpenter-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'sock_testing' of https://github.com/engedaam/karpenter …
…into sock_testing
- Loading branch information
Showing
9 changed files
with
195 additions
and
51 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 |
---|---|---|
@@ -1,24 +1,13 @@ | ||
name: E2ESoakTrigger | ||
on: | ||
schedule: | ||
- cron: '0 */3 * * *' | ||
- cron: '0 */1 * * *' | ||
workflow_dispatch: | ||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
contents: read # This is required for actions/checkout | ||
statuses: write | ||
jobs: | ||
jobs: | ||
soak: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
role-to-assume: arn:aws:iam::${{ vars.ACCOUNT_ID }}:role/${{ vars.ROLE_NAME }} | ||
aws-region: us-west-2 | ||
role-duration-seconds: 21600 | ||
- name: run the Soak test suite | ||
run: | | ||
aws eks update-kubeconfig --name Soak-testing | ||
TEST_SUITE="Soak" make e2etests | ||
# if: github.repository == 'aws/karpenter' || github.event_name == 'workflow_dispatch' | ||
uses: ./.github/workflows/e2e-soak.yaml | ||
with: | ||
event_name: ${{ github.event_name }} | ||
secrets: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |
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,132 @@ | ||
name: E2ESoak | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
git_ref: | ||
type: string | ||
region: | ||
type: choice | ||
options: | ||
- "us-east-2" | ||
- "us-west-2" | ||
default: "us-east-2" | ||
k8s_version: | ||
type: choice | ||
options: | ||
- "1.23" | ||
- "1.24" | ||
- "1.25" | ||
- "1.26" | ||
- "1.27" | ||
default: "1.27" | ||
enable_metrics: | ||
type: boolean | ||
default: false | ||
workflow_call: | ||
inputs: | ||
git_ref: | ||
type: string | ||
region: | ||
type: string | ||
default: "us-east-2" | ||
event_name: | ||
type: string | ||
required: true | ||
k8s_version: | ||
type: string | ||
default: "1.27" | ||
enable_metrics: | ||
type: boolean | ||
default: false | ||
secrets: | ||
SLACK_WEBHOOK_URL: | ||
required: true | ||
permissions: | ||
id-token: write # This is required for requesting the JWT | ||
contents: read # This is required for actions/checkout | ||
statuses: write | ||
jobs: | ||
run-suite: | ||
name: suite-Soak | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ inputs.git_ref }} | ||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v2 | ||
with: | ||
role-to-assume: arn:aws:iam::${{ vars.ACCOUNT_ID }}:role/${{ vars.ROLE_NAME }} | ||
aws-region: ${{ inputs.region }} | ||
role-duration-seconds: 21600 | ||
- uses: ./.github/actions/e2e/install-eksctl | ||
with: | ||
eksctl_version: v0.147.0 | ||
- name: find preexisting cluster | ||
run: | | ||
export PREEXISTING=$(eksctl get cluster -o json | jq '.[].Name' | grep soak) | ||
echo "Found existing cluster name \"$PREEXISTING\"" | ||
echo PREEXISTING=$PREEXISTING >> $GITHUB_ENV | ||
- name: generate cluster name | ||
if: env.PREEXISTING == '' | ||
run: | | ||
CLUSTER_NAME=$(echo Soak-$RANDOM$RANDOM | awk '{print tolower($0)}') | ||
echo "Using cluster name \"$CLUSTER_NAME\"" | ||
echo CLUSTER_NAME=$CLUSTER_NAME >> $GITHUB_ENV | ||
- name: create eks cluster '${{ env.CLUSTER_NAME }}' | ||
if: env.PREEXISTING == '' | ||
uses: ./.github/actions/e2e/create-cluster | ||
with: | ||
account_id: ${{ vars.ACCOUNT_ID }} | ||
role: ${{ vars.ROLE_NAME }} | ||
region: ${{ inputs.region }} | ||
cluster_name: ${{ env.CLUSTER_NAME }} | ||
k8s_version: ${{ inputs.k8s_version }} | ||
ip_family: 'IPv4' | ||
git_ref: ${{ inputs.git_ref }} | ||
- name: install prometheus | ||
if: env.PREEXISTING == '' | ||
uses: ./.github/actions/e2e/install-prometheus | ||
with: | ||
account_id: ${{ vars.ACCOUNT_ID }} | ||
role: ${{ vars.ROLE_NAME }} | ||
region: ${{ vars.PROMETHEUS_REGION }} | ||
cluster_name: ${{ env.CLUSTER_NAME }} | ||
workspace_id: ${{ vars.WORKSPACE_ID }} | ||
git_ref: ${{ inputs.git_ref }} | ||
- name: install karpenter | ||
if: env.PREEXISTING == '' | ||
uses: ./.github/actions/e2e/install-karpenter | ||
with: | ||
account_id: ${{ vars.ACCOUNT_ID }} | ||
role: ${{ vars.ROLE_NAME }} | ||
region: ${{ inputs.region }} | ||
cluster_name: ${{ env.CLUSTER_NAME }} | ||
git_ref: ${{ inputs.git_ref }} | ||
- name: run the ${{ inputs.suite }} test suite | ||
if: ${{ env.PREEXISTING }} != "" | ||
run: | | ||
aws eks update-kubeconfig --name ${{ env.PREEXISTING }} | ||
TEST_SUITE="Soak" ENABLE_METRICS=${{ inputs.enable_metrics }} METRICS_REGION=${{ vars.TIMESTREAM_REGION }} GIT_REF="$(git rev-parse HEAD)" make e2etests | ||
- name: run the ${{ inputs.suite }} test suite | ||
if: ${{ env.PREEXISTING }} == "" | ||
run: | | ||
aws eks update-kubeconfig --name ${{ env.CLUSTER_NAME }} | ||
TEST_SUITE="Soak" ENABLE_METRICS=${{ inputs.enable_metrics }} METRICS_REGION=${{ vars.TIMESTREAM_REGION }} GIT_REF="$(git rev-parse HEAD)" make e2etests | ||
- name: notify slack of success or failure | ||
uses: ./.github/actions/e2e/slack/notify | ||
if: (success() || failure()) && inputs.event_name != 'workflow_run' && inputs.event_name != 'conformance' | ||
with: | ||
url: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
suite: Soak | ||
k8s_version: ${{ inputs.k8s_version }} | ||
event_name: ${{ inputs.event_name }} | ||
git_ref: ${{ inputs.git_ref }} | ||
- name: dump logs on failure | ||
uses: ./.github/actions/e2e/dump-logs | ||
if: failure() || cancelled() | ||
with: | ||
account_id: ${{ vars.ACCOUNT_ID }} | ||
role: ${{ vars.ROLE_NAME }} | ||
region: ${{ inputs.region }} | ||
cluster_name: ${{ env.CLUSTER_NAME }} |
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
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,28 @@ | ||
MIME-Version: 1.0 | ||
Content-Type: multipart/mixed; boundary="BOUNDARY" | ||
|
||
--BOUNDARY | ||
Content-Type: text/x-shellscript; charset="us-ascii" | ||
|
||
#!/bin/bash | ||
mkdir -p /etc/systemd/logind.conf.d | ||
cat << EOF > /etc/systemd/logind.conf.d/50-max-delay.conf | ||
[Login] | ||
InhibitDelayMaxSec=360 | ||
EOF | ||
|
||
systemctl restart systemd-logind | ||
|
||
sed -i '/"apiVersion*/a \ \ "shutdownGracePeriod": "3m",' /etc/kubernetes/kubelet/kubelet-config.json | ||
sed -i '/"shutdownGracePeriod*/a \ \ "shutdownGracePeriodCriticalPods": "2m",' /etc/kubernetes/kubelet/kubelet-config.json | ||
|
||
--BOUNDARY | ||
Content-Type: text/x-shellscript; charset="us-ascii" | ||
|
||
#!/bin/bash | ||
exec > >(tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1 | ||
|
||
|
||
echo $(jq '.containerLogMaxFiles=3|.containerLogMaxSize="100Mi"' /etc/kubernetes/kubelet/kubelet-config.json) > /etc/kubernetes/kubelet/kubelet-config.json | ||
|
||
--BOUNDARY-- |