-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c7f7aa6
commit 100a5b3
Showing
6 changed files
with
565 additions
and
5 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
477 changes: 477 additions & 0 deletions
477
...rator/integreatly-operator-1.14.0/integreatly-operator.v1.14.0.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
83 changes: 83 additions & 0 deletions
83
...g/integreatly-operator/integreatly-operator-1.14.0/integreatly.org_installations_crd.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,83 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: installations.integreatly.org | ||
spec: | ||
group: integreatly.org | ||
names: | ||
kind: Installation | ||
listKind: InstallationList | ||
plural: installations | ||
singular: installation | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: Installation is the Schema for the installations 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/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: | ||
description: InstallationSpec defines the desired state of Installation | ||
properties: | ||
masterURL: | ||
type: string | ||
namespacePrefix: | ||
type: string | ||
pullSecret: | ||
properties: | ||
name: | ||
type: string | ||
namespace: | ||
type: string | ||
required: | ||
- name | ||
- namespace | ||
type: object | ||
routingSubdomain: | ||
type: string | ||
selfSignedCerts: | ||
type: boolean | ||
type: | ||
description: 'INSERT ADDITIONAL SPEC FIELDS - desired state of cluster | ||
Important: Run "operator-sdk generate k8s" to regenerate code after | ||
modifying this file Add custom validation using kubebuilder tags: | ||
https://book.kubebuilder.io/beyond_basics/generating_crd.html' | ||
type: string | ||
required: | ||
- namespacePrefix | ||
- selfSignedCerts | ||
- type | ||
type: object | ||
status: | ||
description: InstallationStatus defines the observed state of Installation | ||
properties: | ||
preflightMessage: | ||
type: string | ||
preflightStatus: | ||
type: string | ||
stages: | ||
description: 'INSERT ADDITIONAL STATUS FIELD - define observed state | ||
of cluster Important: Run "operator-sdk generate k8s" to regenerate | ||
code after modifying this file Add custom validation using kubebuilder | ||
tags: https://book.kubebuilder.io/beyond_basics/generating_crd.html' | ||
required: | ||
- stages | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true |
2 changes: 1 addition & 1 deletion
2
deploy/olm-catalog/integreatly-operator/integreatly-operator.package.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
channels: | ||
- currentCSV: integreatly-operator.v1.13.2 | ||
- currentCSV: integreatly-operator.v1.14.0 | ||
name: integreatly | ||
defaultChannel: integreatly | ||
packageName: integreatly |
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,5 +1,5 @@ | ||
package version | ||
|
||
var ( | ||
Version = "1.13.2" | ||
Version = "1.14.0" | ||
) |