-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,078 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -724,12 +724,12 @@ And add them and the authors to the release notes: | |
|
||
Pushing the release branch: | ||
|
||
git push origin HEAD:branch-4.10.0 | ||
git push origin HEAD:branch-4.11.0 | ||
|
||
Tagging the release: | ||
|
||
git tag -a release-4.10.0 -m "release-4.10.0" | ||
git push origin release-4.10.0 | ||
git tag -a release-4.11.0 -m "release-4.11.0" | ||
git push origin release-4.11.0 | ||
|
||
Draft a new release on https://github.com/cloudera/hue/releases. | ||
|
||
|
@@ -739,7 +739,7 @@ Publish Github NPM package and Docker images at https://github.com/orgs/cloudera | |
|
||
Building the tarball release: | ||
|
||
git checkout -b release-4.10.0 release-4.10.0 | ||
git checkout -b release-4.11.0 release-4.11.0 | ||
export PYTHON_VER=python3.8 | ||
make prod | ||
|
||
|
@@ -749,27 +749,27 @@ You might need to upgrade the [Mysqlclient](https://docs.gethue.com/administrato | |
44 | #include "my_config.h" | ||
| ^~~~~~~~~~~~~ | ||
|
||
Source of the release: https://github.com/cloudera/hue/archive/release-4.10.0.zip | ||
Source of the release: https://github.com/cloudera/hue/archive/release-4.11.0.zip | ||
|
||
Push to the CDN: | ||
|
||
scp hue-4.10.0.tgz [email protected]:/var/www/cdn.gethue.com/downloads | ||
scp hue-4.11.0.tgz [email protected]:/var/www/cdn.gethue.com/downloads | ||
|
||
### Docker | ||
|
||
Docker images are at https://hub.docker.com/u/gethue/: | ||
|
||
docker build https://github.com/cloudera/hue.git#release-4.10.0 -t gethue/hue:4.10.0 -f tools/docker/hue/Dockerfile | ||
docker tag gethue/hue:4.10.0 gethue/hue:latest | ||
docker build https://github.com/cloudera/hue.git#release-4.11.0 -t gethue/hue:4.11.0 -f tools/docker/hue/Dockerfile | ||
docker tag gethue/hue:4.11.0 gethue/hue:latest | ||
docker images | ||
docker login -u gethue | ||
docker push gethue/hue | ||
docker push gethue/hue:4.10.0 | ||
docker push gethue/hue:4.11.0 | ||
|
||
docker build https://github.com/cloudera/hue.git#release-4.10.0 -t gethue/nginx:4.10.0 -f tools/docker/nginx/Dockerfile; | ||
docker tag gethue/nginx:4.10.0 gethue/nginx:latest | ||
docker build https://github.com/cloudera/hue.git#release-4.11.0 -t gethue/nginx:4.11.0 -f tools/docker/nginx/Dockerfile; | ||
docker tag gethue/nginx:4.11.0 gethue/nginx:latest | ||
docker push gethue/nginx | ||
docker push gethue/nginx:4.10.0 | ||
docker push gethue/nginx:4.11.0 | ||
|
||
|
||
### Kubernetes / Helm | ||
|
Oops, something went wrong.