Skip to content
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

Add 1.29 and 1.30 support #451

Merged
merged 6 commits into from
Jun 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
kubernetes-version: [ "v1.24.17", "v1.25.13", "v1.26.8", "v1.27.5", "v1.28.3"]
kubernetes-version: ["v1.30.0", "v1.29.5", "v1.28.3", "v1.27.5", "v1.26.8"]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -212,3 +212,4 @@ jobs:
check_filenames: true
check_hidden: true
skip: ./.git,go.sum
ignore_words_list: enver,NotIn
12 changes: 6 additions & 6 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
# Latest patch version can be found in https://kubernetes.io/releases/patch-releases/
# Some versions might not be available yet in https://storage.googleapis.com/kubernetes-release/release/v1.X.Y/bin/linux/amd64/kubelet
k8sVersion: [ "v1.28.3", "v1.27.5", "v1.26.8","v1.25.13", "v1.24.17"]
k8sVersion: ["v1.30.0", "v1.29.5", "v1.28.3", "v1.27.5", "v1.26.8"]
cri: [ containerd ]
steps:
- name: Checkout repository
Expand Down Expand Up @@ -54,16 +54,16 @@ jobs:

echo $MINOR

if [ "$MINOR" -eq 24 ]; then
echo "exceptions=1_24" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 25 ]; then
echo "exceptions=1_25" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 26 ]; then
if [ "$MINOR" -eq 26 ]; then
echo "exceptions=1_26" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 27 ]; then
echo "exceptions=1_27" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 28 ]; then
echo "exceptions=1_28" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 29 ]; then
echo "exceptions=1_29" >> $GITHUB_OUTPUT
elif [ "$MINOR" -eq 30 ]; then
echo "exceptions=1_30" >> $GITHUB_OUTPUT
fi

- name: Run E2E test
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### enhancement
- Add 1.29 and 1.30 support and drop 1.25 and 1.24 @dbudziwojskiNR [#451](https://github.com/newrelic/newrelic-infra-operator/pull/451)

## v0.18.1 - 2024-05-27

### ⛓️ Dependencies
Expand Down
2 changes: 0 additions & 2 deletions e2e/1_24-exceptions.yml

This file was deleted.

2 changes: 0 additions & 2 deletions e2e/1_25-exceptions.yml

This file was deleted.

2 changes: 2 additions & 0 deletions e2e/1_29-exceptions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This metrics are not present on 1.29
except_metrics: []
2 changes: 2 additions & 0 deletions e2e/1_30-exceptions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This metrics are not present on 1.30
except_metrics: []
Loading