Skip to content

Commit 06e536f

Browse files
authored
Merge pull request #126 from xrstf/kcp-029
update default kcp version to 0.29, add 0.28-based e2e test
2 parents 66facea + a6c3e20 commit 06e536f

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

.prow.yaml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,30 @@ presubmits:
7777
memory: 4Gi
7878
cpu: 2
7979

80-
- name: pull-kcp-operator-test-e2e
80+
- name: pull-kcp-operator-test-e2e-0.28
81+
decorate: true
82+
run_if_changed: "(Dockerfile|Makefile|.prow.yaml|go.mod|go.sum|cmd|internal|sdk|hack|test)"
83+
optional: false
84+
clone_uri: "https://github.com/kcp-dev/kcp-operator"
85+
labels:
86+
preset-goproxy: "true"
87+
spec:
88+
containers:
89+
- image: ghcr.io/kcp-dev/infra/build:1.24.9-1
90+
command:
91+
- hack/ci/run-e2e-tests.sh
92+
env:
93+
- name: KCP_TAG
94+
value: release-0.28
95+
resources:
96+
requests:
97+
memory: 4Gi
98+
cpu: 2
99+
# docker-in-docker needs privileged mode
100+
securityContext:
101+
privileged: true
102+
103+
- name: pull-kcp-operator-test-e2e-default
81104
decorate: true
82105
run_if_changed: "(Dockerfile|Makefile|.prow.yaml|go.mod|go.sum|cmd|internal|sdk|hack|test)"
83106
optional: false

docs/content/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The table below marks known support of a kcp version in kcp-operator versions.
2323
| kcp | `main` | 0.1.x |
2424
| ------ | ------------------ | ------------------ |
2525
| `main` | :warning: | :question: |
26+
| 0.29.x | :white_check_mark: | :question: |
2627
| 0.28.x | :white_check_mark: | :question: |
2728
| 0.27.x | :question: | :white_check_mark: |
2829

internal/resources/resources.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
const (
2828
ImageRepository = "ghcr.io/kcp-dev/kcp"
29-
ImageTag = "v0.28.3"
29+
ImageTag = "v0.29.0"
3030

3131
appNameLabel = "app.kubernetes.io/name"
3232
appInstanceLabel = "app.kubernetes.io/instance"

0 commit comments

Comments
 (0)