Storing and querying for embeddings with Redis
In a previous post, we wrote about using vectorized search and cosine similarity to quickly query a database of blog posts and retrieve the most relevant content to a natural…
21/03/2023
While I was investigating Kyverno, I wanted to check my Kubernetes deployments for compliance with Kyverno policies. The Kyverno CLI can be used to do that with the following command:
kyverno apply ./policies –resource=./deploy/deployment.yaml
To do this easily from a GitHub workflow, I created an action called gbaeke/kyverno-cli.…