- Remove vault.yaml and kubeconfig from tracking - Add vault files and kubeconfig to .gitignore everywhere - Clean up stray infra/ansible/infra/ directory
50 lines
491 B
Plaintext
50 lines
491 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
|
|
# Build
|
|
dist/
|
|
.next/
|
|
.turbo/
|
|
out/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Kubernetes
|
|
/kubeconfig*
|
|
!/kubeconfig.example
|
|
*.decoded.yaml
|
|
|
|
# Ansible
|
|
*.retry
|
|
.vault_pass
|
|
**/vault.yaml
|
|
**/vault.yml
|
|
|
|
# Kubeconfig (anywhere in repo)
|
|
**/kubeconfig
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
|
|
# Secrets — never commit
|
|
**/secrets/*.yaml
|
|
!**/secrets/*.example.yaml
|
|
*-sealed.yaml.bak
|