Skip to content

Commit 0ef0ccd

Browse files
committed
Merge branch 'main' into Node-Overlay-docs-update
2 parents ecef9e2 + 4a9b2d6 commit 0ef0ccd

File tree

182 files changed

+2885
-1410
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+2885
-1410
lines changed

.github/actions/commit-status/end/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: "composite"
1212
steps:
13-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
13+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1414
if: job.status == 'success'
1515
env:
1616
NAME: ${{ inputs.name }}
@@ -27,7 +27,7 @@ runs:
2727
state: "success",
2828
target_url: `https://github.com/${process.env.REPO}/actions/runs/${process.env.RUN_ID}`,
2929
});
30-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
30+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
3131
if: job.status == 'failure' || job.status == 'cancelled'
3232
env:
3333
NAME: ${{ inputs.name }}

.github/actions/commit-status/start/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: "composite"
1212
steps:
13-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
13+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
1414
if: always()
1515
env:
1616
NAME: ${{ inputs.name }}

.github/actions/download-artifact/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: 'Downloads and unarchives artifacts for a workflow that runs on wor
33
runs:
44
using: "composite"
55
steps:
6-
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
6+
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
77
with:
88
script: |
99
let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({

.github/actions/e2e/cleanup/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ inputs:
2424
runs:
2525
using: "composite"
2626
steps:
27-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828
with:
2929
ref: ${{ inputs.git_ref }}
3030
- uses: ./.github/actions/e2e/install-eksctl
@@ -37,7 +37,7 @@ runs:
3737
CLUSTER_NAME: ${{ inputs.cluster_name }}
3838
run: |
3939
eksctl delete cluster --name "$CLUSTER_NAME" --timeout 60m --wait || true
40-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
40+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
4141
with:
4242
go-version-file: test/hack/resource/go.mod
4343
cache-dependency-path: test/hack/resource/go.sum

.github/actions/e2e/dump-logs/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
using: "composite"
1818
steps:
1919
- name: configure aws credentials
20-
uses: aws-actions/configure-aws-credentials@7474bc4690e29a8392af63c5b98e7449536d5c3a # v4.3.1
20+
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
2121
with:
2222
role-to-assume: arn:aws:iam::${{ inputs.account_id }}:role/${{ inputs.role }}
2323
aws-region: ${{ inputs.region }}

.github/actions/e2e/install-karpenter/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inputs:
2121
required: true
2222
k8s_version:
2323
description: 'Version of Kubernetes to use for the launched cluster'
24-
default: "1.32"
24+
default: "1.33"
2525
git_ref:
2626
description: "The git commit, tag, or branch to check out. Requires a corresponding Karpenter snapshot release"
2727
private_cluster:
@@ -30,12 +30,12 @@ inputs:
3030
runs:
3131
using: "composite"
3232
steps:
33-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3434
with:
3535
ref: ${{ inputs.git_ref }}
3636
- uses: ./.github/actions/e2e/install-helm
3737
with:
38-
version: v3.12.3 # Pinned to this version since v3.13.0 has issues with anonymous pulls: https://github.com/helm/helm/issues/12423
38+
version: v3.18.6
3939
# Label namespace to enforce security stranded and scrape prometheus metrics
4040
# https://kubernetes.io/docs/concepts/security/pod-security-standards/
4141
- name: add labels to kube-system namespace

.github/actions/e2e/install-prometheus/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ inputs:
2727
runs:
2828
using: "composite"
2929
steps:
30-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
with:
3232
ref: ${{ inputs.git_ref }}
3333
- uses: ./.github/actions/e2e/install-helm
3434
with:
35-
version: v3.12.3 # Pinned to this version since v3.13.0 has issues with anonymous pulls: https://github.com/helm/helm/issues/12423
35+
version: v3.18.6
3636
- name: add prometheus repo
3737
shell: bash
3838
run: |

.github/actions/e2e/run-tests-private-cluster/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ inputs:
3333
required: true
3434
k8s_version:
3535
description: 'Version of Kubernetes to use for the launched cluster'
36-
default: "1.32"
36+
default: "1.33"
3737
private_cluster:
3838
description: "Whether to create a private cluster which does not add access to the public internet. Valid values are 'true' or 'false'"
3939
default: 'false'

.github/actions/e2e/setup-cluster/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ inputs:
2727
required: true
2828
k8s_version:
2929
description: 'Version of Kubernetes to use for the launched cluster'
30-
default: "1.32"
30+
default: "1.33"
3131
eksctl_version:
3232
description: "Version of eksctl to install"
3333
default: v0.202.0
@@ -50,7 +50,7 @@ inputs:
5050
runs:
5151
using: "composite"
5252
steps:
53-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
53+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5454
with:
5555
ref: ${{ inputs.git_ref }}
5656
- uses: ./.github/actions/e2e/install-eksctl
@@ -145,7 +145,7 @@ runs:
145145
ipFamily: "$IP_FAMILY"
146146
managedNodeGroups:
147147
- instanceType: c5.4xlarge
148-
amiFamily: AmazonLinux2
148+
amiFamily: AmazonLinux2023
149149
name: "$CLUSTER_NAME-system-pool"
150150
desiredCapacity: 2
151151
disableIMDSv1: true

.github/actions/e2e/slack/notify/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ inputs:
1717
runs:
1818
using: "composite"
1919
steps:
20-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
with:
2222
ref: ${{ inputs.git_ref }}
2323
- id: get-run-name

0 commit comments

Comments
 (0)