Add custom dictionary and VSCode settings for spell checking; update README and TODO notes for clarity and best practices

This commit is contained in:
2025-05-18 15:24:53 -07:00
parent 4258e2511a
commit 2e03f4c1db
6 changed files with 75 additions and 124 deletions

View File

@@ -1,7 +1,24 @@
# Apps
# Sovereign Cloud-maintained apps
This will be the primary place for Sovereign Cloud-maintained apps to be included.
## Usage
## Status
`generate-config <app-name>`
`kubectl apply -k apps/<app-name>`
Currently none are functional.
## Best Practices
- `*.yaml`, not `*.yml`.
- Keep the service and deployment names the same as the app for easy DNS lookup.
- A starting `kustomization.yaml` for every app:
```yaml
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: postgres
labels:
- includeSelectors: true
pairs:
app: <app>
managedBy: kustomize
partOf: sovereign-cloud
```