Skip to content

Commit

Permalink
Merge pull request #9 from merative/Release-July-2024
Browse files Browse the repository at this point in the history
Tuning guide update July 2024
  • Loading branch information
ourboy authored Jul 5, 2024
2 parents 4116671 + d1cf51f commit 9323660
Show file tree
Hide file tree
Showing 52 changed files with 17,349 additions and 37,729 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/gatsby_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

# Controls when the workflow will run
on:
push:
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build-runbook:
runs-on: ubuntu-latest
permissions:
contents: write
env:
SITE_PREFIX: /curam-performance-tuning/

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/[email protected]
with:
python-version: 3.x

- name: Prepare environment
run: |
node --version
npm install -g markdownlint-cli
npm install --legacy-peer-deps
#npm ci
pip install --user linkchecker
- name: Build docs
run: |
markdownlint **/*.mdx
npm run build
- name: Validate docs
run: |
docker run --rm -d --name gatsby -p 8888:80 -v $(pwd)/public:/usr/local/apache2/htdocs$SITE_PREFIX httpd:2.4
linkchecker http://$(hostname -f):8888$SITE_PREFIX --config=./linkcheckerrc
- name: Deploy Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.PERF_GIT_DEPLOY_GH_PAGES_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
force_orphan: true
3 changes: 2 additions & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"MD003": { "style": "atx" },
"MD007": { "indent": 2 },
"MD010": false,
"MD013": { "line_length": 300, "tables": false },
"MD013": { "line_length": 400, "tables": false },
"MD026": false,
"MD028": false,
"MD029": false,
"MD033": false,
"MD040": false,
"no-trailing-spaces": true,
Expand Down
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,29 @@
# Changelog

## v24.7.0

### Breaking Changes

* Guide is no longer called `spm-performance-tuning`. Renamed to `curam-performance-tuning`

### Changed

* Modified `package.json` to upgrade Gatsby.

All notable changes to this project will be documented in this file

## v22.11.0

### Changed

* Modified `package.json` to upgrade Gatsby.
* Modified the [Tuning the XML server](https://merative.github.io/spm-performance-tuning/common_task/xmlservertuning) topic to clarify tuning information

## v22.4.0

### Removed

* Removed the transaction isolation Level settings for JMS producer / consumer pod data sources because the WebSphere Liberty data source `isolationLevel` setting has been removed from the underlying Helm configmaps [#109](https://github.com/IBM/spm-kubernetes/issues/109).
* Removed the transaction isolation Level settings for JMS producer / consumer pod data sources because the WebSphere Liberty data source `isolationLevel` setting has been removed from the underlying Helm configmaps [#109](https://github.com/merative/spm-kubernetes/issues/109).

## v22.1.0

Expand Down Expand Up @@ -35,7 +52,7 @@ All notable changes to this project will be documented in this file

### Changed

* Updated IBM Documentation link to SPM V8.
* Updated product documentation link to SPM V8.

## v21.7.1

Expand Down
Loading

0 comments on commit 9323660

Please sign in to comment.