Skip to content

Commit fe8ad92

Browse files
author
Sushilkumar Deshmukh
committed
feat: migrate repository references from sudeshmu to KubeAgentic-Community
- Update go.mod module path to github.com/KubeAgentic-Community/kubeagentic - Fix all Go import statements across controllers, webhooks, and tests - Update GitHub URLs in documentation (README, index.md, examples.md, etc.) - Update Jekyll configuration files (_config.yml) with new repository_url - Update deployment commands and raw file URLs - Update GitHub Pages references for organization transfer - Prepare codebase for repository transfer to KubeAgentic-Community org Total: 24 files updated with 60+ URL references migrated
1 parent 1692957 commit fe8ad92

24 files changed

+60
-60
lines changed

OPERATOR_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,6 @@ This project is licensed under the MIT License - see the LICENSE file for detail
316316
## 🆘 Support
317317

318318
- **Documentation**: [https://kubeagentic.com](https://kubeagentic.com)
319-
- **Issues**: [GitHub Issues](https://github.com/sudeshmu/KubeAgentic/issues)
320-
- **Discussions**: [GitHub Discussions](https://github.com/sudeshmu/KubeAgentic/discussions)
319+
- **Issues**: [GitHub Issues](https://github.com/KubeAgentic-Community/KubeAgentic/issues)
320+
- **Discussions**: [GitHub Discussions](https://github.com/KubeAgentic-Community/KubeAgentic/discussions)
321321
- **Email**: contact@kubeagentic.com

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
<p align="center">
99
<a href="https://kubeagentic.com"><img src="https://img.shields.io/badge/Website-kubeagentic.com-blue?style=for-the-badge" alt="Website"></a>
10-
<a href="https://github.com/sudeshmu/KubeAgentic/releases"><img src="https://img.shields.io/github/v/release/sudeshmu/KubeAgentic?style=for-the-badge" alt="Release"></a>
11-
<a href="https://github.com/sudeshmu/KubeAgentic/blob/main/LICENSE"><img src="https://img.shields.io/github/license/sudeshmu/KubeAgentic?style=for-the-badge" alt="License"></a>
12-
<a href="https://github.com/sudeshmu/KubeAgentic/stargazers"><img src="https://img.shields.io/github/stars/sudeshmu/KubeAgentic?style=for-the-badge" alt="Stars"></a>
10+
<a href="https://github.com/KubeAgentic-Community/KubeAgentic/releases"><img src="https://img.shields.io/github/v/release/KubeAgentic-Community/KubeAgentic?style=for-the-badge" alt="Release"></a>
11+
<a href="https://github.com/KubeAgentic-Community/KubeAgentic/blob/main/LICENSE"><img src="https://img.shields.io/github/license/KubeAgentic-Community/KubeAgentic?style=for-the-badge" alt="License"></a>
12+
<a href="https://github.com/KubeAgentic-Community/KubeAgentic/stargazers"><img src="https://img.shields.io/github/stars/KubeAgentic-Community/KubeAgentic?style=for-the-badge" alt="Stars"></a>
1313
</p>
1414
</div>
1515

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ twitter:
1212
card: summary_large_image
1313
github:
1414
username: sudeshmu
15-
repository_url: https://github.com/sudeshmu/KubeAgentic
15+
repository_url: https://github.com/KubeAgentic-Community/KubeAgentic
1616

1717
# Build settings
1818
markdown: kramdown
@@ -73,7 +73,7 @@ defaults:
7373
layout: "page"
7474

7575
# GitHub Pages settings
76-
repository: sudeshmu/KubeAgentic
76+
repository: KubeAgentic-Community/KubeAgentic
7777

7878
# Social links
7979
github_username: sudeshmu

api/webhook/v1/agent_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"sigs.k8s.io/controller-runtime/pkg/webhook"
1414
"sigs.k8s.io/controller-runtime/pkg/webhook/admission"
1515

16-
aiv1 "github.com/sudeshmu/kubeagentic/api/v1"
16+
aiv1 "github.com/KubeAgentic-Community/kubeagentic/api/v1"
1717
)
1818

1919
// +kubebuilder:webhook:path=/mutate-ai-example-com-v1-agent,mutating=true,failurePolicy=fail,sideEffects=None,groups=ai.example.com,resources=agents,verbs=create;update,versions=v1,name=magent.kb.io,admissionReviewVersions=v1

controllers/agent_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
2020
"sigs.k8s.io/controller-runtime/pkg/log"
2121

22-
aiv1 "github.com/sudeshmu/kubeagentic/api/v1"
22+
aiv1 "github.com/KubeAgentic-Community/kubeagentic/api/v1"
2323
)
2424

2525
// AgentReconciler reconciles an Agent object.

controllers/agent_controller_enhanced.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
2020
"sigs.k8s.io/controller-runtime/pkg/log"
2121

22-
aiv1 "github.com/sudeshmu/kubeagentic/api/v1"
22+
aiv1 "github.com/KubeAgentic-Community/kubeagentic/api/v1"
2323
)
2424

2525
// AgentReconciler reconciles an Agent object with enhanced features

controllers/agent_controller_extensions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
1818
"sigs.k8s.io/controller-runtime/pkg/log"
1919

20-
aiv1 "github.com/sudeshmu/kubeagentic/api/v1"
20+
aiv1 "github.com/KubeAgentic-Community/kubeagentic/api/v1"
2121
)
2222

2323
// reconcileHPA creates or updates HorizontalPodAutoscaler for the agent

controllers/monitoring_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
1616
"sigs.k8s.io/controller-runtime/pkg/log"
1717

18-
aiv1 "github.com/sudeshmu/kubeagentic/api/v1"
18+
aiv1 "github.com/KubeAgentic-Community/kubeagentic/api/v1"
1919
)
2020

