-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.1.11, fix in CSV for dashboardURL (#154)
Signed-off-by: Mandana Vaziri <[email protected]>
- Loading branch information
Showing
14 changed files
with
1,336 additions
and
8 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
export TAG=0.1.10 | ||
export TAG=0.1.11 |
469 changes: 469 additions & 0 deletions
469
olm/0.1.11/ibmcloud_operator.v0.1.11.clusterserviceversion.yaml
Large diffs are not rendered by default.
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,103 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
creationTimestamp: null | ||
labels: | ||
controller-tools.k8s.io: "1.0" | ||
name: bindings.ibmcloud.ibm.com | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.state | ||
name: Status | ||
type: string | ||
- JSONPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
group: ibmcloud.ibm.com | ||
names: | ||
kind: Binding | ||
plural: bindings | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
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/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/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
alias: | ||
type: string | ||
parameters: | ||
items: | ||
properties: | ||
attributes: | ||
description: A parameter may have attributes (e.g. message hub | ||
topic might have partitions) | ||
type: object | ||
name: | ||
description: Name representing the key. | ||
type: string | ||
value: | ||
description: Defaults to null. | ||
|
||
valueFrom: | ||
description: Source for the value. Cannot be used if value is | ||
not empty. | ||
properties: | ||
configMapKeyRef: | ||
description: Selects a key of a ConfigMap. | ||
type: object | ||
secretKeyRef: | ||
description: Selects a key of a secret in the resource namespace | ||
type: object | ||
type: object | ||
required: | ||
- name | ||
type: object | ||
type: array | ||
role: | ||
type: string | ||
secretName: | ||
type: string | ||
serviceName: | ||
type: string | ||
serviceNamespace: | ||
type: string | ||
required: | ||
- serviceName | ||
type: object | ||
status: | ||
properties: | ||
generation: | ||
format: int64 | ||
type: integer | ||
instanceId: | ||
type: string | ||
keyInstanceId: | ||
type: string | ||
message: | ||
type: string | ||
secretName: | ||
type: string | ||
state: | ||
type: string | ||
type: object | ||
version: v1alpha1 | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.