Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Fold v0.9.1 CRD/CSV into v0.10.0 CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczyns committed Jun 16, 2020
1 parent 3834ad3 commit f2706eb
Show file tree
Hide file tree
Showing 5 changed files with 1,419 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ metadata:
{
"name": "incubator",
"https": {
"url": "https://github.com/kabanero-io/kabanero-stack-hub/releases/download/0.9.0-rc.1/kabanero-stack-hub-index.yaml"
"url": "https://github.com/kabanero-io/kabanero-stack-hub/releases/download/0.9.0/kabanero-stack-hub-index.yaml"
}
}
],
"pipelines": [
{
"id": "default",
"sha256": "850dfa631d957ba66978a4701dc08b8bd41cc9ca52c0cde8344941032354a770",
"sha256": "deb5162495e1fe60ab52632f0879f9c9b95e943066590574865138791cbe948f",
"https": {
"url": "https://github.com/kabanero-io/kabanero-pipelines/releases/download/0.9.0-rc.2/default-kabanero-pipelines.tar.gz"
"url": "https://github.com/kabanero-io/kabanero-pipelines/releases/download/0.9.1/default-kabanero-pipelines.tar.gz"
}
}
]
Expand All @@ -56,9 +56,9 @@ metadata:
{ "version": "0.2.11",
"pipelines": [
{ "id": "default",
"sha256": "850dfa631d957ba66978a4701dc08b8bd41cc9ca52c0cde8344941032354a770",
"sha256": "deb5162495e1fe60ab52632f0879f9c9b95e943066590574865138791cbe948f",
"https": {
"url": "https://github.com/kabanero-io/kabanero-pipelines/releases/download/0.9.0-rc.2/default-kabanero-pipelines.tar.gz"
"url": "https://github.com/kabanero-io/kabanero-pipelines/releases/download/0.9.1/default-kabanero-pipelines.tar.gz"
}
}
],
Expand All @@ -77,7 +77,7 @@ spec:
apiservicedefinitions: {}
maturity: alpha
version: 0.10.0
replaces: kabanero-operator.v0.9.0
replaces: kabanero-operator.v0.9.1
displayName: Kabanero Operator
description: |
The Kabanero operator is used to manage Kabanero Foundation instances on your Open Shift or Kubernetes cluster.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
capabilities: Basic Install
categories: "Integration & Delivery"
certified: "false"
containerImage: kabanero/kabanero-operator:latest
containerImage: kabanero/kabanero-operator@sha256:26e3fa7765cdfb89610541528e9d8c4052a77a6e43254eb7c7513b4941711f4f
createdAt: 2019-11-19T12:00:00.000-0500
description: Bringings together foundational open source technologies into a modern microservices-based framework.
olm.skipRange: '>=0.6.1 <0.9.1'
Expand Down Expand Up @@ -302,7 +302,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: kabanero-operator
image: kabanero/kabanero-operator:latest
image: kabanero/kabanero-operator@sha256:26e3fa7765cdfb89610541528e9d8c4052a77a6e43254eb7c7513b4941711f4f
imagePullPolicy: Always
name: kabanero-operator
resources: {}
Expand Down Expand Up @@ -332,3 +332,12 @@ spec:
type: AllNamespaces
provider:
name: IBM
relatedImages:
- image: kabanero/kabanero-command-line-services:0.9.1
name: cli-services-0.9.1
- image: kabanero/landing:0.9.0
name: landing-0.9.0
- image: kabanero/events-operator:0.1.0
name: events-0.9.0
- image: kabanero/che-devfile-registry:0.11.0
name: codeready-workspaces-0.9.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: collections.kabanero.io
spec:
additionalPrinterColumns:
- JSONPath: .metadata.creationTimestamp
description: CreationTimestamp is a timestamp representing the server time when
this object was created. It is not guaranteed to be set in happens-before order
across separate operations.
name: Age
type: date
- JSONPath: .status.status
description: Collection status.
name: Status
type: string
group: kabanero.io
names:
kind: Collection
listKind: CollectionList
plural: collections
singular: collection
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: Collection is the Schema for the collections API
properties:
apiVersion:
description: 'APIVersion defines the versioned schema of this representation
of an object. Servers should convert recognized schemas to the latest
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
type: string
kind:
description: 'Kind is a string value representing the REST resource this
object represents. Servers may infer this from the endpoint the client
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
type: string
metadata:
type: object
spec:
description: CollectionSpec defines the desired composition of a Collection
properties:
desiredState:
type: string
name:
type: string
repositoryUrl:
type: string
skipCertVerification:
type: boolean
version:
type: string
versions:
items:
description: CollectionVersion defines the desired composition of
a specific collection version.
properties:
desiredState:
type: string
repositoryUrl:
type: string
skipCertVerification:
type: boolean
version:
type: string
type: object
type: array
x-kubernetes-list-type: set
type: object
status:
description: CollectionStatus defines the observed state of a collection
properties:
activeLocation:
type: string
activePipelines:
items:
description: PipelineStatus defines the observed state of the assets
located within a single pipeline .tar.gz.
properties:
activeAssets:
items:
description: RepositoryAssetStatus defines the observed state
of a single asset in a respository, in the collection.
properties:
assetDigest:
type: string
assetName:
type: string
group:
type: string
kind:
type: string
namespace:
type: string
status:
type: string
statusMessage:
type: string
version:
type: string
type: object
type: array
x-kubernetes-list-type: set
digest:
type: string
name:
type: string
url:
type: string
required:
- digest
- name
- url
type: object
type: array
x-kubernetes-list-type: set
activeVersion:
type: string
availableLocation:
type: string
availableVersion:
type: string
images:
items:
description: Image defines a container image used by a collection
properties:
id:
type: string
image:
type: string
type: object
type: array
x-kubernetes-list-type: set
status:
type: string
statusMessage:
type: string
versions:
items:
description: CollectionVersionStatus defines the observed state of
a specific collection version.
properties:
images:
items:
description: Image defines a container image used by a collection
properties:
id:
type: string
image:
type: string
type: object
type: array
x-kubernetes-list-type: set
location:
type: string
pipelines:
items:
description: PipelineStatus defines the observed state of the
assets located within a single pipeline .tar.gz.
properties:
activeAssets:
items:
description: RepositoryAssetStatus defines the observed
state of a single asset in a respository, in the collection.
properties:
assetDigest:
type: string
assetName:
type: string
group:
type: string
kind:
type: string
namespace:
type: string
status:
type: string
statusMessage:
type: string
version:
type: string
type: object
type: array
x-kubernetes-list-type: set
digest:
type: string
name:
type: string
url:
type: string
required:
- digest
- name
- url
type: object
type: array
x-kubernetes-list-type: set
status:
type: string
statusMessage:
type: string
version:
type: string
type: object
type: array
x-kubernetes-list-type: set
type: object
type: object
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
Loading

0 comments on commit f2706eb

Please sign in to comment.