Skip to content

Commit

Permalink
Merge pull request #27 from Kuadrant/navigation-stubs
Browse files Browse the repository at this point in the history
adding some navigation stubs for agreed layout
  • Loading branch information
jasonmadigan authored Aug 22, 2024
2 parents 6ff0737 + 6584443 commit d9637ef
Show file tree
Hide file tree
Showing 4 changed files with 3,808 additions and 2,330 deletions.
104 changes: 98 additions & 6 deletions console-extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,126 @@
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/ns/:ns/rhcl",
"path": "/k8s/ns/:ns/rhcl/dashboard",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/all-namespaces/rhcl",
"path": "/k8s/all-namespaces/rhcl/dashboard",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/ns/:ns/rhcl/policies",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/all-namespaces/rhcl/policies",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/ns/:ns/rhcl/policy-topology",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.page/route",
"properties": {
"exact": true,
"path": "/k8s/all-namespaces/rhcl/policy-topology",
"component": { "$codeRef": "KuadrantDashboardPage" }
}
},
{
"type": "console.navigation/section",
"properties": {
"id": "kuadrant-section-admin",
"name": "%plugin__console-plugin-template~Kuadrant%",
"perspective": "admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl-dashboard-admin",
"name": "%plugin__console-plugin-template~Dashboard%",
"href": "/k8s/all-namespaces/rhcl/dashboard",
"perspective": "admin",
"section": "kuadrant-section-admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl-policies-admin",
"name": "%plugin__console-plugin-template~Policies%",
"href": "/k8s/all-namespaces/rhcl/policies",
"perspective": "admin",
"section": "kuadrant-section-admin"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl-policy-topology-admin",
"name": "%plugin__console-plugin-template~Policy Topology%",
"href": "/k8s/all-namespaces/rhcl/policy-topology",
"perspective": "admin",
"section": "kuadrant-section-admin",
"badge": "dev"
}
},
{
"type": "console.navigation/section",
"properties": {
"id": "kuadrant-section",
"id": "kuadrant-section-dev",
"name": "%plugin__console-plugin-template~Kuadrant%",
"perspective": "dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl",
"id": "rhcl-dashboard-dev",
"name": "%plugin__console-plugin-template~Dashboard%",
"href": "/k8s/all-namespaces/rhcl",
"href": "/k8s/all-namespaces/rhcl/dashboard",
"perspective": "dev",
"section": "kuadrant-section-dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl-policies-dev",
"name": "%plugin__console-plugin-template~Policies%",
"href": "/k8s/all-namespaces/rhcl/policies",
"perspective": "dev",
"section": "kuadrant-section-dev"
}
},
{
"type": "console.navigation/href",
"properties": {
"id": "rhcl-policy-topology-dev",
"name": "%plugin__console-plugin-template~Policy Topology%",
"href": "/k8s/all-namespaces/rhcl/policy-topology",
"perspective": "dev",
"section": "kuadrant-section"
"section": "kuadrant-section-dev",
"badge": "dev"
}
}
]
Loading

0 comments on commit d9637ef

Please sign in to comment.