cdk8s-plus-31 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/api-resource.js +2 -2
- package/lib/base.js +2 -2
- package/lib/config-map.js +1 -1
- package/lib/container.js +6 -6
- package/lib/cron-job.js +1 -1
- package/lib/daemon-set.js +1 -1
- package/lib/deployment.js +3 -3
- package/lib/handler.js +1 -1
- package/lib/horizontal-pod-autoscaler.js +4 -4
- package/lib/imports/k8s.js +154 -154
- package/lib/ingress.js +2 -2
- package/lib/job.js +1 -1
- package/lib/namespace.js +2 -2
- package/lib/network-policy.js +3 -3
- package/lib/pod.js +16 -16
- package/lib/probe.js +1 -1
- package/lib/pv.js +4 -4
- package/lib/pvc.js +1 -1
- package/lib/role-binding.js +4 -4
- package/lib/role.js +2 -2
- package/lib/secret.js +6 -6
- package/lib/service-account.js +1 -1
- package/lib/service.js +1 -1
- package/lib/stateful-set.js +2 -2
- package/lib/volume.js +1 -1
- package/lib/workload.js +2 -2
- package/package.json +8 -8
- package/rotate.md +2 -2
package/rotate.md
CHANGED
|
@@ -41,7 +41,7 @@ on the latest kubernetes version. These steps should be executed in order.
|
|
|
41
41
|
6. Create a new branch in the [cdk8s-plus](https://github.com/cdk8s-team/cdk8s-plus) off the current default branch.
|
|
42
42
|
The new branch should be named `k8s-XX/main` (e.g. `k8s-25/main` for K8s v1.25.0).
|
|
43
43
|
|
|
44
|
-
7. On a new branch
|
|
44
|
+
7. **On a new branch**, based off `k8s-XX/main`, do the following:
|
|
45
45
|
|
|
46
46
|
1. Bump the minor version in [latest-k8s-version.txt](./projenrc/latest-k8s-version.txt)
|
|
47
47
|
2. ([`README.md`](./README.md)): In the table of supported versions, add a new row and remove the oldest one.
|
|
@@ -52,7 +52,7 @@ The new branch should be named `k8s-XX/main` (e.g. `k8s-25/main` for K8s v1.25.0
|
|
|
52
52
|
|
|
53
53
|
8. Wait for the PR above to be merged and verify that automation builds/tags/releases the new version successfully.
|
|
54
54
|
|
|
55
|
-
9. Update cdk8s-plus default branch to the new branch in the [GitHub repo settings](https://github.com/cdk8s-team/cdk8s-plus/settings
|
|
55
|
+
9. Update cdk8s-plus default branch to the new branch in the [GitHub repo settings](https://github.com/cdk8s-team/cdk8s-plus/settings).
|
|
56
56
|
|
|
57
57
|
10. Update any existing PRs to use k8s-XX/main as the base.
|
|
58
58
|
|