Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doc and image links #1

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading