Skip to content

Commit

Permalink
update: make TrustyAI GA
Browse files Browse the repository at this point in the history
Signed-off-by: Wen Zhou <wenzhou@redhat.com>
  • Loading branch information
zdtsw committed Oct 23, 2024
1 parent 7c72759 commit a2c1973
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions bundle/manifests/rhods-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ metadata:
"managementState": "Removed"
},
"trustyai": {
"managementState": "Removed"
"managementState": "Managed"
},
"workbenches": {
"managementState": "Managed"
Expand Down Expand Up @@ -170,7 +170,7 @@ metadata:
"managementState": "Removed"
},
"trustyai": {
"managementState": "Removed"
"managementState": "Managed"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ metadata:
"managementState": "Removed"
},
"trustyai": {
"managementState": "Removed"
"managementState": "Managed"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ spec:
workbenches:
managementState: "Managed"
trustyai:
managementState: "Removed"
managementState: "Managed"
modelregistry:
managementState: "Removed"
registriesNamespace: "rhoai-model-registries"
4 changes: 2 additions & 2 deletions docs/DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ To deploy ODH components seamlessly, ODH operator will watch two CRDs:
managementState: Managed
trainingoperator:
managementState: Removed
trustyai:
managementState: Managed
workbenches:
managementState: Managed
trustyai:
managementState: Removed
```

2. Enable only Dashboard and Workbenches(Jupyter Notebooks)
Expand Down
2 changes: 1 addition & 1 deletion docs/upgrade-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@ spec:
workbenches:
managementState: Managed
trustyai:
managementState: Removed
managementState: Managed
EOF
```
4 changes: 2 additions & 2 deletions get_all_manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ declare -A COMPONENT_MANIFESTS=(
["odh-notebook-controller"]="red-hat-data-services:kubeflow:rhoai-2.15::components/odh-notebook-controller/config:odh-notebook-controller/odh-notebook-controller"
["notebooks"]="red-hat-data-services:notebooks:rhoai-2.15:manifests:notebooks"
["trustyai"]="trustyai-explainability:trustyai-service-operator:rhoai-2.15:config:trustyai-service-operator"
["model-mesh"]="red-hat-data-services:modelmesh-serving:rrhoai-2.15::config:model-mesh"
["odh-model-controller"]="red-hat-data-services:odh-model-controller:rrhoai-2.15::config:odh-model-controller"
["model-mesh"]="red-hat-data-services:modelmesh-serving:rhoai-2.15::config:model-mesh"
["odh-model-controller"]="red-hat-data-services:odh-model-controller:rhoai-2.15::config:odh-model-controller"
["kserve"]="red-hat-data-services:kserve:rhoai-2.15::config:kserve"
["modelregistry"]="red-hat-data-services:model-registry-operator:rhoai-2.15:config:model-registry-operator"
["trainingoperator"]="red-hat-data-services:training-operator:rhoai-2.15:manifests:trainingoperator"
Expand Down
2 changes: 1 addition & 1 deletion pkg/upgrade/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func CreateDefaultDSC(ctx context.Context, cli client.Client) error {
Component: components.Component{ManagementState: operatorv1.Removed},
},
TrustyAI: trustyai.TrustyAI{
Component: components.Component{ManagementState: operatorv1.Removed},
Component: components.Component{ManagementState: operatorv1.Managed},
},
ModelRegistry: modelregistry.ModelRegistry{
Component: components.Component{ManagementState: operatorv1.Removed},
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/helper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func setupDSCInstance(name string) *dscv1.DataScienceCluster {
},
TrustyAI: trustyai.TrustyAI{
Component: components.Component{
ManagementState: operatorv1.Removed,
ManagementState: operatorv1.Managed,
},
},
ModelRegistry: modelregistry.ModelRegistry{
Expand Down

0 comments on commit a2c1973

Please sign in to comment.