mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-11 05:59:22 +00:00
95 lines
7.4 KiB
XML
95 lines
7.4 KiB
XML
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>Kubeconform - Fast Kubernetes manifests validation!</title>
|
|
<link>http://kubeconform.mandragor.org/</link>
|
|
<description>Recent content on Kubeconform - Fast Kubernetes manifests validation!</description>
|
|
<generator>Hugo -- gohugo.io</generator>
|
|
<language>en-us</language>
|
|
<lastBuildDate>Fri, 02 Jul 2021 00:00:00 +0000</lastBuildDate><atom:link href="http://kubeconform.mandragor.org/index.xml" rel="self" type="application/rss+xml" />
|
|
<item>
|
|
<title>Overview</title>
|
|
<link>http://kubeconform.mandragor.org/docs/overview/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/overview/</guid>
|
|
<description>Kubeconform is a Kubernetes manifests validation tool. Build it into your CI to validate your Kubernetes configuration!
|
|
It is inspired by, contains code from and is designed to stay close to Kubeval, but with the following improvements:
|
|
high performance: will validate &amp; download manifests over multiple routines, caching downloaded files in memory configurable list of remote, or local schemas locations, enabling validating Kubernetes custom resources (CRDs) and offline validation capabilities uses by default a self-updating fork of the schemas registry maintained by the kubernetes-json-schema project - which guarantees up-to-date schemas for all recent versions of Kubernetes.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Installation</title>
|
|
<link>http://kubeconform.mandragor.org/docs/installation/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/installation/</guid>
|
|
<description>Linux Download the latest release from our release page.
|
|
For example, for Linux on x86_64 architecture:
|
|
curl -L https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz | tar xvzf - && \ sudo mv kubeconform /usr/local/bin/ MacOs Kubeconform is available to install using Homebrew: $ brew install kubeconform
|
|
Windows Download the latest release from our release page.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Usage</title>
|
|
<link>http://kubeconform.mandragor.org/docs/usage/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/usage/</guid>
|
|
<description>$ ./bin/kubeconform -h Usage: ./bin/kubeconform [OPTION]... [FILE OR FOLDER]... -cache string cache schemas downloaded via HTTP to this folder -cpu-prof string debug - log CPU profiling to file -exit-on-error immediately stop execution when the first error is encountered -h show help information -ignore-filename-pattern value regular expression specifying paths to ignore (can be specified multiple times) -ignore-missing-schemas skip files with missing schemas instead of failing -insecure-skip-tls-verify disable verification of the server's SSL certificate.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Custom Resources support</title>
|
|
<link>http://kubeconform.mandragor.org/docs/crd-support/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/crd-support/</guid>
|
|
<description>When the -schema-location parameter is not used, or set to &ldquo;default&rdquo;, kubeconform will default to downloading schemas from https://github.com/yannh/kubernetes-json-schema. Kubeconform however supports passing one, or multiple, schemas locations - HTTP(s) URLs, or local filesystem paths, in which case it will lookup for schema definitions in each of them, in order, stopping as soon as a matching file is found.
|
|
If the -schema-location value does not end with &lsquo;.json&rsquo;, Kubeconform will assume filenames / a file structure identical to that of kubernetesjsonschema.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>OpenAPI to JSON Schema conversion</title>
|
|
<link>http://kubeconform.mandragor.org/docs/json-schema-conversion/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/json-schema-conversion/</guid>
|
|
<description>Kubeconform uses JSON schemas to validate Kubernetes resources. For custom resources, the CustomResourceDefinition first needs to be converted to JSON Schema. A script is provided to convert these CustomResourceDefinitions to JSON schema. Here is an example how to use it:
|
|
#!/bin/bash $ ./scripts/openapi2jsonschema.py https://raw.githubusercontent.com/aws/amazon-sagemaker-operator-for-k8s/master/config/crd/bases/sagemaker.aws.amazon.com_trainingjobs.yaml JSON schema written to trainingjob_v1.json The FILENAME_FORMAT environment variable can be used to change the output file name (Available variables: kind, group, version) (Default: {kind}_{version}).</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Github Action</title>
|
|
<link>http://kubeconform.mandragor.org/docs/usage-as-github-action/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/usage-as-github-action/</guid>
|
|
<description>Kubeconform is publishes Docker Images to Github&rsquo;s new Container Registry, ghcr.io. These images can be used directly in a Github Action, once logged in using a Github Token.
|
|
name: kubeconform on: push jobs: kubeconform: runs-on: ubuntu-latest steps: - name: login to Github Packages run: echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin - uses: actions/checkout@v2 - uses: docker://ghcr.io/yannh/kubeconform:master with: entrypoint: '/kubeconform' args: "-summary -output json kubeconfigs/" Note on pricing: Kubeconform relies on Github Container Registry which is currently in Beta.</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>Kubeconform as a Go module</title>
|
|
<link>http://kubeconform.mandragor.org/docs/using-as-a-go-module/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/docs/using-as-a-go-module/</guid>
|
|
<description>Warning: This is a work-in-progress, the interface is not yet considered stable. Feedback is encouraged.
|
|
Kubeconform contains a package that can be used as a library. An example of usage can be found in examples/main.go
|
|
Additional documentation on pkg.go.dev</description>
|
|
</item>
|
|
|
|
<item>
|
|
<title>About</title>
|
|
<link>http://kubeconform.mandragor.org/about/</link>
|
|
<pubDate>Fri, 02 Jul 2021 00:00:00 +0000</pubDate>
|
|
|
|
<guid>http://kubeconform.mandragor.org/about/</guid>
|
|
<description>Kubeconform is a Kubernetes manifests validation tool. Build it into your CI to validate your Kubernetes configuration!
|
|
It is inspired by, contains code from and is designed to stay close to Kubeval, but with the following improvements:
|
|
high performance: will validate &amp; download manifests over multiple routines, caching downloaded files in memory configurable list of remote, or local schemas locations, enabling validating Kubernetes custom resources (CRDs) and offline validation capabilities uses by default a self-updating fork of the schemas registry maintained by the kubernetes-json-schema project - which guarantees up-to-date schemas for all recent versions of Kubernetes.</description>
|
|
</item>
|
|
|
|
</channel>
|
|
</rss>
|