This repository has been archived by the owner on Apr 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from rfranzke/fix/clusterroles
Add missing owner reference to MCM cluster role
- Loading branch information
Showing
25 changed files
with
763 additions
and
0 deletions.
There are no files selected for viewing
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
28 changes: 28 additions & 0 deletions
28
controllers/provider-alicloud/example/20-crd-managedresource.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,28 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: managedresources.resources.gardener.cloud | ||
spec: | ||
group: resources.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: managedresources | ||
singular: managedresource | ||
kind: ManagedResource | ||
shortNames: | ||
- mr | ||
additionalPrinterColumns: | ||
- name: Class | ||
type: string | ||
JSONPath: .spec.class | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
32 changes: 32 additions & 0 deletions
32
controllers/provider-alicloud/example/20-crd-operatingsystemconfig.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,32 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: operatingsystemconfigs.extensions.gardener.cloud | ||
spec: | ||
group: extensions.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: operatingsystemconfigs | ||
singular: operatingsystemconfig | ||
kind: OperatingSystemConfig | ||
shortNames: | ||
- osc | ||
additionalPrinterColumns: | ||
- name: Type | ||
type: string | ||
description: The type of the operating system configuration. | ||
JSONPath: .spec.type | ||
- name: State | ||
type: string | ||
JSONPath: .status.lastOperation.state | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
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,60 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: verticalpodautoscalers.autoscaling.k8s.io | ||
spec: | ||
group: autoscaling.k8s.io | ||
scope: Namespaced | ||
names: | ||
plural: verticalpodautoscalers | ||
singular: verticalpodautoscaler | ||
kind: VerticalPodAutoscaler | ||
shortNames: | ||
- vpa | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: false | ||
- name: v1beta2 | ||
served: true | ||
storage: true | ||
validation: | ||
# openAPIV3Schema is the schema for validating custom objects. | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
required: [] | ||
properties: | ||
targetRef: | ||
type: object | ||
updatePolicy: | ||
properties: | ||
updateMode: | ||
type: string | ||
resourcePolicy: | ||
properties: | ||
containerPolicies: | ||
type: array | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: verticalpodautoscalercheckpoints.autoscaling.k8s.io | ||
spec: | ||
group: autoscaling.k8s.io | ||
scope: Namespaced | ||
names: | ||
plural: verticalpodautoscalercheckpoints | ||
singular: verticalpodautoscalercheckpoint | ||
kind: VerticalPodAutoscalerCheckpoint | ||
shortNames: | ||
- vpacheckpoint | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: false | ||
- name: v1beta2 | ||
served: true | ||
storage: true |
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
28 changes: 28 additions & 0 deletions
28
controllers/provider-aws/example/20-crd-managedresource.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,28 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: managedresources.resources.gardener.cloud | ||
spec: | ||
group: resources.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: managedresources | ||
singular: managedresource | ||
kind: ManagedResource | ||
shortNames: | ||
- mr | ||
additionalPrinterColumns: | ||
- name: Class | ||
type: string | ||
JSONPath: .spec.class | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
32 changes: 32 additions & 0 deletions
32
controllers/provider-aws/example/20-crd-operatingsystemconfig.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,32 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: operatingsystemconfigs.extensions.gardener.cloud | ||
spec: | ||
group: extensions.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: operatingsystemconfigs | ||
singular: operatingsystemconfig | ||
kind: OperatingSystemConfig | ||
shortNames: | ||
- osc | ||
additionalPrinterColumns: | ||
- name: Type | ||
type: string | ||
description: The type of the operating system configuration. | ||
JSONPath: .spec.type | ||
- name: State | ||
type: string | ||
JSONPath: .status.lastOperation.state | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
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,60 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: verticalpodautoscalers.autoscaling.k8s.io | ||
spec: | ||
group: autoscaling.k8s.io | ||
scope: Namespaced | ||
names: | ||
plural: verticalpodautoscalers | ||
singular: verticalpodautoscaler | ||
kind: VerticalPodAutoscaler | ||
shortNames: | ||
- vpa | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: false | ||
- name: v1beta2 | ||
served: true | ||
storage: true | ||
validation: | ||
# openAPIV3Schema is the schema for validating custom objects. | ||
openAPIV3Schema: | ||
properties: | ||
spec: | ||
required: [] | ||
properties: | ||
targetRef: | ||
type: object | ||
updatePolicy: | ||
properties: | ||
updateMode: | ||
type: string | ||
resourcePolicy: | ||
properties: | ||
containerPolicies: | ||
type: array | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: verticalpodautoscalercheckpoints.autoscaling.k8s.io | ||
spec: | ||
group: autoscaling.k8s.io | ||
scope: Namespaced | ||
names: | ||
plural: verticalpodautoscalercheckpoints | ||
singular: verticalpodautoscalercheckpoint | ||
kind: VerticalPodAutoscalerCheckpoint | ||
shortNames: | ||
- vpacheckpoint | ||
version: v1beta1 | ||
versions: | ||
- name: v1beta1 | ||
served: true | ||
storage: false | ||
- name: v1beta2 | ||
served: true | ||
storage: true |
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
28 changes: 28 additions & 0 deletions
28
controllers/provider-azure/example/20-crd-managedresource.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,28 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: managedresources.resources.gardener.cloud | ||
spec: | ||
group: resources.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: managedresources | ||
singular: managedresource | ||
kind: ManagedResource | ||
shortNames: | ||
- mr | ||
additionalPrinterColumns: | ||
- name: Class | ||
type: string | ||
JSONPath: .spec.class | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
32 changes: 32 additions & 0 deletions
32
controllers/provider-azure/example/20-crd-operatingsystemconfig.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,32 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: operatingsystemconfigs.extensions.gardener.cloud | ||
spec: | ||
group: extensions.gardener.cloud | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
version: v1alpha1 | ||
scope: Namespaced | ||
names: | ||
plural: operatingsystemconfigs | ||
singular: operatingsystemconfig | ||
kind: OperatingSystemConfig | ||
shortNames: | ||
- osc | ||
additionalPrinterColumns: | ||
- name: Type | ||
type: string | ||
description: The type of the operating system configuration. | ||
JSONPath: .spec.type | ||
- name: State | ||
type: string | ||
JSONPath: .status.lastOperation.state | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
Oops, something went wrong.