667845b9a2
Happy Coder does not require an API key. It uses these environment variables: - HAPPY_SERVER_URL (optional custom server) - HAPPY_WEBAPP_URL (optional custom webapp) - HAPPY_HOME_DIR (data directory) - HAPPY_EXPERIMENTAL (enable experimental features) Changes: - Remove HAPPY_CODER_API_KEY from all files - Add proper Happy Coder environment variables to StatefulSet - Add Happy Coder config options to ConfigMap - Update README with correct Happy Coder configuration - Update Makefile and docker-compose examples - Update secrets-example.yaml Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
26 lines
507 B
YAML
26 lines
507 B
YAML
---
|
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: default
|
|
|
|
resources:
|
|
- configmap.yaml
|
|
- statefulset.yaml
|
|
- httproute.yaml
|
|
|
|
# Uncomment to create secrets from files
|
|
# secretGenerator:
|
|
# - name: antigravity-secrets
|
|
# literals:
|
|
# - github-token=ghp_your_token
|
|
# - vnc-password=your_password
|
|
|
|
commonLabels:
|
|
app: antigravity
|
|
environment: production
|
|
|
|
commonAnnotations:
|
|
managed-by: kustomize
|
|
description: "Antigravity Dev Container with Happy Coder"
|