2121
// MonitoringReconciler handles monitoring and observability for agents

docs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -216,15 +216,15 @@ Help improve the documentation:
216216

217217
## 🔗 Additional Resources
218218

219-
- **Website**: [https://sudeshmu.github.io/KubeAgentic/](https://sudeshmu.github.io/KubeAgentic/)
220-
- **GitHub**: [https://github.com/sudeshmu/KubeAgentic](https://github.com/sudeshmu/KubeAgentic)
219+
- **Website**: [https://KubeAgentic-Community.github.io/KubeAgentic/](https://KubeAgentic-Community.github.io/KubeAgentic/)
220+
- **GitHub**: [https://github.com/KubeAgentic-Community/KubeAgentic](https://github.com/KubeAgentic-Community/KubeAgentic)
221221
- **Examples**: [/examples directory](../examples/)
222222
- **Local Testing**: [/local-testing directory](../local-testing/)
223223

224224
## 📞 Support
225225

226-
- **Documentation Issues**: [GitHub Issues](https://github.com/sudeshmu/KubeAgentic/issues)
227-
- **Feature Requests**: [GitHub Discussions](https://github.com/sudeshmu/KubeAgentic/discussions)
226+
- **Documentation Issues**: [GitHub Issues](https://github.com/KubeAgentic-Community/KubeAgentic/issues)
227+
- **Feature Requests**: [GitHub Discussions](https://github.com/KubeAgentic-Community/KubeAgentic/discussions)
228228
- **Community**: Check the repository for community guidelines
229229

230230
Choose your framework, configure your agent, and start building intelligent systems on Kubernetes!

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ Install KubeAgentic using one of these methods:
4343

4444
**Option 1: Direct Installation**
4545
```bash
46-
kubectl apply -f https://raw.githubusercontent.com/sudeshmu/kubeagentic/main/deploy/all.yaml
46+
kubectl apply -f https://raw.githubusercontent.com/KubeAgentic-Community/kubeagentic/main/deploy/all.yaml
4747
```
4848

4949
**Option 2: Local Installation**
5050
```bash
51-
git clone https://github.com/sudeshmu/kubeagentic.git
51+
git clone https://github.com/KubeAgentic-Community/kubeagentic.git
5252
cd kubeagentic
5353
kubectl apply -f deploy/all.yaml
5454
```

0 commit comments

Comments
 (0)