From 2fd7638bc3ce0b642f8a7775587b69c531f557da Mon Sep 17 00:00:00 2001 From: Zbigniew Zabost Date: Thu, 15 Jun 2023 16:22:13 +0200 Subject: [PATCH] update --- README.md | 14 +++++++------- go.mod | 2 +- main.go | 2 +- scripts/install.sh | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 185e67c..4953109 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # helm schema gen plugin -![](https://github.com/KnechtionsCoding/helm-schema-gen/workflows/goreleaser/badge.svg) +![](https://github.com/zbigniewzabost-hivemq/helm-schema-gen/workflows/goreleaser/badge.svg) So that you don't have to write values.schema.json by hand from scratch for your Helm 3 charts @@ -10,7 +10,7 @@ So that you don't have to write values.schema.json by hand from scratch for your Nothing fancy about the code, all the heavy lifting is done by: -- [go-jsonschema-generator](https://github.com/KnechtionsCoding/go-jsonschema-generator) - for generating JSON schema. It's a fork of [this](https://github.com/mcuadros/go-jsonschema-generator). Thanks to [@mcuadros](https://github.com/mcuadros) +- [go-jsonschema-generator](https://github.com/zbigniewzabost-hivemq/go-jsonschema-generator) - for generating JSON schema. It's a fork of [this](https://github.com/mcuadros/go-jsonschema-generator). Thanks to [@mcuadros](https://github.com/mcuadros) - [go-yaml](https://github.com/go-yaml/yaml/) - for YAML parsing - [cobra](https://github.com/spf13/cobra) - for CLI stuff - [The Go stdlib](https://golang.org/pkg/) - for everything else @@ -21,10 +21,10 @@ The plugin works with both Helm v2 and v3 versions as it's agnostic to the Helm binary version ``` -$ helm plugin install https://github.com/KnechtionsCoding/helm-schema-gen.git -KnechtionsCoding/helm-schema-gen info checking GitHub for tag '0.0.4' -KnechtionsCoding/helm-schema-gen info found version: 0.0.4 for 0.0.4/Darwin/x86_64 -KnechtionsCoding/helm-schema-gen info installed ./bin/helm-schema-gen +$ helm plugin install https://github.com/zbigniewzabost-hivemq/helm-schema-gen.git +zbigniewzabost-hivemq/helm-schema-gen info checking GitHub for tag '0.0.4' +zbigniewzabost-hivemq/helm-schema-gen info found version: 0.0.4 for 0.0.4/Darwin/x86_64 +zbigniewzabost-hivemq/helm-schema-gen info installed ./bin/helm-schema-gen Installed plugin: schema-gen ``` @@ -217,4 +217,4 @@ helm schema-gen values.yaml > values.schema.json ## Issues? Feature Requests? Proposals? Feedback? -Put them all in [GitHub issues](https://github.com/KnechtionsCoding/helm-schema-gen/issues) +Put them all in [GitHub issues](https://github.com/zbigniewzabost-hivemq/helm-schema-gen/issues) diff --git a/go.mod b/go.mod index 2908100..d05a11a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/knechtionscoding/helm-schema-gen +module github.com/zbigniewzabost-hivemq/helm-schema-gen go 1.19 diff --git a/main.go b/main.go index 93716b9..b3da3d3 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "github.com/knechtionscoding/helm-schema-gen/cmd" +import "github.com/zbigniewzabost-hivemq/helm-schema-gen/cmd" func main() { cmd.Execute() diff --git a/scripts/install.sh b/scripts/install.sh index 13a2620..554f953 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -6,13 +6,13 @@ set -e usage() { this=$1 cat <