Skip to content

Commit

Permalink
Merge pull request #135 from astoycos/v0.1.1-release
Browse files Browse the repository at this point in the history
setup for v0.1.1 release
  • Loading branch information
k8s-ci-robot authored Aug 17, 2023
2 parents 2b8d2e4 + 711ffc2 commit 64aa20f
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 8 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Table of Contents

- [v0.1.0](#v010)
- [v0.1.1](#v011)

# v0.1.0

Expand All @@ -15,3 +16,23 @@ main resources geared towards cluster admins:
- BaselineAdminNetworkPolicy

Please check out the [network-policy-api website](https://network-policy-api.sigs.k8s.io/) for more information.

# v0.1.1

API Version: v1alpha1

This is a patch release of the network-policy-api. It includes two
main resources geared towards cluster admins:

- AdminNetworkPolicy
- BaselineAdminNetworkPolicy

Additionally it includes many conformance test updates and fixes:

- Ingress/Egress Traffic conformance for TCP/UDP/SCTP
- Movement of base testing yamls
- Variable renaming and comment improvements
- Increased default timeout
- Removal of K8s.io/kubernetes dependency

Please check out the [network-policy-api website](https://network-policy-api.sigs.k8s.io/) for more information.
8 changes: 6 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ For a **PATCH** release:
Github's [release][release] page.
- Run the `make build-install-yaml` command which will generate install files in the `release/` directory.
Attach these files to the Github release.
- Update the `README.md` and `site-src/guides/index.md` files to point links and examples to the new release.
- Update the website files to point links and examples to the new release (simply `grep` for previous version).
- Write a changelog for the new release in the [changelog readme](./CHANGELOG.md).
- Make the new-release from the [releases page](https://github.com/kubernetes-sigs/network-policy-api/releases) with the new changelog and attach the `install.yaml`.

For a **MAJOR** or **MINOR** release:

Expand All @@ -64,7 +66,9 @@ For a **MAJOR** or **MINOR** release:
Github's [release][release] page.
- Run the `make build-install-yaml` command which will generate install files in the `release/` directory.
Attach these files to the Github release.
- Update the `README.md` and `site-src/guides/index.md` files to point links and examples to the new release.
- Update the website files to point links and examples to the new release (simply `grep` for previous version).
- Write a changelog for the new release in the [changelog readme](./CHANGELOG.md).
- Make the new-release from the [releases page](https://github.com/kubernetes-sigs/network-policy-api/releases) with the new changelog and attach the `install.yaml`.

For an **RC** release:

Expand Down
4 changes: 2 additions & 2 deletions config/crd/policy.networking.k8s.io_adminnetworkpolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/106
policy.networking.k8s.io/bundle-version: v0.1.0
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/135
policy.networking.k8s.io/bundle-version: v0.1.1
creationTimestamp: null
name: adminnetworkpolicies.policy.networking.k8s.io
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/106
policy.networking.k8s.io/bundle-version: v0.1.0
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/network-policy-api/pull/135
policy.networking.k8s.io/bundle-version: v0.1.1
creationTimestamp: null
name: baselineadminnetworkpolicies.policy.networking.k8s.io
spec:
Expand Down
4 changes: 2 additions & 2 deletions pkg/generator/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const (
bundleVersionAnnotation = "policy.networking.k8s.io/bundle-version"

// These values must be updated during the release process
bundleVersion = "v0.1.0"
approvalLink = "https://github.com/kubernetes-sigs/network-policy-api/pull/106"
bundleVersion = "v0.1.1"
approvalLink = "https://github.com/kubernetes-sigs/network-policy-api/pull/135"
)

// This generation code is largely copied from
Expand Down

0 comments on commit 64aa20f

Please sign in to comment.