Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

...

For adding a sortable table (enable support JS scripts ) in Jenkins need to Content-Security-Policy header.

More details here:

https://www.jenkins.io/doc/book/security/configuring-content-security-policy/

https://stackoverflow.com/questions/35783964/jenkins-html-publisher-plugin-no-css-is-displayed-when-report-is-viewed-in-j


Changes in code:

In pipelines-shared-library\vars\dataMigrationReport.groovy file in createHtmlReport function add these changes:

...

Code Block
{
    "policy": {
        "description": "Set number of replicas to 1 for indices starting with 'folio'",
        "default_state": "open",
        "states": [
            {
                "name": "open",
                "actions": [
                    {
                        "replica_count": {
                            "number_of_replicas": 1
                        }
                    }
                ],
                "transitions": []
            }
        ],
        "ism_template": {
            "index_patterns": [
                "folio*"
            ],
            "priority": 100,
            "last_updated_time": 0
        }
    }
}


Add TLS for edge-sip2 module in volaris namespace.

Requestor provided files:

...