Skip to content

Commit

Permalink
Update doc and image links
Browse files Browse the repository at this point in the history
  • Loading branch information
aarthy-dk committed Apr 19, 2024
1 parent 0fd76d5 commit 4f44b05
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can submit a proposal for a new feature by creating a [GitHub Issue](https:/

## Join our Community

Join our Slack community for discussions with other Data Observability users.
Join our [Slack community](https://data-observability.slack.com) for discussions with other Data Observability users.

## Code Submission

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ DataKitchen's DataOps TestGen is a data verification tool that profiles your dat
## Installation

### Using dk-installer (recommended)
Install with a single command using [`dk-installer`](https://github.com/DataKitchen/dk-installer/?tab=readme-ov-file#dataops-testgen).
Install with a single command using [`dk-installer`](https://github.com/DataKitchen/data-observability-installer/?tab=readme-ov-file#install-the-testgen-application).

```
python dk-installer tg
python3 dk-installer.py tg install
```

### Using docker compose
You can also install using the provided [`docker-compose.yml`](deploy/docker-compose.yml).

Make a local copy of the compose file.
```bash
curl -o docker-compose.yml 'https://raw.githubusercontent.com/DataKitchen/testgen/main/deploy/docker-compose.yml'
curl -o docker-compose.yml 'https://raw.githubusercontent.com/DataKitchen/dataops-testgen/main/deploy/docker-compose.yml'
```

If you are interested in integrating TestGen with DataKitchen Observability platform, edit the compose file and set values for the environment variables `OBSERVABILITY_API_URL` and `OBSERVABILITY_API_KEY`.
Expand Down Expand Up @@ -52,15 +52,15 @@ After verifying that Testgen is running, follow [the steps for the quick start](
Testgen includes a basic data set for you to play around.

### Using dk-installer (recommended)
Once Testgen is running, you can use [`dk-installer`](https://github.com/DataKitchen/dk-installer/?tab=readme-ov-file#dataops-testgen) to generate the demo data:
Once Testgen is running, you can use [`dk-installer`](https://github.com/DataKitchen/data-observability-installer/?tab=readme-ov-file#run-the-testgen-demo-setup) to generate the demo data:
```bash
python dk-installer tg run-demo
python3 dk-installer.py tg run-demo
```

And, if you are integrating Testgen with the DataKitchen Observability platform, you will need to pass the `--export`
flag:
```bash
python dk-installer tg run-demo --export
python3 dk-installer.py tg run-demo --export
```

### Using docker compose
Expand Down
2 changes: 1 addition & 1 deletion testgen/common/docker_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def check_for_new_docker_release() -> str:
logger.warning("Unable to check for latest release", exc_info=True, stack_info=True)


def get_docker_tags(url: str = "https://hub.docker.com/v2/repositories/datakitchen/testgen/tags/"):
def get_docker_tags(url: str = "https://hub.docker.com/v2/repositories/datakitchen/dataops-testgen/tags/"):
params = {"page_size": 25, "page": 1, "ordering": "last_updated"}
response = requests.get(url, params=params, timeout=3)

Expand Down
2 changes: 1 addition & 1 deletion testgen/ui/views/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ConnectionsPage(Page):
def render(self) -> None:
fm.render_page_header(
"Connection",
"https://docs.datakitchen.io/article/dataops-testgen-help/create-a-connection",
"https://docs.datakitchen.io/article/dataops-testgen-help/connect-your-database",
lst_breadcrumbs=[
{"label": "Overview", "path": "overview"},
{"label": "Connection", "path": None},
Expand Down
2 changes: 1 addition & 1 deletion testgen/ui/views/profiling_anomalies.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def render(self) -> None:

# Help Links
st.markdown(
"[Help on Anomalies](https://docs.datakitchen.io/articles/#!dataops-testgen-help/profile-anomalies)"
"[Help on Anomalies](https://docs.datakitchen.io/article/dataops-testgen-help/profile-anomalies)"
)

# with st.sidebar:
Expand Down
2 changes: 1 addition & 1 deletion testgen/ui/views/test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def render(self) -> None:

# Help Links
st.markdown(
"[Help on Test Types](https://docs.datakitchen.io/articles/#!dataops-testgen-help/testgen-test-types)"
"[Help on Test Types](https://docs.datakitchen.io/article/dataops-testgen-help/testgen-test-types)"
)

# with st.sidebar:
Expand Down

0 comments on commit 4f44b05

Please sign in to comment.