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: README.md
+3-21Lines changed: 3 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,12 +54,6 @@ And it allows you to <b>make fast, safe development changes</b>.
54
54
|[Python](https://www.python.org/downloads/) <br/>- Most Linux and macOS systems have Python pre-installed. <br/>- On Windows machines, you will need to download and install it. | 3.9, 3.10, 3.11, 3.12 |`python3 --version`|
@@ -96,17 +90,11 @@ Once the installation completes, verify that you can login to the UI with the UR
96
90
97
91
### Install the Observability application
98
92
99
-
The installation downloads the latest Helm charts and Docker images for Observability and deploys the application on a new minikube cluster. The process may take 5~30 minutes depending on your machine and network connection.
93
+
The installation downloads the latest Docker images for Observability and deploys the application using Docker. The process may take 5~15 minutes depending on your machine and network connection.
100
94
```shell
101
95
python3 dk-installer.py obs install
102
96
```
103
-
#### Bind HTTP ports to host machine
104
97
105
-
This step is required to access the application when using Docker driver on Mac or Windows. It may also be useful for installations on remote machines to access the UI from a local browser.
106
-
107
-
```shell
108
-
python3 dk-installer.py obs expose
109
-
```
110
98
The `--port` option may be used to set a custom localhost port for the application (default: 8082).
111
99
112
100
Verify that you can login to the UI with the URL and credentials provided in the output. Leave this process running, and continue the next steps on another terminal window.
@@ -162,15 +150,9 @@ Upgrade the app to latest version: `python3 dk-installer.py tg upgrade`
162
150
163
151
### DataOps Observability
164
152
165
-
The [minikube](https://minikube.sigs.k8s.io/docs/commands/) and [kubectl](https://kubernetes.io/docs/reference/kubectl/) command line tools can be used to operate the Observability application.
166
-
167
-
Inspect the pods: `kubectl get pods`
168
-
169
-
Get pod logs: `kubectl logs <POD ID>`
170
-
171
-
Stop the app: `minikube stop`
153
+
Stop the app: `docker compose -f obs-docker-compose.yml obs down`
172
154
173
-
Restart the app: `minikube start`
155
+
Restart the app: `docker compose -f obs-docker-compose.yml up`
0 commit comments