Skip to content

Commit a6df538

Browse files
authored
Merge pull request #61 from same7ammar/feat/add-rolebindings-forms
Adding Rolebindings Form
2 parents 5be981f + 4763e20 commit a6df538

12 files changed

+2768
-299
lines changed

src/App.tsx

Lines changed: 374 additions & 173 deletions
Large diffs are not rendered by default.

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export function Footer() {
44
const currentYear = new Date().getFullYear();
55

66
return (
7-
<footer className="bg-gradient-to-r from-gray-900 via-blue-900 to-indigo-900 text-white relative">
7+
<footer className="bg-gradient-to-r from-gray-900 via-blue-900 to-indigo-900 text-white relative" role="contentinfo">
88
{/* Bottom Bar */}
99
<div className="border-t border-gray-700">
1010
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">

src/components/ResourceSummary.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ export function ResourceSummary({
203203
<div className="text-sm text-blue-700 space-y-1">
204204
<div>Deployments: {validDeployments.length}</div>
205205
<div>DaemonSets: {validDaemonSets.length}</div>
206-
<div>Jobs: {validJobs.filter(job => job.type === 'job').length}</div>
207-
<div>CronJobs: {validJobs.filter(job => job.type === 'cronjob').length}</div>
206+
<div>Jobs: {validJobs.length}</div>
208207
<div>Total Containers: {validDeployments.reduce((sum, d) => sum + (d.containers?.length || 0), 0) + validDaemonSets.reduce((sum, d) => sum + (d.containers?.length || 0), 0) + validJobs.reduce((sum, job) => sum + (job.containers?.length || 0), 0)}</div>
209208
</div>
210209
</div>

src/components/RoleBindingManager.tsx

Lines changed: 731 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)