Skip to content

Commit e911af7

Browse files
ingvagabundopenshift-merge-robot
authored andcommitted
UPSTREAM: <carry>: openshift: regen clientset, bazel and CRDs
1 parent fdabfb1 commit e911af7

File tree

5 files changed

+117
-31
lines changed

5 files changed

+117
-31
lines changed

config/crds/machine_v1beta1_machinedeployment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ spec:
7777
= RollingUpdate.
7878
properties:
7979
maxSurge:
80+
anyOf:
81+
- type: string
82+
- type: integer
8083
description: 'The maximum number of machines that can be scheduled
8184
above the desired number of machines. Value can be an absolute
8285
number (ex: 5) or a percentage of desired machines (ex: 10%).
@@ -89,10 +92,10 @@ spec:
8992
new MachineSet can be scaled up further, ensuring that total
9093
number of machines running at any time during the update is
9194
at most 130% of desired machines.'
92-
oneOf:
95+
maxUnavailable:
96+
anyOf:
9397
- type: string
9498
- type: integer
95-
maxUnavailable:
9699
description: 'The maximum number of machines that can be unavailable
97100
during the update. Value can be an absolute number (ex: 5)
98101
or a percentage of desired machines (ex: 10%). Absolute number
@@ -104,9 +107,6 @@ spec:
104107
down further, followed by scaling up the new MachineSet, ensuring
105108
that the total number of machines available at all times during
106109
the update is at least 70% of desired machines.'
107-
oneOf:
108-
- type: string
109-
- type: integer
110110
type: object
111111
type:
112112
description: Type of deployment. Currently the only supported strategy

config/rbac/manager_role.yaml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRole
3+
metadata:
4+
creationTimestamp: null
5+
name: manager-role
6+
rules:
7+
- apiGroups:
8+
- machine.openshift.io
9+
resources:
10+
- clusters
11+
verbs:
12+
- get
13+
- list
14+
- watch
15+
- create
16+
- update
17+
- patch
18+
- delete
19+
- apiGroups:
20+
- ""
21+
resources:
22+
- events
23+
verbs:
24+
- get
25+
- list
26+
- watch
27+
- create
28+
- apiGroups:
29+
- machine.openshift.io
30+
resources:
31+
- machines
32+
- machines/status
33+
verbs:
34+
- get
35+
- list
36+
- watch
37+
- create
38+
- update
39+
- patch
40+
- delete
41+
- apiGroups:
42+
- machine.openshift.io
43+
resources:
44+
- machinedeployments
45+
verbs:
46+
- get
47+
- list
48+
- watch
49+
- create
50+
- update
51+
- patch
52+
- delete
53+
- apiGroups:
54+
- machine.openshift.io
55+
resources:
56+
- machinesets
57+
verbs:
58+
- get
59+
- list
60+
- watch
61+
- create
62+
- update
63+
- patch
64+
- delete
65+
- apiGroups:
66+
- machine.openshift.io
67+
resources:
68+
- machines
69+
verbs:
70+
- get
71+
- list
72+
- watch
73+
- create
74+
- update
75+
- patch
76+
- delete
77+
- apiGroups:
78+
- ""
79+
resources:
80+
- nodes
81+
verbs:
82+
- get
83+
- list
84+
- watch
85+
- create
86+
- update
87+
- patch
88+
- delete
89+
- apiGroups:
90+
- machine.openshift.io
91+
resources:
92+
- machines
93+
verbs:
94+
- get
95+
- list
96+
- watch
97+
- create
98+
- update
99+
- patch
100+
- delete

config/rbac/manager_role_binding.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: ClusterRoleBinding
3+
metadata:
4+
creationTimestamp: null
5+
name: manager-rolebinding
6+
roleRef:
7+
apiGroup: rbac.authorization.k8s.io
8+
kind: ClusterRole
9+
name: manager-role
10+
subjects:
11+
- kind: ServiceAccount
12+
name: ""

pkg/client/clientset_generated/clientset/clientset.go

Lines changed: 0 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/client/clientset_generated/clientset/fake/clientset_generated.go

Lines changed: 0 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)