-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from Subasri-Viswanathan/release-5.4-changes
Include release 5.4 changes
- Loading branch information
Showing
16 changed files
with
119 additions
and
73 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
42 changes: 42 additions & 0 deletions
42
docs/enable-puppeteer-when-upgrading-lower-version-to-v5.4.20.md
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Enable Puppeteer when upgrade lower version to v5.4 to higher | ||
|
||
> **Important:** Puppeteer are necessary to achieve `image and PDF export` functionalities in reports,schedules from Bold Reports. Without these packages, the image and PDF export options in reports and schedules will no longer be available. | ||
1. Please run the below command for bash into your pod for enable the Puppeteer in reporting config.xml: | ||
|
||
```sh | ||
kubectl exec -it <reports-web_Deployment_Name> -n <your_namespace> -- bash | ||
``` | ||
2. Navigate to the following directory | ||
|
||
```sh | ||
cd /application/app_data/configuration/reporting | ||
``` | ||
![puppeteer-location](images/puppeteer-location.png) | ||
|
||
|
||
3. Edit the config.xml file by using below command. | ||
|
||
```sh | ||
nano config.xml | ||
``` | ||
|
||
3. Add the following line on the config file to enable the puppeteer, save the changes and exit from the bash command. | ||
|
||
```sh | ||
<Exporting UsePuppeteer="true" PuppeteerPath=""></Exporting> | ||
``` | ||
![enable-puppeteer](images/enable-puppeteer.png) | ||
|
||
|
||
4. Restart the report services by using given commands, | ||
|
||
Mulitple-Container: | ||
|
||
```sh | ||
kubectl rollout restart deployment/reports-api-deployment -n {your_namespace} | ||
kubectl rollout restart deployment/reports-jobs-deployment -n {your_namespace} | ||
kubectl rollout restart deployment/reports-web-deployment -n {your_namespace} | ||
kubectl rollout restart deployment/reports-reportservice-deployment -n {your_namespace} | ||
kubectl rollout restart deployment/reports-viewer-deployment -n {your_namespace} | ||
``` |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
Oops, something went wrong.