Skip to content

Commit d22c9da

Browse files
committed
Replace all occurrences of previous repository path in the codebase
1 parent 46feec1 commit d22c9da

23 files changed

+44
-44
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
docker:
1818
- image: goreleaser/goreleaser
1919
entrypoint: /bin/bash
20-
working_directory: "/go/src/github.com/Praqma/helmsman"
20+
working_directory: "/go/src/github.com/mkubaczyk/helmsman"
2121
steps:
2222
- run:
2323
name: install git

CONTRIBUTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pull requests, feeback/feature requests are all welcome. This guide will be upda
77
To build helmsman from source, you need go:1.17+. Follow the steps below:
88

99
```sh
10-
git clone https://github.com/Praqma/helmsman.git
10+
git clone https://github.com/mkubaczyk/helmsman.git
1111
make tools # installs few tools for testing, building, releasing
1212
make build
1313
make test

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ COPY --from=helm-installer /usr/local/bin/helm /usr/local/bin/helm
5555
COPY --from=helm-installer /root/.cache/helm/plugins/ /root/.cache/helm/plugins/
5656
COPY --from=helm-installer /root/.local/share/helm/plugins/ /root/.local/share/helm/plugins/
5757

58-
WORKDIR /go/src/github.com/Praqma/helmsman
58+
WORKDIR /go/src/github.com/mkubaczyk/helmsman
5959

6060
COPY . .
6161
RUN make test \
@@ -79,4 +79,4 @@ COPY --from=helm-installer /usr/local/bin/sops /usr/local/bin/sops
7979
COPY --from=helm-installer /root/.cache/helm/plugins/ /root/.cache/helm/plugins/
8080
COPY --from=helm-installer /root/.local/share/helm/plugins/ /root/.local/share/helm/plugins/
8181

82-
COPY --from=builder /go/src/github.com/Praqma/helmsman/helmsman /bin/helmsman
82+
COPY --from=builder /go/src/github.com/mkubaczyk/helmsman/helmsman /bin/helmsman

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.18.0&x2=0)](https://github.com/Praqma/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master)
1+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=v3.18.0&x2=0)](https://github.com/mkubaczyk/helmsman/releases) [![CircleCI](https://circleci.com/gh/Praqma/helmsman/tree/master.svg?style=svg)](https://circleci.com/gh/Praqma/helmsman/tree/master)
22

33
![helmsman-logo](docs/images/helmsman.png)
44

@@ -17,10 +17,10 @@ Thank you for your patience and trusting Helmsman with your tasks!
1717

1818
# How does it work?
1919

20-
Helmsman uses a simple declarative [TOML](https://github.com/toml-lang/toml) file to allow you to describe a desired state for your k8s applications as in the [example toml file](https://github.com/Praqma/helmsman/blob/master/examples/example.toml).
21-
Alternatively YAML declaration is also acceptable [example yaml file](https://github.com/Praqma/helmsman/blob/master/examples/example.yaml).
20+
Helmsman uses a simple declarative [TOML](https://github.com/toml-lang/toml) file to allow you to describe a desired state for your k8s applications as in the [example toml file](https://github.com/mkubaczyk/helmsman/blob/master/examples/example.toml).
21+
Alternatively YAML declaration is also acceptable [example yaml file](https://github.com/mkubaczyk/helmsman/blob/master/examples/example.yaml).
2222

23-
The desired state file (DSF) follows the [desired state specification](https://github.com/Praqma/helmsman/blob/master/docs/desired_state_specification.md).
23+
The desired state file (DSF) follows the [desired state specification](https://github.com/mkubaczyk/helmsman/blob/master/docs/desired_state_specification.md).
2424

2525
Helmsman sees what you desire, validates that your desire makes sense (e.g. that the charts you desire are available in the repos you defined), compares it with the current state of Helm and figures out what to do to make your desire come true.
2626

@@ -78,15 +78,15 @@ Please make sure the following are installed prior to using `helmsman` as a bina
7878
- [helm](https://github.com/helm/helm) (helm >=v2.10.0 for `helmsman` >= 1.6.0, helm >=v3.0.0 for `helmsman` >=v3.0.0)
7979
- [helm-diff](https://github.com/databus23/helm-diff) (`helmsman` >= 1.6.0)
8080

81-
If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plugin or you can use basic auth to authenticate to your repos. See the [docs](https://github.com/Praqma/helmsman/blob/master/docs/how_to/helm_repos) for details.
81+
If you use private helm repos, you will need either `helm-gcs` or `helm-s3` plugin or you can use basic auth to authenticate to your repos. See the [docs](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/helm_repos) for details.
8282

83-
Check the [releases page](https://github.com/Praqma/Helmsman/releases) for the different versions.
83+
Check the [releases page](https://github.com/mkubaczyk/helmsman/releases) for the different versions.
8484

8585
```sh
8686
# on Linux
87-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.18.0/helmsman_3.18.0_linux_amd64.tar.gz | tar zx
87+
curl -L https://github.com/mkubaczyk/helmsman/releases/download/v3.18.0/helmsman_3.18.0_linux_amd64.tar.gz | tar zx
8888
# on MacOS
89-
curl -L https://github.com/Praqma/helmsman/releases/download/v3.18.0/helmsman_3.18.0_darwin_amd64.tar.gz | tar zx
89+
curl -L https://github.com/mkubaczyk/helmsman/releases/download/v3.18.0/helmsman_3.18.0_darwin_amd64.tar.gz | tar zx
9090

