Skip to content

Commit

Permalink
Merge pull request #1727 from SaschaSchwarze0/sascha-kube-updates
Browse files Browse the repository at this point in the history
Update Kubernetes dependency
  • Loading branch information
openshift-merge-bot[bot] authored Nov 8, 2024
2 parents 13f4422 + c0585cc commit bee9608
Show file tree
Hide file tree
Showing 749 changed files with 82,237 additions and 33,629 deletions.
3 changes: 3 additions & 0 deletions .github/report-release-vulnerabilities.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/env bash
# Copyright The Shipwright Contributors
#
# SPDX-License-Identifier: Apache-2.0

set -euo pipefail

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ jobs:
fail-fast: false
matrix:
kubernetes:
- v1.28.13
- v1.29.8
- v1.31.0
tekton:
# oldest LTS that exists at the time of our planned next release
- v0.56.8
# newest LTS that exists at the time of our planned next release
- v0.65.0 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
- v0.65.1 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
max-parallel: 4
runs-on: ubuntu-latest
steps:
Expand All @@ -84,15 +84,15 @@ jobs:
- name: Install Ko
uses: ko-build/[email protected]
with:
version: v0.15.2
version: v0.17.1
- name: Install kubectl
uses: azure/setup-kubectl@v4
with:
version: ${{ matrix.kubernetes }}
- name: Create kind cluster
uses: helm/kind-action@v1
with:
version: v0.22.0
version: v0.24.0
node_image: kindest/node:${{ matrix.kubernetes }}
cluster_name: kind
wait: 120s
Expand Down Expand Up @@ -143,13 +143,13 @@ jobs:
fail-fast: false
matrix:
kubernetes:
- v1.28.13
- v1.29.8
- v1.31.0
tekton:
# oldest LTS that exists at the time of our planned next release
- v0.56.8
# newest LTS that exists at the time of our planned next release
- v0.65.0 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
- v0.65.1 # RETAIN-COMMENT: TEKTON_NEWEST_LTS
max-parallel: 4
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Create kind cluster
uses: helm/kind-action@v1
with:
version: v0.22.0
version: v0.24.0
node_image: kindest/node:${{ matrix.kubernetes }}
cluster_name: kind
config: test/kind/config.yaml
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
- name: Install Ko
uses: ko-build/[email protected]
with:
version: v0.15.2
version: v0.17.1
- name: Install Shipwright Build
run: |
make install-controller-kind
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Install tools
- uses: ko-build/[email protected]
with:
version: v0.15.2
version: v0.17.1
- uses: imjasonh/setup-crane@31b88efe9de28ae0ffa220711af4b60be9435f6e
- uses: sigstore/cosign-installer@v3

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# Install tools
- uses: ko-build/[email protected]
with:
version: v0.15.2
version: v0.17.1
- uses: sigstore/cosign-installer@v3

- name: Build Release Changelog
Expand Down
2 changes: 1 addition & 1 deletion HACK.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ In the near future, the above would be setup by the controller.
make clean && make build
```

* This project uses Golang 1.22 and controller-gen v0.14.0.
* This project uses Golang 1.22 and controller-gen v0.15.0.
* The controllers create/watch Tekton objects.

# Testing
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ZAP_FLAGS ?= --zap-log-level=debug --zap-encoder=console
TEST_NAMESPACE ?= default

# CI: tekton pipelines controller version
TEKTON_VERSION ?= v0.65.0
TEKTON_VERSION ?= v0.65.1

# E2E test flags
TEST_E2E_FLAGS ?= -r -p --randomize-all --timeout=1h --trace --vv
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ Shipwright supports any tool that can build container images in Kubernetes clust

## Try It!

- We assume you already have a Kubernetes cluster (v1.27+). If you don't, you can use [KinD](https://kind.sigs.k8s.io), which you can install by running [`./hack/install-kind.sh`](./hack/install-kind.sh).
- We assume you already have a Kubernetes cluster (v1.29+). If you don't, you can use [KinD](https://kind.sigs.k8s.io), which you can install by running [`./hack/install-kind.sh`](./hack/install-kind.sh).

- We also require a Tekton installation (v0.50.+). To install the latest LTS release, run:
- We also require a Tekton installation (v0.56.+). To install the latest LTS release, run:

```bash
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.65.0/release.yaml
kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.65.1/release.yaml
```

If you are using OpenShift cluster refer [Running on OpenShift](#running-on-openshift) for some more configurations.
Expand Down Expand Up @@ -191,7 +191,7 @@ To find out more on what's the best strategy or what else can Shipwright do for
| Dependency | Supported versions |
|--------------------------------------|------------------------------|
| [Kubernetes](https://kubernetes.io/) | v1.27.\*, v1.28.\*, v1.29.\* |
| [Kubernetes](https://kubernetes.io/) | v1.29.\*, v1.30.\*, v1.31.\* |
| [Tekton](https://tekton.dev) | v0.56.\*, v0.59.\*, v0.62.\*, v0.65.\* |
### Platform support
Expand Down Expand Up @@ -238,4 +238,4 @@ We are so excited to have you!
---
Shipwright is a [Cloud Native Computing Foundation (CNCF) Sandbox project](https://www.cncf.io/sandbox-projects/).
Shipwright is a [Cloud Native Computing Foundation (CNCF) Sandbox project](https://www.cncf.io/sandbox-projects/).
Loading

0 comments on commit bee9608

Please sign in to comment.