Skip to content

Commit 3bcc97c

Browse files
committed
update release version
1 parent 48e322a commit 3bcc97c

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,15 @@
2222
- each bank with all deposits
2323
- all banks!
2424
- Concurrency support for computing Banks Delta included for I/O processing
25-
- Sanity test client included for settings for each deployment
25+
- Sanity test client included each deployment settings
26+
With this Sanity test client, you will be able to:
27+
- get status of Mongo DB
28+
- add a new user
29+
- edit json file that is read to make input request to gRPC service
30+
- JWT generation for Authentication
31+
- JWT Authentication for Interest Delta Calculations for each deposit; each bank with all deposits and all banks
32+
Quickly confirms Sanity check for set up with Kubernetes/Docker.
33+
There are also separate Integration and Unit tests.
2634
- Dockering and using it for both Docker Compose and Kubernetes
2735
- Docker compose deployment for development
2836
- Kubernetes Deployment with Ingress; Helm; Mongodb internal replication setup
@@ -247,16 +255,16 @@ To create a pod that you can use as a Kafka client run the following commands:
247255
### Make docker images and Push Images to Docker Hub
248256

249257
```shell
250-
docker rmi rsachdeva/illuminatingdeposits.grpc.server:v1.5.0
251-
docker rmi rsachdeva/illuminatingdeposits.dbindexes:v1.5.0
258+
docker rmi rsachdeva/illuminatingdeposits.grpc.server:v1.6.0
259+
docker rmi rsachdeva/illuminatingdeposits.dbindexes:v1.6.0
252260
253-
docker build -t rsachdeva/illuminatingdeposits.grpc.server:v1.5.0 -f ./build/Dockerfile.grpc.server .
254-
docker build -t rsachdeva/illuminatingdeposits.dbindexes:v1.5.0 -f ./build/Dockerfile.dbindexes .
261+
docker build -t rsachdeva/illuminatingdeposits.grpc.server:v1.6.0 -f ./build/Dockerfile.grpc.server .
262+
docker build -t rsachdeva/illuminatingdeposits.dbindexes:v1.6.0 -f ./build/Dockerfile.dbindexes .
255263
256-
docker push rsachdeva/illuminatingdeposits.grpc.server:v1.5.0
257-
docker push rsachdeva/illuminatingdeposits.dbindexes:v1.5.0
264+
docker push rsachdeva/illuminatingdeposits.grpc.server:v1.6.0
265+
docker push rsachdeva/illuminatingdeposits.dbindexes:v1.6.0
258266
```
259-
The v1.5.0 should match to version being used in Kubernetes resources (grpc-server.yaml; dbindexes.yaml).
267+
The v1.6.0 should match to version being used in Kubernetes resources (grpc-server.yaml; dbindexes.yaml).
260268

261269
### Quick deploy for all Kubernetes resources ( more Detailed Kubernetes set up - Step by Step is below; Above kubernetes steps are common)
262270
TLS File set up should have been installed using steps above along with installing using help ingress-nginx and kafka
@@ -317,13 +325,6 @@ export DEPOSITS_GRPC_SERVICE_TLS=true
317325
export DEPOSITS_GRPC_SERVICE_ADDRESS=grpcserversvc.127.0.0.1.nip.io
318326
go run ./cmd/sanitytestclient
319327
```
320-
With this Sanity test client, you will be able to:
321-
- get status of Mongo DB
322-
- add a new user
323-
- JWT generation for Authentication
324-
- JWT Authentication for Interest Delta Calculations for each deposit; each bank with all deposits and all banks
325-
Quickly confirms Sanity check for set up with Kubernetes/Docker.
326-
There are also separate Integration and Unit tests.
327328
328329
### Server Tracing
329330
Access [zipkin](https://zipkin.io/) service at [http://zipkin.127.0.0.1.nip.io](http://zipkin.127.0.0.1.nip.io)
@@ -459,4 +460,4 @@ transport: Error while dialing dial tcp
459460
```
460461
461462
# Version
462-
v1.5.30
463+
v1.6.0

deploy/kubernetes/dbindexes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
containers:
1212
- name: dbindexes
13-
image: rsachdeva/illuminatingdeposits.dbindexes:v1.5.0
13+
image: rsachdeva/illuminatingdeposits.dbindexes:v1.6.0
1414
imagePullPolicy: Never
1515
command:
1616
- "bash"

deploy/kubernetes/grpc-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: grpcserversvc
20-
image: rsachdeva/illuminatingdeposits.grpc.server:v1.5.0
20+
image: rsachdeva/illuminatingdeposits.grpc.server:v1.6.0
2121
imagePullPolicy: IfNotPresent
2222
ports:
2323
- containerPort: 50052

0 commit comments

Comments
 (0)