Skip to content

Commit

Permalink
run make generate
Browse files Browse the repository at this point in the history
Signed-off-by: lsviben <sviben.lovro@gmail.com>
(cherry picked from commit 15b833d)
  • Loading branch information
lsviben authored and github-actions[bot] committed Dec 13, 2023
1 parent 99b4883 commit 4aece17
Show file tree
Hide file tree
Showing 10 changed files with 35 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ rules:
verbs: ["*"]
- apiGroups:
- pkg.crossplane.io
resources: [locks, providers, configurations, providerrevisions, configurationrevisions]
resources: ["*"]
verbs: ["*"]
# Crossplane administrators have access to view CRDs in order to debug XRDs.
- apiGroups: [apiextensions.k8s.io]
Expand Down Expand Up @@ -137,7 +137,7 @@ rules:
verbs: ["*"]
- apiGroups:
- pkg.crossplane.io
resources: [locks, providers, configurations, providerrevisions, configurationrevisions]
resources: ["*"]
verbs: ["*"]
---
apiVersion: rbac.authorization.k8s.io/v1
Expand All @@ -164,7 +164,7 @@ rules:
verbs: [get, list, watch]
- apiGroups:
- pkg.crossplane.io
resources: [locks, providers, configurations, providerrevisions, configurationrevisions]
resources: ["*"]
verbs: [get, list, watch]
---
apiVersion: rbac.authorization.k8s.io/v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,7 @@ spec:
deprecationWarning:
description: DeprecationWarning specifies the message that should
be shown to the user when using this version.
maxLength: 256
type: string
name:
description: Name of this version, e.g. “v1”, “v2beta1”, etc.
Expand Down
10 changes: 10 additions & 0 deletions cluster/crds/apiextensions.crossplane.io_compositionrevisions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,11 @@ spec:
if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum
of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single"
Expand Down Expand Up @@ -1612,6 +1617,11 @@ spec:
if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum
of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single"
Expand Down
5 changes: 5 additions & 0 deletions cluster/crds/apiextensions.crossplane.io_compositions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ spec:
if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum
of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ spec:
type: boolean
deprecationWarning:
description: DeprecationWarning specifies the message that should be shown to the user when using this version.
maxLength: 256
type: string
name:
description: Name of this version, e.g. “v1”, “v2beta1”, etc. Composite resources are served under this version at `/apis/<group>/<version>/...` if `served` is true.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ spec:
description: MaxMatch specifies the number of extracted EnvironmentConfigs in Multiple mode, extracts all if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single" or "Multiple".'
Expand Down Expand Up @@ -1174,6 +1178,10 @@ spec:
description: MaxMatch specifies the number of extracted EnvironmentConfigs in Multiple mode, extracts all if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single" or "Multiple".'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ spec:
description: MaxMatch specifies the number of extracted EnvironmentConfigs in Multiple mode, extracts all if nil.
format: int64
type: integer
minMatch:
description: MinMatch specifies the required minimum of extracted EnvironmentConfigs in Multiple mode.
format: int64
type: integer
mode:
default: Single
description: 'Mode specifies retrieval strategy: "Single" or "Multiple".'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,7 @@ rules:
- apiGroups:
- pkg.crossplane.io
resources:
- locks
- providers
- configurations
- providerrevisions
- configurationrevisions
- '*'
verbs:
- '*'
- apiGroups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,6 @@ rules:
- apiGroups:
- pkg.crossplane.io
resources:
- locks
- providers
- configurations
- providerrevisions
- configurationrevisions
- '*'
verbs:
- '*'
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,7 @@ rules:
- apiGroups:
- pkg.crossplane.io
resources:
- locks
- providers
- configurations
- providerrevisions
- configurationrevisions
- '*'
verbs:
- get
- list
Expand Down

0 comments on commit 4aece17

Please sign in to comment.