Skip to content

Commit

Permalink
release 1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
philbrookes committed Nov 28, 2019
1 parent 44a64a7 commit 2940401
Show file tree
Hide file tree
Showing 5 changed files with 549 additions and 5 deletions.

Large diffs are not rendered by default.

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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels:
- currentCSV: integreatly-operator.v1.13.0
name: alpha
defaultChannel: alpha
- currentCSV: integreatly-operator.v1.13.1
name: integreatly
defaultChannel: integreatly
packageName: integreatly
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: integreatly-operator
# Replace this with the built image name
image: quay.io/integreatly/integreatly-operator:v1.13.0
image: quay.io/integreatly/integreatly-operator:v1.13.1
command:
- integreatly-operator
imagePullPolicy: Always
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "1.13.0"
Version = "1.13.1"
)

0 comments on commit 2940401

Please sign in to comment.