Skip to content

Commit adc4035

Browse files
Create new Dev preview version v0.0.3 (#304)
1 parent 24d6c68 commit adc4035

11 files changed

+37
-19
lines changed

Dockerfiles/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG GOLANG_VERSION=1.18.9
44
FROM registry.access.redhat.com/ubi8/go-toolset:$GOLANG_VERSION as builder
55

66
ARG MANIFEST_REPO="https://github.com/opendatahub-io/odh-manifests"
7-
ARG MANIFEST_RELEASE="master"
7+
ARG MANIFEST_RELEASE="feature-rearchitecture"
88
ARG MANIFEST_TARBALL="${MANIFEST_REPO}/tarball/${MANIFEST_RELEASE}"
99

1010
WORKDIR /workspace

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
66
IMAGE_OWNER ?= opendatahub
7-
VERSION ?= 0.0.2
7+
VERSION ?= 0.0.3
88
# IMAGE_TAG_BASE defines the opendatahub.io namespace and part of the image name for remote images.
99
# This variable is used to construct full image tags for bundle and catalog images.
1010
#
@@ -20,7 +20,7 @@ IMAGE_BUILDER ?= podman
2020
OPERATOR_NAMESPACE ?= opendatahub-operator-system
2121

2222
MANIFEST_REPO ?= opendatahub-io
23-
MANIFEST_RELEASE ?= master
23+
MANIFEST_RELEASE ?= feature-rearchitecture
2424

2525
CHANNELS="fast"
2626
# CHANNELS define the bundle channels used in the bundle.
@@ -252,7 +252,7 @@ endif
252252

253253
# A comma-separated list of bundle images (e.g. make catalog-build BUNDLE_IMGS=example.com/operator-bundle:v0.1.0,example.com/operator-bundle:v0.2.0).
254254
# These images MUST exist in a registry and be pull-able.
255-
BUNDLE_IMGS ?= $(BUNDLE_IMG)
255+
BUNDLE_IMGS=quay.io/$(IMAGE_OWNER)/opendatahub-operator-bundle:v0.0.2,quay.io/$(IMAGE_OWNER)/opendatahub-operator-bundle:v0.0.3
256256

257257
# The image tag given to the resulting catalog image (e.g. make catalog-build CATALOG_IMG=example.com/operator-catalog:v0.2.0).
258258
CATALOG_IMG ?= $(IMAGE_TAG_BASE)-catalog:v$(VERSION)

bundle/manifests/datasciencecluster.opendatahub.io_datascienceclusters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.12.0
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
name: datascienceclusters.datasciencecluster.opendatahub.io
88
spec:

bundle/manifests/dscinitialization.opendatahub.io_dscinitializations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.12.0
5+
controller-gen.kubebuilder.io/version: v0.9.2
66
creationTimestamp: null
77
name: dscinitializations.dscinitialization.opendatahub.io
88
spec:

bundle/manifests/opendatahub-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,15 @@ metadata:
151151
}
152152
}
153153
]
154-
capabilities: Basic Install
154+
capabilities: Seamless Upgrades
155155
operatorframework.io/initialization-resource: "{ \n \"apiVersion\": \"datasciencecluster.opendatahub.io/v1alpha1\",\n
156156
\ \"kind\": \"DataScienceCluster\", \n \"metadata\":{ \n \"name\": \"default\"\n
157157
\ },\n \"spec\": {}\n}"
158158
operators.operatorframework.io/builder: operator-sdk-v1.24.1
159159
operators.operatorframework.io/internal-objects: '[dscinitialization.opendatahub.io]'
160160
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
161161
repository: https://github.com/opendatahub-io/opendatahub-operator
162-
name: opendatahub-operator.v0.0.2
162+
name: opendatahub-operator.v0.0.3
163163
namespace: placeholder
164164
spec:
165165
apiservicedefinitions: {}
@@ -382,7 +382,7 @@ spec:
382382
- --leader-elect
383383
command:
384384
- /manager
385-
image: quay.io/opendatahub/opendatahub-operator:dev-0.0.2
385+
image: quay.io/opendatahub/opendatahub-operator:dev-0.0.3
386386
imagePullPolicy: Always
387387
livenessProbe:
388388
httpGet:
@@ -470,4 +470,4 @@ spec:
470470
maturity: alpha
471471
provider:
472472
name: ODH
473-
version: 0.0.2
473+
version: 0.0.3

config/crd/bases/datasciencecluster.opendatahub.io_datascienceclusters.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.12.0
6+
controller-gen.kubebuilder.io/version: v0.9.2
7+
creationTimestamp: null
78
name: datascienceclusters.datasciencecluster.opendatahub.io
89
spec:
910
group: datasciencecluster.opendatahub.io

config/crd/bases/dscinitialization.opendatahub.io_dscinitializations.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.12.0
6+
controller-gen.kubebuilder.io/version: v0.9.2
7+
creationTimestamp: null
78
name: dscinitializations.dscinitialization.opendatahub.io
89
spec:
910
group: dscinitialization.opendatahub.io

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: quay.io/opendatahub/opendatahub-operator
16-
newTag: dev-0.0.2
16+
newTag: dev-0.0.3

config/manifests/bases/opendatahub-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: ClusterServiceVersion
33
metadata:
44
annotations:
55
alm-examples: '[]'
6-
capabilities: Basic Install
6+
capabilities: Seamless Upgrades
77
operatorframework.io/initialization-resource: "{ \n \"apiVersion\": \"datasciencecluster.opendatahub.io/v1alpha1\",\n
88
\ \"kind\": \"DataScienceCluster\", \n \"metadata\":{ \n \"name\": \"default\"\n
99
\ },\n \"spec\": {}\n}"

config/rbac/role.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
apiVersion: rbac.authorization.k8s.io/v1
33
kind: ClusterRole
44
metadata:
5+
creationTimestamp: null
56
name: controller-manager-role
67
rules:
78
- apiGroups:

0 commit comments

Comments
 (0)