From 35bd7c1349cb5cddda0794e640856f5c5a7d983b Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Tue, 10 May 2022 11:29:22 +0200 Subject: [PATCH 1/2] update urls in docs & CONTRIBUTING.md Signed-off-by: Quan TRAN --- CONTRIBUTING.md | 4 ++-- docs/advanced-features.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 54e996af..d5f0e90f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,9 +11,9 @@ conditions for your present and future Contributions submitted to the `helmfile` Locate your `GOPATH`, usually `~/go`, and run: ```console -$ go get github.com/roboll/helmfile +$ go get github.com/helmfile/helmfile -$ cd $GOPATH/src/github.com/roboll/helmfile +$ cd $GOPATH/src/github.com/helmfile/helmfile $ git checkout -b your-shiny-new-feature origin/master diff --git a/docs/advanced-features.md b/docs/advanced-features.md index c0aaac2e..6ec7e34a 100644 --- a/docs/advanced-features.md +++ b/docs/advanced-features.md @@ -93,7 +93,7 @@ which can be included in the temporary chart. After all, Helmfile just installs the temporary chart like standard charts, which allows you to manage everything with Helmfile regardless of each app is declared using a Helm chart or a kustomization. -Please also see [test/advanced/helmfile.yaml](https://github.com/roboll/helmfile/tree/master/test/advanced/helmfile.yaml) for an example of kustomization support and more. +Please also see [test/advanced/helmfile.yaml](https://github.com/helmfile/helmfile/tree/master/test/advanced/helmfile.yaml) for an example of kustomization support and more. ### Adhoc Kustomization of Helm charts @@ -147,7 +147,7 @@ Please note that the second `data` field `bar` is coming from the strategic-merg There's also `releases[].jsonPatches` that works similarly to `strategicMergePatches` but has additional capability to remove fields. -Please also see [test/advanced/helmfile.yaml](https://github.com/roboll/helmfile/tree/master/test/advanced/helmfile.yaml) for an example of patching support and more. +Please also see [test/advanced/helmfile.yaml](https://github.com/helmfile/helmfile/tree/master/test/advanced/helmfile.yaml) for an example of patching support and more. #### `transformers` From 3f14cb1d0052710f81855c4f5f38062bec8e0102 Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Tue, 10 May 2022 11:30:48 +0200 Subject: [PATCH 2/2] fix Dockerfile Signed-off-by: Quan TRAN --- Dockerfile.debian | 2 +- Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index 5d768b36..1b1c15ae 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -68,7 +68,7 @@ RUN set -x && \ tar zxvf age-${AGE_VERSION}-linux-amd64.tar.gz && \ mv age/age /usr/local/bin/age && \ mv age/age-keygen /usr/local/bin/age-keygen && \ - rm -rf age-${AGE_VERSION}-linux-amd64.tar.gz age \ + rm -rf age-${AGE_VERSION}-linux-amd64.tar.gz age RUN helm plugin install https://github.com/databus23/helm-diff --version v3.3.1 && \ helm plugin install https://github.com/jkroepke/helm-secrets --version v3.5.0 && \ diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 94a3b3df..646d8fba 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -68,7 +68,7 @@ RUN set -x && \ tar zxvf age-${AGE_VERSION}-linux-amd64.tar.gz && \ mv age/age /usr/local/bin/age && \ mv age/age-keygen /usr/local/bin/age-keygen && \ - rm -rf age-${AGE_VERSION}-linux-amd64.tar.gz age \ + rm -rf age-${AGE_VERSION}-linux-amd64.tar.gz age RUN helm plugin install https://github.com/databus23/helm-diff --version v3.3.1 && \ helm plugin install https://github.com/jkroepke/helm-secrets --version v3.5.0 && \