Skip to content

Commit 05020a0

Browse files
authored
Merge pull request #17 from sumitnagal/master
issue-16: Provide support to customize Health check URL
2 parents febd5dd + 3aef8ad commit 05020a0

File tree

2 files changed

+34
-12
lines changed

2 files changed

+34
-12
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
8+
## [1.12.0] - 2021-02-10
9+
### Fixed
10+
- [Issue-16] HealthCheck customization via environment override
11+
12+
<!-- Links -->
13+
[Issue-16]:https://github.com/litmuschaos/litmus-python/issues/16

README.md

+21-12
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,27 @@ popular tools like chaostoolkit.
1616
which houses examples for experiment business logic written in golang.
1717

1818
### commit process
19-
* Fork the project
20-
* checkout the project using `git clone [email protected]:sumitnagal/litmus-python.git`
21-
* go to your folder `cd litmus-python`
19+
- Fork the project
20+
* checkout the project using
21+
```
22+
git clone [email protected]:sumitnagal/litmus-python.git
23+
```
24+
* go to your folder
25+
```
26+
cd litmus-python
27+
```
2228
* add upstream for main and intuit repo
23-
* `git remote add upstream [email protected]:litmuschaos/litmus-python.git`
24-
* `git remote add intuit git@github.**.com:**/litmus-python.git`
25-
* `git pull upstream master`
26-
* `git checkout -b <branch name>`
27-
* Make the changes
28-
* `git add .`
29-
* `git commit -s -m "<message>"`
30-
* `git push origin <branch>>`
29+
```
30+
git remote add upstream [email protected]:litmuschaos/litmus-python.git
31+
git pull upstream master
32+
git checkout -b <branch name>
33+
```
34+
* Make the changes and commit with signed
35+
```
36+
git add .
37+
git commit -s -m "<message>"
38+
git push origin <branch>
39+
```
3140
3241
### Appendix
33-
- This repo moved from existing location of [test-tools/chaostoolkit] (https://github.com/litmuschaos/test-tools/tree/master/chaostoolkit) to better serve as stand-alone project
42+
- This repo moved from existing location of [test-tools/chaostoolkit](https://github.com/litmuschaos/test-tools/tree/master/chaostoolkit) to better serve as stand-alone project

0 commit comments

Comments
 (0)