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

Update ko and tested Kubernetes version #782

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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ jobs:
go-version: [1.15.x]
os: [ubuntu-latest]
kubernetes:
# Only v1.18 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out"
# Only v1.20 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out"
#- v1.17.17
#- v1.18.15
#- v1.19.7
- v1.20.2
#- v1.18.19
#- v1.19.11
- v1.20.7
max-parallel: 1
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -80,11 +80,11 @@ jobs:
go-version: [1.15.x]
os: [ubuntu-latest]
kubernetes:
# Only v1.18 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out"
# Only v1.20 is currently enabled because of the flakiness in the tests, specifically API calls failing with "etcdserver: request timed out"
#- v1.17.17
#- v1.18.15
#- v1.19.7
- v1.20.2
#- v1.18.19
#- v1.19.11
- v1.20.7
max-parallel: 2
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion hack/install-kind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kind --version
KIND_CLUSTER_NAME="${KIND_CLUSTER_NAME:-kind}"

# kind cluster version
KIND_CLUSTER_VERSION="${KIND_CLUSTER_VERSION:-v1.20.2}"
KIND_CLUSTER_VERSION="${KIND_CLUSTER_VERSION:-v1.20.7}"

echo "# Creating a new Kubernetes cluster..."
kind create cluster --quiet --name="${KIND_CLUSTER_NAME}" --image="kindest/node:${KIND_CLUSTER_VERSION}" --wait=120s
Expand Down
2 changes: 1 addition & 1 deletion samples/buildstrategy/ko/buildstrategy_ko_cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ spec:

# Download ko
pushd /tmp > /dev/null
curl -f -s -L https://github.com/google/ko/releases/download/v0.8.2/ko_0.8.2_$(uname)_$(uname -m | sed 's/aarch64/arm64/').tar.gz | tar xzf - ko
curl -f -s -L https://github.com/google/ko/releases/download/v0.8.3/ko_0.8.3_$(uname)_$(uname -m | sed 's/aarch64/arm64/').tar.gz | tar xzf - ko
popd > /dev/null

# Run ko
Expand Down