-
Notifications
You must be signed in to change notification settings - Fork 408
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing verb to the role of node lifecycle controller
Signed-off-by: HF <crazytaxii666@gmail.com>
- Loading branch information
1 parent
da03883
commit 61eda57
Showing
3 changed files
with
64 additions
and
1 deletion.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...extensions.k8s.io_v1_customresourcedefinition_blockaffinities.apiregistration.k8s.io.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.7.0 | ||
creationTimestamp: null | ||
name: blockaffinities.apiregistration.k8s.io | ||
spec: | ||
group: apiregistration.k8s.io | ||
names: | ||
kind: BlockAffinity | ||
listKind: BlockAffinityList | ||
plural: blockaffinities | ||
singular: blockaffinity | ||
scope: Namespaced | ||
versions: | ||
- name: v3 | ||
schema: | ||
openAPIV3Schema: | ||
description: BlockAffinity maintains a block affinity's state | ||
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: Specification of the BlockAffinity. | ||
properties: | ||
cidr: | ||
type: string | ||
deleted: | ||
description: Deleted indicates that this block affinity is being deleted. | ||
This field is a string for compatibility with older releases that | ||
mistakenly treat this field as a string. | ||
type: string | ||
node: | ||
type: string | ||
state: | ||
type: string | ||
required: | ||
- cidr | ||
- deleted | ||
- node | ||
- state | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -356,6 +356,7 @@ rules: | |
resources: | ||
- pods/status | ||
verbs: | ||
- patch | ||
- update | ||
- apiGroups: | ||
- "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters