Skip to content

Commit 4b1fbf7

Browse files
committed
release 1.11.0
1 parent 5d53d9e commit 4b1fbf7

File tree

4 files changed

+486
-3
lines changed

4 files changed

+486
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ NAMESPACE=integreatly
33
PROJECT=integreatly-operator
44
REG=quay.io
55
SHELL=/bin/bash
6-
PREVIOUS_TAG=1.10.0
7-
TAG=1.10.1
6+
PREVIOUS_TAG=1.10.1
7+
TAG=1.11.0
88
PKG=github.com/integr8ly/integreatly-operator
99
TEST_DIRS?=$(shell sh -c "find $(TOP_SRC_DIRS) -name \\*_test.go -exec dirname {} \\; | sort | uniq")
1010
TEST_POD_NAME=integreatly-operator-test
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
apiVersion: apiextensions.k8s.io/v1beta1
2+
kind: CustomResourceDefinition
3+
metadata:
4+
name: installations.integreatly.org
5+
spec:
6+
group: integreatly.org
7+
names:
8+
kind: Installation
9+
listKind: InstallationList
10+
plural: installations
11+
singular: installation
12+
scope: Namespaced
13+
subresources:
14+
status: {}
15+
validation:
16+
openAPIV3Schema:
17+
properties:
18+
apiVersion:
19+
description: 'APIVersion defines the versioned schema of this representation
20+
of an object. Servers should convert recognized schemas to the latest
21+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
22+
type: string
23+
kind:
24+
description: 'Kind is a string value representing the REST resource this
25+
object represents. Servers may infer this from the endpoint the client
26+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
27+
type: string
28+
metadata:
29+
type: object
30+
spec:
31+
type: object
32+
properties:
33+
type:
34+
type: string
35+
enum:
36+
- workshop
37+
- managed
38+
selfSignedCerts:
39+
type: boolean
40+
routingSubdomain:
41+
type: string
42+
masterUrl:
43+
type: string
44+
namespacePrefix:
45+
type: string
46+
pullSecret:
47+
type: object
48+
properties:
49+
name:
50+
type: string
51+
namespace:
52+
type: string
53+
required:
54+
- type
55+
status:
56+
type: object
57+
version: v1alpha1
58+
versions:
59+
- name: v1alpha1
60+
served: true
61+
storage: true

deploy/olm-catalog/integreatly-operator/integreatly-operator-1.11.0/integreatly-operator.v1.11.0.clusterserviceversion.yaml

Lines changed: 422 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
packageName: integreatly
22
channels:
33
- name: integreatly
4-
currentCSV: integreatly-operator.v1.10.1
4+
currentCSV: integreatly-operator.v1.11.0

0 commit comments

Comments
 (0)