-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use key * convert back * improve error strings * return after forget * move new funcs into more appropriate file * fix imports * changelog * add tests * upgrade ubuntu * update some ci versions
- Loading branch information
Showing
6 changed files
with
232 additions
and
58 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 |
---|---|---|
|
@@ -9,10 +9,10 @@ on: | |
jobs: | ||
gen: | ||
name: Code Gen | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Set up Go 1.18 | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.18.5 | ||
id: go | ||
|
@@ -30,23 +30,24 @@ jobs: | |
./ci/check-code-and-docs-gen.sh | ||
test: | ||
name: Tests | ||
runs-on: ubuntu-18.04 | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Go 1.18 | ||
uses: actions/setup-go@v1 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.18.5 | ||
# Required for codegen tests | ||
- uses: engineerd/[email protected] | ||
with: | ||
skipClusterCreation: "true" | ||
version: v0.17.0 | ||
- name: Setup Kind | ||
run: | | ||
./ci/setup-kind.sh skv2-test-remote | ||
- uses: azure/setup-kubectl@v1 | ||
with: | ||
version: 'v1.18.0' | ||
version: 'v1.24.7' | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/go/pkg/mod | ||
|
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,5 @@ | ||
changelog: | ||
- type: FIX | ||
description: > | ||
Convert ResourceIds to a string before adding them to the reconcile queue, to avoid panic caused by ClusterResourceIds being unhashable. | ||
issueLink: https://github.com/solo-io/skv2/issues/404 |
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
Oops, something went wrong.