9191
mv helmsman /usr/local/bin/helmsman
9292
```
@@ -114,19 +114,19 @@ asdf install helmsman latest
114114

115115
# Documentation
116116

117-
> Documentation for Helmsman v1.x can be found at: [docs v1.x](https://github.com/Praqma/helmsman/tree/1.x/docs)
117+
> Documentation for Helmsman v1.x can be found at: [docs v1.x](https://github.com/mkubaczyk/helmsman/tree/1.x/docs)
118118
119-
- [How-Tos](https://github.com/Praqma/helmsman/blob/master/docs/how_to/).
120-
- [Desired state specification](https://github.com/Praqma/helmsman/blob/master/docs/desired_state_specification.md).
121-
- [CMD reference](https://github.com/Praqma/helmsman/blob/master/docs/cmd_reference.md)
119+
- [How-Tos](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/).
120+
- [Desired state specification](https://github.com/mkubaczyk/helmsman/blob/master/docs/desired_state_specification.md).
121+
- [CMD reference](https://github.com/mkubaczyk/helmsman/blob/master/docs/cmd_reference.md)
122122

123123
## Usage
124124

125125
Helmsman can be used in three different settings:
126126

127-
- [As a binary with a hosted cluster](https://github.com/Praqma/helmsman/blob/master/docs/how_to/settings).
128-
- [As a docker image in a CI system or local machine](https://github.com/Praqma/helmsman/blob/master/docs/how_to/deployments/ci.md) Always use a tagged docker image from [dockerhub](https://hub.docker.com/r/praqma/helmsman/) as the `latest` image can (at times) be unstable.
129-
- [As a docker image inside a k8s cluster](https://github.com/Praqma/helmsman/blob/master/docs/how_to/deployments/inside_k8s.md)
127+
- [As a binary with a hosted cluster](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/settings).
128+
- [As a docker image in a CI system or local machine](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/deployments/ci.md) Always use a tagged docker image from [dockerhub](https://hub.docker.com/r/praqma/helmsman/) as the `latest` image can (at times) be unstable.
129+
- [As a docker image inside a k8s cluster](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/deployments/inside_k8s.md)
130130

131131
# Contributing
132132

cmd/helmsman/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/Praqma/helmsman/internal/app"
6+
"github.com/mkubaczyk/helmsman/internal/app"
77
)
88

99
func main() {

docs/how_to/apps/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: v3.0.0-beta5
66

77
## Install releases
88

9-
You can run helmsman with the [example.toml](https://github.com/Praqma/helmsman/blob/master/examples/example.toml) or [example.yaml](https://github.com/Praqma/helmsman/blob/master/examples/example.yaml) file.
9+
You can run helmsman with the [example.toml](https://github.com/mkubaczyk/helmsman/blob/master/examples/example.toml) or [example.yaml](https://github.com/mkubaczyk/helmsman/blob/master/examples/example.yaml) file.
1010

1111
```shell
1212
$ helmsman --apply -f example.toml

