You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/contributor/code-contribute.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -537,8 +537,7 @@ kubevela/kubevela
537
537
- `oam-dev/terraform-config-inspect`
538
538
539
539
3. When upgrading a downstream repo that depends on one you just merged and which is not tagged yet, temporarily reference the upstream commit:
540
-
- `go get github.com/kubevela/pkg@<commit-sha>` (creates a pseudo-version) OR
541
-
- Add a `replace` directive pointing to that commit, then remove it after a tag is cut.
540
+
- `go get github.com/kubevela/pkg@<commit-sha>` (creates a pseudo-version)
542
541
543
542
4. Only AFTER all other repositories are merged upgrade `kubevela/kubevela`
544
543
- Create the upgrade PR from a branch named `chore/upgrade-k8s-*` (e.g. `chore/upgrade-k8s-1.29-to-1.30`). This naming convention triggers the upgrade verification pipelines.
@@ -570,15 +569,12 @@ Use this template in each PR description:
570
569
571
570
```
572
571
### Upgrade Checklist
573
-
- [ ] Go version set to 1.xx in go.mod
574
-
- [ ] CI workflows use actions/setup-go with 1.xx
575
-
- [ ] Dockerfile base image updated
576
-
- [ ] k8s.io/* deps bumped to v1.yy.z
572
+
- [ ] Go version set to x.y.z in go.mod
573
+
- [ ] CI workflows use actions/setup-go with the same version: x.y.z
574
+
- [ ] Dockerfile base image updated (based on compatibility with the new Go version)
575
+
- [ ] k8s.io/* dependencies bumped to va.b.c
577
576
- [ ] controller-runtime compatible version used
577
+
- [ ] All the tests running Kubevela on a Kubernetes cluster (Kind/K3D) use the correct Kubernetes version
0 commit comments