Skip to content
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
25 changes: 24 additions & 1 deletion .prow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,30 @@ presubmits:
memory: 4Gi
cpu: 2

- name: pull-kcp-operator-test-e2e
- name: pull-kcp-operator-test-e2e-0.28
decorate: true
run_if_changed: "(Dockerfile|Makefile|.prow.yaml|go.mod|go.sum|cmd|internal|sdk|hack|test)"
optional: false
clone_uri: "https://github.com/kcp-dev/kcp-operator"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
command:
- hack/ci/run-e2e-tests.sh
env:
- name: KCP_TAG
value: release-0.28
resources:
requests:
memory: 4Gi
cpu: 2
# docker-in-docker needs privileged mode
securityContext:
privileged: true

- name: pull-kcp-operator-test-e2e-default
decorate: true
run_if_changed: "(Dockerfile|Makefile|.prow.yaml|go.mod|go.sum|cmd|internal|sdk|hack|test)"
optional: false
Expand Down
1 change: 1 addition & 0 deletions docs/content/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ The table below marks known support of a kcp version in kcp-operator versions.
| kcp | `main` | 0.1.x |
| ------ | ------------------ | ------------------ |
| `main` | :warning: | :question: |
| 0.29.x | :white_check_mark: | :question: |
| 0.28.x | :white_check_mark: | :question: |
| 0.27.x | :question: | :white_check_mark: |

Expand Down
2 changes: 1 addition & 1 deletion internal/resources/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

const (
ImageRepository = "ghcr.io/kcp-dev/kcp"
ImageTag = "v0.28.3"
ImageTag = "v0.29.0"

appNameLabel = "app.kubernetes.io/name"
appInstanceLabel = "app.kubernetes.io/instance"
Expand Down