docs/how_to/apps/destroy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ Helmsman allows you to delete all the helm releases that were deployed by Helmsm
88

99
The `--destroy` flag will remove all deployed releases from a given desired state file (DSF). Note that this does not currently delete the namespaces nor the Kubernetes contexts created.
1010

11-
This was originally requested in issue [#88](https://github.com/Praqma/helmsman/issues/88).
11+
This was originally requested in issue [#88](https://github.com/mkubaczyk/helmsman/issues/88).
1212

docs/how_to/apps/lifecycle_hooks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ You can do that by setting `deleteOnSuccess` to true in the `globalHooks` stanza
139139

140140
You can expand variables/parameters in the hook manifests at run time in one of the following ways:
141141

142-
- use env variables (defined as `$MY_VAR` in your manifests) and run helmsman with `--subst-env-values`. Environment variables can be read from the environment or you can [load them from an env file](https://github.com/Praqma/helmsman/blob/master/docs/how_to/apps/secrets.md#passing-secrets-from-env-files)
142+
- use env variables (defined as `$MY_VAR` in your manifests) and run helmsman with `--subst-env-values`. Environment variables can be read from the environment or you can [load them from an env file](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/apps/secrets.md#passing-secrets-from-env-files)
143143

144144
- use [AWS SSM parameters](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html) (defined as `{{ssm: MY_PARAM }}` in your manifests) and run helmsman with `--subst-ssm-values`.
145145

146-
- Pass encrypted values with [hiera-eyaml](https://github.com/Praqma/helmsman/blob/master/docs/how_to/settings/use-hiera-eyaml-as-secrets-encryption.md)
146+
- Pass encrypted values with [hiera-eyaml](https://github.com/mkubaczyk/helmsman/blob/master/docs/how_to/settings/use-hiera-eyaml-as-secrets-encryption.md)
147147

148148
## Limitations
149149

docs/how_to/apps/override_context_from_cmd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: v3.2.0
66

77
There are two main use cases for this flag:
88

9-
1. To speed up Helmsman's execution when you have too many release (see [issue #418](https://github.com/Praqma/helmsman/issues/418))
9+
1. To speed up Helmsman's execution when you have too many release (see [issue #418](https://github.com/mkubaczyk/helmsman/issues/418))
1010
This flag works by skipping the search for the context information which Helmsman adds in the form of labels to the helm release state (secrets/configmaps).
1111

1212
> Use this option with caution. You must be sure that this won't cause conflicts.

docs/how_to/misc/migrate_to_3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ The migration process can go as follows:
1616
> At this stage, Helm v3 can see and operate on your releases, but Helmsman can't. This is because Helmsman defined labels haven't been migrated to the Helm v3 releases state.
1717
1818
## Migrate to Helmsman v3.x
19-
- Download the latest Helmsman v3.x release from [Github releases](https://github.com/Praqma/helmsman/releases)
20-
- Modify your Helmsman's TOML/YAML desired state files (DSFs) to be Helmsman v3.x compatible. You can check [v3.0.0 release notes](https://github.com/Praqma/helmsman/blob/v3.0.0/release-notes.md) for what's changed and verify from the [Desired State Spec](https://github.com/Praqma/helmsman/blob/master/docs/desired_state_specification.md) that your DSF files are compatible.
19+
- Download the latest Helmsman v3.x release from [Github releases](https://github.com/mkubaczyk/helmsman/releases)
20+
- Modify your Helmsman's TOML/YAML desired state files (DSFs) to be Helmsman v3.x compatible. You can check [v3.0.0 release notes](https://github.com/mkubaczyk/helmsman/blob/v3.0.0/release-notes.md) for what's changed and verify from the [Desired State Spec](https://github.com/mkubaczyk/helmsman/blob/master/docs/desired_state_specification.md) that your DSF files are compatible.
2121

2222
> Everything related to Tiller will be removed from your DSFs at this stage.
2323

0 commit comments

Comments
 (0)