Skip to content
#

kube-score

Here are 7 public repositories matching this topic...

bjartek
bjartek commented Nov 11, 2021

Is it possible to add yq to the generated image. We are planning to use this for validating manfiseste using kustomize/kubeconform and that script uses yq.

Script is attached blow for reference

#!/usr/bin/env bash

set -eo pipefail

find . -type f -name '*.yaml' -print0 | while IFS= read -r -d $'\0' file;
  do
    yq e 'true' "$file" > /dev/null || error_exit "found when validat
good first issue

Improve this page

Add a description, image, and links to the kube-score topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the kube-score topic, visit your repo's landing page and select "manage topics."

Learn more