Skip to content

Commit

Permalink
adding raw changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dchourasia committed Jul 2, 2024
1 parent e926c31 commit d418364
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 48 deletions.
48 changes: 0 additions & 48 deletions config/components.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
{
"target_release": "rhods-2.5",
"previous_release": "rhods-2.4",
"upstream_org": "opendatahub-io",
"downstream_org": "red-hat-data-services",
"filter_labels": "rhods-2.5",
"jira_server": "https://issues.redhat.com/",
"jira_project": "RHODS",
"jira_labels": "eng,groomed",
"jira_issue_type": "Story",
"jira_priority": "Normal",
"jira_target_release": "RHODS_2.5.0_GA",
"components": [
{
"component_name": "Dashboard",
Expand All @@ -18,43 +7,6 @@
"robot_tags": "Dashboard",
"Test_Platform": "Jenkins",
"Jenkins_Job": ""

},
{
"component_name": "Data Science Pipelines",
"jira_component": "Pipelines",
"cpaas_repos": ["data-science-pipelines", "data-science-pipelines-operator"],
"non_cpaas_repos": [""]
},
{
"component_name": "RHODS Operator",
"jira_component": "Install Upgrade Uninstall",
"cpaas_repos": ["opendatahub-operator"],
"non_cpaas_repos": []
},
{
"component_name": "Model Serving",
"jira_component": "Model Serving",
"cpaas_repos": ["trustyai-explainability/trustyai-explainability", "trustyai-explainability/trustyai-service-operator", "kserve", "modelmesh-serving", "rest-proxy", "odh-model-controller", "modelmesh", "modelmesh-runtime-adapter"],
"non_cpaas_repos": ["caikit-tgis-serving","caikit-tgis-backend", "caikit", "caikit-nlp", "text-generation-inference", "openvinotoolkit/model_server", "caikit-nlp-client"]
},
{
"component_name": "Workbenches",
"jira_component": "Workbenches",
"cpaas_repos": ["notebooks", "kubeflow"],
"non_cpaas_repos": ["s2i-minimal-notebook", "s2i-minimal-notebook-anaconda"]
},
{
"component_name": "Distributed Workloads",
"jira_component": "Distributed Workloads",
"cpaas_repos": ["kuberay", "codeflare-operator"],
"non_cpaas_repos": ["distributed-workloads "]
},
{
"component_name": "Documentation",
"jira_component": "Documentation",
"cpaas_repos": [],
"non_cpaas_repos": ["opendatahub-documentation"]
}
]
}
2 changes: 2 additions & 0 deletions scripts/gam-trigger.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash

Empty file added src/custom_decider_dashboard.py
Empty file.
Empty file added src/gam_commons.py
Empty file.
17 changes: 17 additions & 0 deletions src/gam_controller.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

class gam_controller:
def __init__(self, business_component:str):
self.business_component = business_component


def read_component_details(self):
pass

def read_gam_config(self):
pass

def execute_custom_decider(self):
pass

def post_umb_message(self):
pass
3 changes: 3 additions & 0 deletions src/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

if __name__ == '__main__':
print('invoked!')

0 comments on commit d418364

Please sign in to comment.