kubernetes-credentials
kubernetes-credentials copied to clipboard
Kubernetes CRD to load Manifold Credentials as Secrets
https://docs.google.com/spreadsheets/d/1V5xP880WbpD57ilX0dbU8sHQPF2ogIpH2GHGGX8tfSY/edit#gid=615538516
We're currently handling all incoming requests the moment they occur. This means new resources, resource updates and resyncs will immediately trigger an action. This is fine under low impact, but...
Currently, for every resync we're talking to the Kubernetes API Server to get the latest state. On it's own, this is fine, but having multiple applications do this means the...
We're currently using [kubekit](github.com/jelmersnoeck/kubekit) to get, create and update resources. We should move away from this model and use the generated clients (through the [code-generator](https://github.com/kubernetes/code-generator) project) to do this communication....
When trying to fetch credentials linked to a user (not a team), the secrets don't get populated. Configuration: ```yaml apiVersion: manifold.co/v1 kind: Project metadata: name: application-secrets spec: project: kubernetes-application ```...