From fb54f71280d5853537f4e40b16e48fb25e5c4061 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 8 Mar 2023 13:06:57 +0100 Subject: [PATCH] add toolchain configs --- .prettierignore | 2 ++ README.md | 4 +++- renovate.json | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .prettierignore create mode 100644 renovate.json diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..37bc12a --- /dev/null +++ b/.prettierignore @@ -0,0 +1,2 @@ +.drone.yml +LICENSE diff --git a/README.md b/README.md index 73436f8..fe898b6 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,12 @@ The project is inspired by [Datree's CRDs-catalog](https://github.com/datreeio/C ## Usage +Schemes are generated by the CI and automatically pushed to the `catalog` branch. + ### Kubeconform ```Shell -kubeconform -schema-location default -schema-location 'https://gitea.rknet.org/infra/crds-catalog/raw/branch/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' [MANIFEST] +kubeconform -schema-location default -schema-location 'https://gitea.rknet.org/infra/crds-catalog/raw/branch/catalog/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' [MANIFEST] ``` ## License diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..bf73d46 --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>thegeeklab/renovate-presets"] +}