Finding images with text and image queries with the help of GPT-4 Vision
With the gpt-4-vision-preview model available at OpenAI, it was time to build something with it. I decided to use it as part of a quick solution that can search for…
29/11/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.…