-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Dev Preview Doc (cherry picked from commit ba351d3) * Update Operator CSV (cherry picked from commit c32c8d7) * Bring enum into other APIs that interact with it (cherry picked from commit 0e8e78a) * Implement enum for DSC Profile (cherry picked from commit 0cc11d4) * Update Bundle --------- Co-authored-by: James Harmison <[email protected]>
- Loading branch information
1 parent
77ae72e
commit 7c4a95d
Showing
11 changed files
with
152 additions
and
34 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
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
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
28 changes: 26 additions & 2 deletions
28
bundle/manifests/opendatahub-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
30 changes: 27 additions & 3 deletions
30
config/manifests/bases/opendatahub-operator.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
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,56 @@ | ||
# Open Data Hub Operator : Dev Preview | ||
|
||
ODH Operator is introducing new CRD called DataScienceCluster. The new feature set will be | ||
released in phases and will be made available before release in the form of a `custom` Operator catalog | ||
|
||
## Deploying Custom Catalog | ||
|
||
1. ODH Operator team will provide new catalogsource image with tag corresponding to latest `pre-release` in ODH [releases](https://github.com/opendatahub-io/opendatahub-operator/releases). | ||
|
||
Alternatively, you can directly get the preview version - | ||
```console | ||
export RELEASE_TAG=$( curl https://api.github.com/repos/opendatahub-io/opendatahub-operator/releases | jq -r 'map(select(.prerelease)) | first | .tag_name') | ||
``` | ||
2. Deploy CatalogSource | ||
|
||
```console | ||
$ cat <<EOF | oc create -f - | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: CatalogSource | ||
metadata: | ||
name: opendatahub-dev-catalog | ||
namespace: openshift-marketplace | ||
spec: | ||
sourceType: grpc | ||
image: quay.io/opendatahub/opendatahub-operator-catalog:$RELEASE_TAG | ||
displayName: Open Data Hub Operator (Preview) | ||
publisher: ODH | ||
EOF | ||
|
||
``` | ||
3. Subscribe to the ODH custom catalog | ||
```console | ||
$ cat <<EOF | oc create -f - | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: opendatahub-operator | ||
namespace: openshift-operators | ||
spec: | ||
channel: rolling | ||
name: opendatahub-operator | ||
source: opendatahub-dev-catalog | ||
sourceNamespace: openshift-marketplace | ||
EOF | ||
``` | ||
|
||
## Usage | ||
|
||
1. When Operator is installed it creates a namespace called `opendatahub`. | ||
2. Users need to create required `DataScienceCluster` resource by going to the `Installed Operators` tab in the OpenShift Cluster. | ||
3. Install components by setting up `profile` field or setting individual components as `enabled`. | ||
|
||
### Integrated Components | ||
|
||
- Currently on integration of ODH [core](https://opendatahub.io/docs/tiered-components/) components is available with the Operator. | ||
- Tier 1 and Tier 2 components can be deployed manually using [kustomize build](https://kubectl.docs.kubernetes.io/references/kustomize/cmd/build/) |