Skip to content

Commit

Permalink
add v0.11 changelog (#317)
Browse files Browse the repository at this point in the history
Signed-off-by: Wei Liu <[email protected]>
  • Loading branch information
skeeey authored May 24, 2023
1 parent 59e83f0 commit 6c31cc5
Show file tree
Hide file tree
Showing 44 changed files with 6,576 additions and 3,702 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG/CHANGELOG-v0.11.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog since v0.10.0
All notable changes to this project will be documented in this file.

## v0.11.0

### New Features
* Support to approve a managed cluster registraion request automatically. ([#301](https://github.com/open-cluster-management-io/registration/pull/301) [@skeeey](https://github.com/skeeey))

### Added
* Support to specify expiration seconds for managed cluster registraion CSR. ([#312](https://github.com/open-cluster-management-io/registration/pull/312) [@youhangwang](https://github.com/youhangwang))
* Support to configure the leader eclection flags for registration controller. ([#306](https://github.com/open-cluster-management-io/registration/pull/306) [@ldpliu](https://github.com/ldpliu))
* Validate the name of managed cluster. ([#304](https://github.com/open-cluster-management-io/registration/pull/304) [@qiujian16](https://github.com/qiujian16))

### Changes
* Upgrade webhook server TLS min version to 1.3. ([#314](https://github.com/open-cluster-management-io/registration/pull/314) [@ldpliu](https://github.com/ldpliu))
* Upgrade kube libraries to 1.26 ([#302](https://github.com/open-cluster-management-io/registration/pull/302) [@skeeey](https://github.com/skeeey))
* Read the add-on installation mamespace from addo-on status at first. ([#308](https://github.com/open-cluster-management-io/registration/pull/308) [@qiujian16](https://github.com/qiujian16))
* Remove anonymous check from managedClusterCreatingController sync. ([#299](https://github.com/open-cluster-management-io/registration/pull/299) [@aii-nozomu-oki](https://github.com/aii-nozomu-oki))

### Bug Fixes
* Keep the addon hub-kubeocnfig during addon is deleting. ([#315](https://github.com/open-cluster-management-io/registration/pull/315) [@zhiweiyin318](https://github.com/zhiweiyin318))
* Deny the managed cluster registraion request when managed cluster namespace is terminating. ([#310](https://github.com/open-cluster-management-io/registration/pull/310) [@xuezhaojun](https://github.com/xuezhaojun))

### Removed & Deprecated
N/C

Large diffs are not rendered by default.

Large diffs are not rendered by default.

845 changes: 513 additions & 332 deletions deploy/hub/0000_00_work.open-cluster-management.io_manifestworks.crd.yaml

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,43 @@ spec:
listKind: ClusterClaimList
plural: clusterclaims
singular: clusterclaim
scope: Cluster
preserveUnknownFields: false
scope: Cluster
versions:
- name: v1alpha1
schema:
openAPIV3Schema:
description: "ClusterClaim represents cluster information that a managed cluster claims ClusterClaims with well known names include, 1. id.k8s.io, it contains a unique identifier for the cluster. 2. clusterset.k8s.io, it contains an identifier that relates the cluster to the ClusterSet in which it belongs. \n ClusterClaims created on a managed cluster will be collected and saved into the status of the corresponding ManagedCluster on hub."
type: object
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: Spec defines the attributes of the ClusterClaim.
type: object
properties:
value:
description: Value is a claim-dependent string
type: string
maxLength: 1024
minLength: 1
served: true
storage: true
- name: v1alpha1
schema:
openAPIV3Schema:
description: "ClusterClaim represents cluster information that a managed cluster
claims ClusterClaims with well known names include, 1. id.k8s.io, it contains
a unique identifier for the cluster. 2. clusterset.k8s.io, it contains an
identifier that relates the cluster to the ClusterSet in which it belongs.
\n ClusterClaims created on a managed cluster will be collected and saved
into the status of the corresponding ManagedCluster on hub."
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: Spec defines the attributes of the ClusterClaim.
properties:
value:
description: Value is a claim-dependent string
maxLength: 1024
minLength: 1
type: string
type: object
type: object
served: true
storage: true
status:
acceptedNames:
kind: ""
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ require (
k8s.io/component-base v0.26.3
k8s.io/klog/v2 v2.90.1
k8s.io/utils v0.0.0-20230313181309-38a27ef9d749
open-cluster-management.io/api v0.10.1-0.20230310025041-ca0770573954
open-cluster-management.io/api v0.11.0
sigs.k8s.io/controller-runtime v0.14.5
)

Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1035,8 +1035,8 @@ modernc.org/golex v1.0.0/go.mod h1:b/QX9oBD/LhixY6NDh+IdGv17hgB+51fET1i2kPSmvk=
modernc.org/mathutil v1.0.0/go.mod h1:wU0vUrJsVWBZ4P6e7xtFJEhFSNsfRLJ8H458uRjg03k=
modernc.org/strutil v1.0.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs=
modernc.org/xc v1.0.0/go.mod h1:mRNCo0bvLjGhHO9WsyuKVU4q0ceiDDDoEeWDJHrNx8I=
open-cluster-management.io/api v0.10.1-0.20230310025041-ca0770573954 h1:u+X8exw4O1FCJ9DZBvpQMLsAxL5kQWGAAoZL+I50AX8=
open-cluster-management.io/api v0.10.1-0.20230310025041-ca0770573954/go.mod h1:TjWobG3dTZJf/Ye04358/F/381RjE/+HXVDGMnZBpjc=
open-cluster-management.io/api v0.11.0 h1:zBxa33Co3wseLBF4HEJobhl0P6ygj+Drhe7Wrfo0/h8=
open-cluster-management.io/api v0.11.0/go.mod h1:WgKUCJ7+Bf40DsOmH1Gdkpyj3joco+QLzrlM6Ak39zE=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ k8s.io/utils/path
k8s.io/utils/pointer
k8s.io/utils/strings/slices
k8s.io/utils/trace
# open-cluster-management.io/api v0.10.1-0.20230310025041-ca0770573954
# open-cluster-management.io/api v0.11.0
## explicit; go 1.19
open-cluster-management.io/api/addon/v1alpha1
open-cluster-management.io/api/client/addon/clientset/versioned
Expand Down
Loading

0 comments on commit 6c31cc5

Please sign in to comment.