Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Add v1.1.0 operator csv and update package.yaml (#383)
Browse files Browse the repository at this point in the history
* handle generator with envs

* add 1.1 operator csv
  • Loading branch information
adrian555 authored Jul 31, 2020
1 parent b6c9607 commit a8922c1
Show file tree
Hide file tree
Showing 7 changed files with 337 additions and 6 deletions.
6 changes: 4 additions & 2 deletions deploy/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
bases:
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./crds
- ./service_account.yaml
- ./role.yaml
- ./cluster_role_binding.yaml
- ./operator.yaml

vars:
- fieldref:
fieldPath: metadata.namespace
Expand All @@ -16,3 +17,4 @@ vars:

configurations:
- ./params.yaml
namespace: operators
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
- name: Kubeflow
url: https://www.kubeflow.org/
provider:
name: IBM
name: Kubeflow
maintainers:
- name: Animesh Singh
email: singhan@us.ibm.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ spec:
- name: Kubeflow
url: https://www.kubeflow.org/
provider:
name: IBM
name: Kubeflow
maintainers:
- name: Animesh Singh
email: singhan@us.ibm.com
Expand Down
44 changes: 44 additions & 0 deletions deploy/olm-catalog/kubeflow/1.1.0/kfdef.apps.kubeflow.org.crd.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
name: kfdefs.kfdef.apps.kubeflow.org
labels:
component: kubeflow-operator
spec:
group: kfdef.apps.kubeflow.org
names:
kind: KfDef
listKind: KfDefList
plural: kfdefs
singular: kfdef
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
description: KfDef is the Schema for the kfdefs 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: KfDefSpec defines the desired state of KfDef
type: object
status:
description: KfDefStatus defines the observed state of KfDef
type: object
type: object
version: v1
versions:
- name: v1
served: true
storage: true

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deploy/olm-catalog/kubeflow/kubeflow.package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels:
- currentCSV: kubeflow.v1.0.0
- currentCSV: kubeflow.v1.1.0
name: alpha
defaultChannel: alpha
packageName: kubeflow
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: kubeflow-operator
# Replace this with the built image name
image: aipipeline/kubeflow-operator:v1.0.0
image: aipipeline/kubeflow-operator:v1.1.0
command:
- kfctl
imagePullPolicy: Always
Expand Down

0 comments on commit a8922c1

Please sign in to comment.