Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Apply changes after review
Browse files Browse the repository at this point in the history
- 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
mszostok committed Sep 11, 2019
1 parent 709781c commit b324e83
Show file tree
Hide file tree
Showing 42 changed files with 3,648 additions and 589 deletions.
Empty file.
257 changes: 0 additions & 257 deletions charts/catalog/templates/crds.yaml

This file was deleted.

28 changes: 28 additions & 0 deletions charts/catalog/templates/crds/clusterservicebroker.yaml
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: {}
28 changes: 28 additions & 0 deletions charts/catalog/templates/crds/clusterserviceclass.yaml
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: {}
31 changes: 31 additions & 0 deletions charts/catalog/templates/crds/clusterserviceplan.yaml
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: {}
31 changes: 31 additions & 0 deletions charts/catalog/templates/crds/servicebinding.yaml
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: {}
Loading

0 comments on commit b324e83

Please sign in to comment.