Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast stream update: replace RHOAI 2.17 with RHOAI 2.18 #150

Merged
merged 1 commit into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ Instructions are provided for the following Red Hat OpenShift AI ***stable*** re
+ [RHOAI 2.13 Uninstall](./setup.RHOAI-v2.13/UNINSTALL.md)

Instructions are provided for the following Red Hat OpenShift AI ***fast*** releases:
+ Red Hat OpenShift AI 2.17
+ [RHOAI 2.17 Cluster Setup](./setup.RHOAI-v2.17/CLUSTER-SETUP.md)
+ [RHOAI 2.17 Team Setup](./setup.RHOAI-v2.17/TEAM-SETUP.md)
+ [UPGRADING from RHOAI 2.16](./setup.RHOAI-v2.17/UPGRADE.md)
+ [RHOAI 2.17 Uninstall](./setup.RHOAI-v2.17/UNINSTALL.md)
+ Red Hat OpenShift AI 2.18
+ [RHOAI 2.18 Cluster Setup](./setup.RHOAI-v2.18/CLUSTER-SETUP.md)
+ [RHOAI 2.18 Team Setup](./setup.RHOAI-v2.18/TEAM-SETUP.md)
+ [UPGRADING from RHOAI 2.16](./setup.RHOAI-v2.18/UPGRADE.md)
+ [RHOAI 2.18 Uninstall](./setup.RHOAI-v2.18/UNINSTALL.md)

## Kubernetes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cluster roles, and priority classes.

Create `default-priority`, `high-priority`, and `low-priority` priority classes:
```sh
oc apply -f setup.RHOAI-v2.17/mlbatch-priorities.yaml
oc apply -f setup.RHOAI-v2.18/mlbatch-priorities.yaml
```

## Scheduler Configuration
Expand All @@ -28,8 +28,8 @@ helm install scheduler-plugins --namespace scheduler-plugins --create-namespace
```
Patch scheduler-plugins pod priorities:
```sh
oc patch deployment -n scheduler-plugins --type=json --patch-file setup.RHOAI-v2.17/scheduler-priority-patch.yaml scheduler-plugins-controller
oc patch deployment -n scheduler-plugins --type=json --patch-file setup.RHOAI-v2.17/scheduler-priority-patch.yaml scheduler-plugins-scheduler
oc patch deployment -n scheduler-plugins --type=json --patch-file setup.RHOAI-v2.18/scheduler-priority-patch.yaml scheduler-plugins-controller
oc patch deployment -n scheduler-plugins --type=json --patch-file setup.RHOAI-v2.18/scheduler-priority-patch.yaml scheduler-plugins-scheduler
```


Expand All @@ -38,7 +38,7 @@ oc patch deployment -n scheduler-plugins --type=json --patch-file setup.RHOAI-v2

Create the Red Hat OpenShift AI subscription:
```sh
oc apply -f setup.RHOAI-v2.17/mlbatch-subscription.yaml
oc apply -f setup.RHOAI-v2.18/mlbatch-subscription.yaml
````
Identify install plan:
```sh
Expand All @@ -55,11 +55,11 @@ oc patch ip -n redhat-ods-operator --type merge --patch '{"spec":{"approved":tru
```
Create DSC Initialization:
```sh
oc apply -f setup.RHOAI-v2.17/mlbatch-dsci.yaml
oc apply -f setup.RHOAI-v2.18/mlbatch-dsci.yaml
```
Create Data Science Cluster:
```sh
oc apply -f setup.RHOAI-v2.17/mlbatch-dsc.yaml
oc apply -f setup.RHOAI-v2.18/mlbatch-dsc.yaml
```
The provided DSCI and DSC are intended to install a minimal set of Red Hat OpenShift
AI managed components: `codeflare`, `kueue`, `ray`, and `trainingoperator`. The
Expand Down Expand Up @@ -117,14 +117,14 @@ The `ServiceMonitor` labeling is not required.

Create Kueue's default flavor:
```sh
oc apply -f setup.RHOAI-v2.17/default-flavor.yaml
oc apply -f setup.RHOAI-v2.18/default-flavor.yaml
```

## Cluster Role

