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

feat(datahub-upgrade): Use the "head" image tag. #2641

Merged
merged 5 commits into from
Jun 3, 2021
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 docker/datahub-upgrade/datahub-upgrade.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd $DIR && docker pull acryldata/datahub-upgrade:latest && docker run --env-file ./env/docker.env --network="datahub_network" acryldata/datahub-upgrade:latest "$@"
cd $DIR && docker pull acryldata/datahub-upgrade:head && docker run --env-file ./env/docker.env --network="datahub_network" acryldata/datahub-upgrade:latest "$@"
3 changes: 0 additions & 3 deletions docker/datahub-upgrade/env/docker.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ DATAHUB_GMS_PORT=8080
DATAHUB_MAE_CONSUMER_HOST=datahub-mae-consumer
DATAHUB_MAE_CONSUMER_PORT=9091

DATAHUB_MAE_CONSUMER_PORT=9091
DATAHUB_MAE_CONSUMER_HOST=datahub-mae-consumer

# Uncomment and set these to support SSL connection to Elasticsearch
# ELASTICSEARCH_USE_SSL=
# ELASTICSEARCH_SSL_PROTOCOL=
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/no-code-upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ It is important that the following containers are pulled and deployed simultaneo
From the `docker` directory:

```aidl
docker-compose down && docker-compose pull && docker-compose -p datahub up --force-recreate
docker-compose down --remove-orphans && docker-compose pull && docker-compose -p datahub up --force-recreate
```

#### Helm
Expand Down