## Summary - Split k8s migration plan into phases folder for easier navigation - Added `tag:k8s` to Pulumi ACLs for Kubernetes workloads - Phase 1 work in progress ## Phase 1 Goals - Tailscale Kubernetes Operator - CloudNativePG Operator - PostgreSQL cluster for future app migrations ## Deployment and Testing - [ ] Review Phase 1 plan - [ ] `mise run tailnet-preview` to verify ACL changes - [ ] `mise run tailnet-up` to apply ACL changes - [ ] Create Tailscale OAuth client (manual) - [ ] Deploy operators and PostgreSQL cluster 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.tail8d86e.ts.net/eblume/blumeops/pulls/29
31 lines
668 B
YAML
31 lines
668 B
YAML
---
|
|
extends: default
|
|
|
|
rules:
|
|
line-length:
|
|
max: 120
|
|
level: warning
|
|
truthy:
|
|
allowed-values: ['true', 'false', 'yes', 'no']
|
|
comments:
|
|
min-spaces-from-content: 1
|
|
braces:
|
|
min-spaces-inside: 0
|
|
max-spaces-inside: 1
|
|
brackets:
|
|
min-spaces-inside: 0
|
|
max-spaces-inside: 0
|
|
indentation:
|
|
spaces: 2
|
|
indent-sequences: consistent
|
|
# Required for ansible-lint compatibility
|
|
comments-indentation: false
|
|
octal-values:
|
|
forbid-implicit-octal: true
|
|
forbid-explicit-octal: true
|
|
|
|
ignore:
|
|
- .venv/
|
|
- pulumi/.venv/
|
|
# Third-party k8s manifest with non-standard formatting
|
|
- argocd/manifests/tailscale-operator/operator.yaml
|