Create `mlbatch-edit` role:
```sh
oc apply -f setup.RHOAI-v2.17/mlbatch-edit-role.yaml
oc apply -f setup.RHOAI-v2.18/mlbatch-edit-role.yaml
```

## Slack Cluster Queue
Expand Down
File renamed without changes.
File renamed without changes.
14 changes: 7 additions & 7 deletions setup.RHOAI-v2.17/UPGRADE.md → setup.RHOAI-v2.18/UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Upgrading from RHOAI 2.16
# Upgrading from RHOAI 2.17

These instructions assume you installed and configured RHOAI 2.16 following
the MLBatch [install instructions for RHOAI-v2.16](../setup.RHOAI-v2.16/CLUSTER-SETUP.md)
or the [fast stream upgrade instructions for RHOAI-V2.16](../setup.RHOAI-v2.16/UPGRADE-FAST.md)
These instructions assume you installed and configured RHOAI 2.17 following
the MLBatch [install instructions for RHOAI-v2.17](../setup.RHOAI-v2.17/CLUSTER-SETUP.md)
or the [fast stream upgrade instructions for RHOAI-V2.17](../setup.RHOAI-v2.17/UPGRADE.md)
and are subscribed to the fast channel.

Your subscription will have automatically created an unapproved
install plan to upgrade to RHOAI 2.17.
install plan to upgrade to RHOAI 2.18.

Before beginning, verify that the expected install plan exists:
```sh
Expand All @@ -15,8 +15,8 @@ oc get ip -n redhat-ods-operator
Typical output would be:
```sh
NAME CSV APPROVAL APPROVED
install-kpzzl rhods-operator.2.17.0 Manual false
install-nqrbp rhods-operator.2.16.0 Manual true
install-kpzzl rhods-operator.2.18.0 Manual false
install-nqrbp rhods-operator.2.17.0 Manual true
```

Assuming the install plan exists you can begin the upgrade process.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ spec:
name: rhods-operator
source: redhat-operators
sourceNamespace: openshift-marketplace
startingCSV: rhods-operator.2.17.0
startingCSV: rhods-operator.2.18.0
config:
env:
- name: "DISABLE_DSC_CONFIG"
Expand Down
4 changes: 2 additions & 2 deletions setup.tmpl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ docs: gotmpl
../tools/gotmpl/gotmpl -input ./TEAM-SETUP.md.tmpl -output ../setup.RHOAI-v2.13/TEAM-SETUP.md -values RHOAI-v2.13.yaml
../tools/gotmpl/gotmpl -input ./CLUSTER-SETUP.md.tmpl -output ../setup.RHOAI-v2.16/CLUSTER-SETUP.md -values RHOAI-v2.16.yaml
../tools/gotmpl/gotmpl -input ./TEAM-SETUP.md.tmpl -output ../setup.RHOAI-v2.16/TEAM-SETUP.md -values RHOAI-v2.16.yaml
../tools/gotmpl/gotmpl -input ./CLUSTER-SETUP.md.tmpl -output ../setup.RHOAI-v2.17/CLUSTER-SETUP.md -values RHOAI-v2.17.yaml
../tools/gotmpl/gotmpl -input ./TEAM-SETUP.md.tmpl -output ../setup.RHOAI-v2.17/TEAM-SETUP.md -values RHOAI-v2.17.yaml
../tools/gotmpl/gotmpl -input ./CLUSTER-SETUP.md.tmpl -output ../setup.RHOAI-v2.18/CLUSTER-SETUP.md -values RHOAI-v2.18.yaml
../tools/gotmpl/gotmpl -input ./TEAM-SETUP.md.tmpl -output ../setup.RHOAI-v2.18/TEAM-SETUP.md -values RHOAI-v2.18.yaml
../tools/gotmpl/gotmpl -input ./CLUSTER-SETUP.md.tmpl -output ../setup.k8s/CLUSTER-SETUP.md -values Kubernetes.yaml
../tools/gotmpl/gotmpl -input ./TEAM-SETUP.md.tmpl -output ../setup.k8s/TEAM-SETUP.md -values Kubernetes.yaml

Expand Down
6 changes: 6 additions & 0 deletions setup.tmpl/RHOAI-v2.18.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Values for RHOAI 2.18

RHOAI: true
VERSION: RHOAI-v2.18
KUBECTL: oc
FAIRSHARE: true