This repository has been archived by the owner on May 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove the contrib/hack/crd folder - remove reference to Kyma project - rebase with current master - restore the image in chart - extract CRDs defintion to dedicated folder
- Loading branch information
Showing
42 changed files
with
3,648 additions
and
589 deletions.
There are no files selected for viewing
Empty file.
This file was deleted.
Oops, something went wrong.
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: clusterservicebrokers.servicecatalog.k8s.io | ||
spec: | ||
group: servicecatalog.k8s.io | ||
version: v1beta1 | ||
scope: Cluster | ||
names: | ||
plural: clusterservicebrokers | ||
singular: clusterservicebroker | ||
kind: ClusterServiceBroker | ||
# categories is a list of grouped resources the custom resource belongs to. | ||
categories: | ||
- all | ||
- svcat | ||
additionalPrinterColumns: | ||
- name: URL | ||
type: string | ||
JSONPath: .spec.url | ||
- name: Status | ||
type: string | ||
JSONPath: .status.lastConditionState | ||
- 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,28 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterserviceclasses.servicecatalog.k8s.io | ||
spec: | ||
group: servicecatalog.k8s.io | ||
version: v1beta1 | ||
scope: Cluster | ||
names: | ||
plural: clusterserviceclasses | ||
singular: clusterserviceclass | ||
kind: ClusterServiceClass | ||
# categories is a list of grouped resources the custom resource belongs to. | ||
categories: | ||
- all | ||
- svcat | ||
additionalPrinterColumns: | ||
- name: External-Name | ||
type: string | ||
JSONPath: .spec.externalName | ||
- name: Broker | ||
type: string | ||
JSONPath: .spec.clusterServiceBrokerName | ||
- 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,31 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterserviceplans.servicecatalog.k8s.io | ||
spec: | ||
group: servicecatalog.k8s.io | ||
version: v1beta1 | ||
scope: Cluster | ||
names: | ||
plural: clusterserviceplans | ||
singular: clusterserviceplan | ||
kind: ClusterServicePlan | ||
# categories is a list of grouped resources the custom resource belongs to. | ||
categories: | ||
- all | ||
- svcat | ||
additionalPrinterColumns: | ||
- name: External-Name | ||
type: string | ||
JSONPath: .spec.externalName | ||
- name: Broker | ||
type: string | ||
JSONPath: .spec.clusterServiceBrokerName | ||
- name: Class | ||
type: string | ||
JSONPath: .spec.clusterServiceClassRef.name | ||
- 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,31 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: servicebindings.servicecatalog.k8s.io | ||
spec: | ||
group: servicecatalog.k8s.io | ||
version: v1beta1 | ||
scope: Namespaced | ||
names: | ||
plural: servicebindings | ||
singular: servicebinding | ||
kind: ServiceBinding | ||
# categories is a list of grouped resources the custom resource belongs to. | ||
categories: | ||
- all | ||
- svcat | ||
additionalPrinterColumns: | ||
- name: Service-Instance | ||
type: string | ||
JSONPath: .spec.instanceRef.name | ||
- name: Secret-Name | ||
type: string | ||
JSONPath: .spec.secretName | ||
- name: Status | ||
type: string | ||
JSONPath: .status.lastConditionState | ||
- name: Age | ||
type: date | ||
JSONPath: .metadata.creationTimestamp | ||
subresources: | ||
status: {} |
Oops, something went wrong.