grim/kube-lint

Parents 015e4efaab83
Children 355e550f3510
make the convey workspace the working directory, this allows people to provider their own .yamllint file
  • +4 -2
    run.sh
  • --- a/run.sh Sat Jan 04 07:06:32 2020 -0600
    +++ b/run.sh Sat Jan 04 07:29:23 2020 -0600
    @@ -1,5 +1,7 @@
    #!/bin/sh -e
    -yamllint -s ${CONVEY_WORKSPACE}
    -kubeval -d ${CONVEY_WORKSPACE} --strict --ignore-missing-schemas
    +cd ${CONVEY_WORKSPACE}
    +yamllint -s .
    +kubeval -d . --strict --ignore-missing-schemas
    +