Skip to content

Commit 75235ac

Browse files
committed
Ensure the original file structure is maintained, added README to explain the changes and updated the tree structure for the README.md.
1 parent 1164f1b commit 75235ac

File tree

1 file changed

+56
-7
lines changed

1 file changed

+56
-7
lines changed

README.md

Lines changed: 56 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,29 +25,55 @@ As per the requirements, the following have been achieved, all works have been c
2525
│ │ ├── app.py
2626
│ │ ├── data
2727
│ │ │ └── catalogue_data.json
28-
│ │ └── requirements.txt
28+
│ │ ├── gunicorn-config.py
29+
│ │ ├── k8s
30+
│ │ │ ├── deployment.yaml
31+
│ │ │ ├── hpa.yaml
32+
│ │ │ └── service.yaml
33+
│ │ ├── requirements.txt
34+
│ │ └── utils
35+
│ │ ├── __init__.py
36+
│ │ └── logger.py
2937
│ ├── frontend
3038
│ │ ├── Dockerfile
3139
│ │ ├── app.py
40+
│ │ ├── gunicorn-config.py
3241
│ │ ├── k8s
3342
│ │ │ ├── deployment.yaml
3443
│ │ │ ├── hpa.yaml
3544
│ │ │ └── service.yaml
36-
│ │ └── requirements.txt
45+
│ │ ├── requirements.txt
46+
│ │ └── utils
47+
│ │ ├── __init__.py
48+
│ │ └── logger.py
3749
│ ├── order
3850
│ │ ├── Dockerfile
3951
│ │ ├── app.py
52+
│ │ ├── gunicorn-config.py
4053
│ │ ├── k8s
4154
│ │ │ ├── deployment.yaml
4255
│ │ │ ├── hpa.yaml
4356
│ │ │ └── service.yaml
44-
│ │ └── requirements.txt
57+
│ │ ├── requirements.txt
58+
│ │ └── utils
59+
│ │ ├── __init__.py
60+
│ │ └── logger.py
4561
│ └── search
4662
│ ├── Dockerfile
4763
│ ├── app.py
4864
│ ├── data
4965
│ │ └── search_data.json
50-
│ └── requirements.txt
66+
│ ├── gunicorn-config.py
67+
│ ├── k8s
68+
│ │ ├── deployment.yaml
69+
│ │ ├── hpa.yaml
70+
│ │ └── service.yaml
71+
│ ├── requirements.txt
72+
│ └── utils
73+
│ ├── __init__.py
74+
│ └── logger.py
75+
├── ci_cd
76+
│ └── README.md
5177
├── elasticsearch
5278
│ └── k8s
5379
│ ├── deployment.yaml
@@ -56,10 +82,31 @@ As per the requirements, the following have been achieved, all works have been c
5682
│ ├── dashboards
5783
│ │ └── flask-services.json
5884
│ └── k8s
85+
│ ├── dashboard-provisioning.yaml
86+
│ ├── datasource.yaml
5987
│ ├── deployment.yaml
6088
│ └── service.yaml
89+
├── istio
90+
│ └── k8s
91+
│ ├── auth-policy.yaml
92+
│ ├── deployment.yaml
93+
│ ├── mesh-config.yaml
94+
│ └── service.yaml
95+
├── kind
96+
│ └── k8s
97+
│ ├── kind-config.yaml
98+
│ └── storage-class.yaml
6199
├── logs_and_metrics
100+
│ ├── catalog
101+
│ ├── frontend
102+
│ ├── order
103+
│ └── search
62104
├── manifests
105+
│ └── README.md
106+
├── nginx
107+
│ └── k8s
108+
│ ├── deployment.yaml
109+
│ └── service.yaml
63110
├── postgres
64111
│ └── k8s
65112
│ ├── deployment.yaml
@@ -75,9 +122,11 @@ As per the requirements, the following have been achieved, all works have been c
75122
│ └── k8s
76123
│ ├── deployment.yaml
77124
│ └── service.yaml
78-
└── scripts
79-
├── deploy-helm.sh
80-
└── deploy-kubectl.sh
125+
├── scripts
126+
│ ├── deploy-helm.sh
127+
│ ├── deploy-kubectl.sh
128+
│ └── test-local.sh
129+
└── secrets.yaml
81130
```
82131

83132

0 commit comments

Comments
 (0)