gitops-ai 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 everythings-gonna-be-alright
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,16 +1,16 @@
1
- # GitOps AI Bootstrapper
1
+ # GitOps AI - Bootstrapper
2
2
 
3
- GitOps-managed Kubernetes infrastructure for AI-powered applications powered by the [Flux Operator](https://fluxoperator.dev/) and [Flux CD](https://fluxcd.io/). A single bootstrap script provisions a Kubernetes cluster, installs all infrastructure components, and enables continuous delivery from Git.
3
+ GitOps-managed Kubernetes infrastructure for AI-powered applications powered by the [Flux Operator](https://fluxoperator.dev/) and [Flux CD](https://fluxcd.io/). A single bootstrap application provisions a Kubernetes cluster, installs all infrastructure components, and enables continuous delivery from Git.
4
4
 
5
5
  ## Why GitOps for your infrastructure
6
6
 
7
7
  **💾 Infrastructure as Code** -- your entire cluster is defined in Git. Every change is versioned, reviewable, and reversible. You can modify infrastructure with AI coding assistants (Cursor, Copilot, Claude) that understand YAML and Helm values -- describe what you want in natural language and commit the result.
8
8
 
9
- **Security by default** -- containers run as non-root with read-only filesystems and dropped capabilities. Network policies isolate workloads so pods can only communicate with explicitly allowed services. Secrets are encrypted at rest with SOPS/Age before they ever reach Git. SSL certificates are automatically managed by cert-manager.
9
+ **🔒 Security by default** -- containers run as non-root with read-only filesystems and dropped capabilities. Network policies isolate workloads so pods can only communicate with explicitly allowed services. Secrets are encrypted at rest with SOPS/Age before they ever reach Git. SSL certificates are automatically managed by cert-manager.
10
10
 
11
- **Reproducible deployments** -- the same bootstrap script produces an identical cluster every time, on any supported machine. Drift is automatically corrected by Flux reconciliation -- if someone manually changes a resource, Flux reverts it to match Git within minutes.
11
+ **🔄 Reproducible deployments** -- the same bootstrap script produces an identical cluster every time, on any supported machine. Drift is automatically corrected by Flux reconciliation -- if someone manually changes a resource, Flux reverts it to match Git within minutes.
12
12
 
13
- **Scalable and flexible** -- powered by Kubernetes, you can add worker nodes to grow capacity or drop in new components like Lego blocks. Need a database, a message queue, or another AI model? Add a HelmRelease to the repo and push -- Flux deploys it automatically.
13
+ **🔌 Scalable and flexible** -- powered by Kubernetes, you can add worker nodes to grow capacity or drop in new components like Lego blocks. Need a database, a message queue, or another AI model? Add a HelmRelease to the repo and push -- Flux deploys it automatically.
14
14
 
15
15
  ## Quick Start
16
16
 
@@ -112,15 +112,17 @@ npx gitops-ai openclaw-pair
112
112
 
113
113
  The bootstrap wizard lets you select which components to install:
114
114
 
115
- | Component | Required | Description |
116
- |-----------------------------|----------|----------------------------------------------|
117
- | Helm Repositories | Yes | Shared Helm chart repos |
118
- | Ingress Nginx (external) | Yes | External HTTP/HTTPS ingress controller |
119
- | Prometheus CRDs | Yes | Monitoring custom resource definitions |
120
- | Cert Manager | DNS/TLS | Automatic TLS certificates via Let's Encrypt |
121
- | External DNS | DNS/TLS | Automatic DNS records in Cloudflare |
122
- | Flux Web UI | No | Web dashboard for Flux status |
123
- | OpenClaw | No | AI assistant gateway (requires OpenAI key) |
115
+ | Component | Required | Description |
116
+ |-----------------------------|----------|----------------------------------------------------|
117
+ | Helm Repositories | Yes | Shared Helm chart repos |
118
+ | Ingress Nginx (external) | Yes | External HTTP/HTTPS ingress controller |
119
+ | Prometheus CRDs | Yes | Monitoring custom resource definitions |
120
+ | Cert Manager | DNS/TLS | Automatic TLS certificates via Let's Encrypt |
121
+ | External DNS | DNS/TLS | Automatic DNS records in Cloudflare |
122
+ | Grafana Operator | No | Grafana dashboards and datasources via CRDs |
123
+ | Victoria Metrics Stack | No | Metrics collection, alerting and long-term storage |
124
+ | Flux Web UI | No | Web dashboard for Flux status |
125
+ | OpenClaw | No | AI assistant gateway (requires OpenAI key) |
124
126
 
125
127
  Components marked **DNS/TLS** are automatically enabled when you opt into automatic DNS and TLS management during the wizard.
126
128