Skip to content

Commit 2f564c2

Browse files
committed
fix(release): v13.0.0-release.2
- updated readme for clarity - updated dependencies - bump to major version - added .gitignore rule for files containing IGNORE in names, and devspace configs - fixes to CI/CD issue with installing AWS dependencies
1 parent 85995eb commit 2f564c2

File tree

5 files changed

+728
-1440
lines changed

5 files changed

+728
-1440
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ defaults_Dependencies: &defaults_Dependencies |
2626
npm install -g node-gyp
2727

2828
defaults_awsCliDependencies: &defaults_awsCliDependencies |
29+
apk upgrade --no-cache
2930
apk --no-cache add \
30-
python \
31-
py-pip \
31+
python3 \
32+
py3-pip \
3233
groff \
3334
less \
3435
mailcap
35-
pip install --upgrade awscli==1.14.5 s3cmd==2.0.1 python-magic
36-
apk -v --purge del py-pip
36+
pip3 install --upgrade pip awscli==1.14.5 s3cmd==2.0.1 python-magic
3737

3838
defaults_license_scanner: &defaults_license_scanner
3939
name: Install and set up license-scanner

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,10 @@ typings/
6565

6666
# VSCode directory
6767
.vscode
68+
69+
# devspace configuration
70+
.devspace
71+
devspace*
72+
73+
# IGNORE
74+
*IGNORE*

README.md

+24-11
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,67 @@
11
# event-stream-processor
2-
** EXPERIMENTAL** Event Stream Processor (ESP) for Event Stream (logs, audits, errors, trace, etc)
2+
3+
**EXPERIMENTAL** Event Stream Processor (ESP) for Event Stream (logs, audits, errors, trace, etc)
34

45
## 1. Pre-requisites
56

67
### 1.1 Elasticsearch
78

89
Ensure that you have created the following resources prior to deploying the ESP component:
10+
911
1. [Create a Policy](#1111-create) with the desired Rollover configurations: [policy-rollover-mojaloop.json](./config/policy-rollover-mojaloop.json)
1012
2. [Create a Template](#1121-create) to associate the Policy Settings to the Logstash index based on the following config: [template-mojaloop.json](./config/template-mojaloop.json)
1113

12-
> __NOTE__:<br/>
14+
> __NOTE__:
1315
> If ESP component is running prior to configuring the above template, the index mapping will be auto-created and will not take effect.
1416
15-
<br/>
16-
1717
#### 1.1.1 Mojaloop Index Rollover Policy
1818

1919
##### 1.1.1.1 Create
20+
2021
```curl
2122
curl -X PUT "http://elasticsearch:9200/_ilm/policy/mojaloop_rollover_policy?pretty" -H 'Content-Type: application/json' -d @config/policy-rollover-mojaloop.json
2223
```
2324

2425
##### 1.1.1.2 Delete
25-
_Note: only needed if you need to remove the policy_
26+
27+
> __NOTE__:
28+
> only needed if you need to remove the policy_
29+
2630
```curl
2731
curl -X DELETE "http://elasticsearch:9200/_ilm/policy/mojaloop_rollover_policy?"
2832
```
2933

3034
#### 1.1.1.3 Get
31-
_Note: useful for debugging issues_
35+
36+
> __NOTE__:
37+
> useful for debugging issues_
38+
3239
```curl
3340
curl -X GET "http://elasticsearch:9200/_ilm/policy/mojaloop_rollover_policy?"
3441
```
3542

3643
#### 1.1.2 Mojaloop Index Template
3744

3845
##### 1.1.2.1 Create
46+
3947
```curl
4048
curl -X PUT "http://elasticsearch:9200/_template/moja_template?pretty" -H 'Content-Type: application/json' -d @config/template-mojaloop.json'
4149
```
4250

4351
##### 1.1.2.2 Delete
44-
_Note: only needed if you need to remove the template_
52+
53+
> __NOTE__:
54+
> only needed if you need to remove the template_
55+
4556
```curl
4657
curl -X DELETE "http://elasticsearch:9200/_template/moja_template"
4758
```
48-
49-
#### 1.1.3 Get Template
50-
_Note: useful for debugging template issues_
59+
60+
#### 1.1.3 Get Template
61+
62+
> __NOTE__:
63+
useful for debugging template issues_
64+
5165
```curl
5266
curl -X GET "http://elasticsearch:9200/_template/moja_template"
5367
```
54-

0 commit comments

Comments
 (0)