Skip to content

Commit

Permalink
Tuning guide update July 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
fergal connolly committed Jul 5, 2024
1 parent 4116671 commit 3b9f38c
Show file tree
Hide file tree
Showing 50 changed files with 17,290 additions and 37,726 deletions.
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
404 changes: 203 additions & 201 deletions LICENSE

Large diffs are not rendered by default.

16 changes: 4 additions & 12 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
const siteTitle = 'IBM Curam Social Program Management Performance Tuning & Sizing guide'
const siteTitle = 'Cúram Performance Tuning & Sizing guide'

var activeEnv = 'local'

if (process.env.CI == 'true') {
activeEnv = 'production'
}

console.log(`Using environment config: '${activeEnv}'`)
require("dotenv").config({
path: `.env.${activeEnv}`,
})

var sitePrefix = process.env.SITE_PREFIX || "/"
console.log(`Using SITE_PREFIX: '${sitePrefix}'`)

module.exports = {
siteMetadata: {
title: siteTitle,
description: "IBM Curam Social Program Management Performance Tuning",
keywords: 'ibm,curam,containers,performance,tuning',
description: "Cúram Performance Tuning Guide",
keywords: 'cúram,containers,performance,tuning',
},
pathPrefix: sitePrefix,
plugins: [
Expand All @@ -40,6 +31,7 @@ module.exports = {
isSearchEnabled: true,
withWebp: true,
imageQuality: 75,
iconPath: "./src/images/curam-favicon-32.svg"
},
},
],
Expand Down
Loading

0 comments on commit 3b9f38c

Please sign in to comment.