You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,19 +12,19 @@ Below are a few guidelines we would like you to follow.
12
12
If you need help, please reach out to us by opening an issue.
13
13
14
14
## Report a bug
15
-
Reporting bugs is one of the best ways to contribute. Before creating a bug report, please check that an [issue](https://github.com/baloise-incubator/gitopscli/issues) reporting the same problem does not already exist. If there is such an issue, you may add your information as a comment.
15
+
Reporting bugs is one of the best ways to contribute. Before creating a bug report, please check that an [issue](https://github.com/baloise/gitopscli/issues) reporting the same problem does not already exist. If there is such an issue, you may add your information as a comment.
16
16
17
17
To report a new bug you should open an issue that summarizes the bug and set the label to .
18
18
19
19
If you want to provide a fix along with your bug report: That is great! In this case please send us a pull request as described in section [Contribute code](#contribute-code).
20
20
21
21
## Suggest a feature
22
-
To request a new feature you should open an [issue](https://github.com/baloise-incubator/gitopscli/issues/new) and summarize the desired functionality and its use case. Set the issue label to .
22
+
To request a new feature you should open an [issue](https://github.com/baloise/gitopscli/issues/new) and summarize the desired functionality and its use case. Set the issue label to .
23
23
24
24
## Contribute code
25
25
This is an outline of what the workflow for code contributions looks like
26
26
27
-
- Check the list of open [issues](https://github.com/baloise-incubator/gitopscli/issues). Either assign an existing issue to yourself, or
27
+
- Check the list of open [issues](https://github.com/baloise/gitopscli/issues). Either assign an existing issue to yourself, or
28
28
create a new one that you would like work on and discuss your ideas and use cases.
29
29
30
30
It is always best to discuss your plans beforehand, to ensure that your contribution is in line with our goals.
@@ -39,7 +39,7 @@ It is always best to discuss your plans beforehand, to ensure that your contribu
39
39
- As you push your changes, update the pull request with new information and tasks as you complete them
40
40
- Project maintainers might comment on your work as you progress
41
41
- When you are done, remove the  label and ping the maintainers for a review
42
-
- Your pull request must receive a :thumbsup: from two [MAINTAINERS](https://github.com/baloise-incubator/gitopscli/blob/master/docs/CODEOWNERS)
42
+
- Your pull request must receive a :thumbsup: from two [MAINTAINERS](https://github.com/baloise/gitopscli/blob/master/docs/CODEOWNERS)
[](https://choosealicense.com/licenses/apache-2.0/)
@@ -14,11 +14,11 @@ GitOps CLI is a command line interface (CLI) to perform operations on GitOps man
14
14
## Quick Start
15
15
The official GitOps CLI Docker image comes with all dependencies pre-installed and ready-to-use. Pull it with:
16
16
```bash
17
-
docker pull baloiseincubator/gitopscli
17
+
docker pull baloise/gitopscli
18
18
```
19
19
Start the CLI and the print the help page with:
20
20
```bash
21
-
docker run --rm -it baloiseincubator/gitopscli --help
21
+
docker run --rm -it baloise/gitopscli --help
22
22
```
23
23
24
24
## Features
@@ -27,7 +27,7 @@ docker run --rm -it baloiseincubator/gitopscli --help
27
27
- Create and delete preview environments in the config repository for a pull request in an app repository.
28
28
- Update root config repository with all apps from child config repositories.
29
29
30
-
For detailed installation and usage instructions, visit [https://baloise-incubator.github.io/gitopscli/](https://baloise-incubator.github.io/gitopscli/).
30
+
For detailed installation and usage instructions, visit [https://baloise.github.io/gitopscli/](https://baloise.github.io/gitopscli/).
31
31
32
32
## Git Provider Support
33
33
Currently, we support both BitBucket Server and GitHub.
Copy file name to clipboardExpand all lines: docs/commands/deploy.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
The `deploy` command can be used to deploy applications by updating the image tags in the YAML files of a config repository. Of course, you can also use it to update any YAML values in a git repository. However, only _one_ YAML can be changed at a time.
4
4
5
5
## Example
6
-
Let's assume you have a repository `deployment/incubator-non-prod` which contains your deployment configuration in the form of YAML files (e.g. [Helm](https://helm.sh/) charts). To deploy a new version of your application you need to update some values in `example/values.yaml`.
6
+
Let's assume you have a repository `deployment/myapp-non-prod` which contains your deployment configuration in the form of YAML files (e.g. [Helm](https://helm.sh/) charts). To deploy a new version of your application you need to update some values in `example/values.yaml`.
0 commit comments