Skip to content

PMM Easy Install pipeline #9

PMM Easy Install pipeline

PMM Easy Install pipeline #9

name: PMM Easy Install pipeline
on:
workflow_dispatch:
inputs:
pmm_ui_tests_branch:
description: 'pmm-ui-tests repository branch(CLI tests)'
default: 'v3'
required: false
type: string
qa_integration_branch:
description: 'qa-integration repository branch(for setup)'
default: 'v3'
required: false
type: string
pmm_server_image:
description: 'PMM Server docker image'
default: 'perconalab/pmm-server:3-dev-latest'
required: true
type: string
pmm_client_image:
description: 'pmm-client docker image'
default: 'perconalab/pmm-client:3-dev-latest'
required: false
type: string
workflow_call:
inputs:
pmm_ui_tests_branch:
required: false
type: string
qa_integration_branch:
required: false
type: string
pmm_server_image:
required: true
type: string
pmm_client_image:
required: false
type: string
jobs:
easy_install_ubuntu_amd64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ubuntu-noble' }}
easy_install_ol9_amd64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ol-9' }}
easy_install_ubuntu_arm64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04-arm' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ubuntu-noble' }}
easy_install_ol9_arm64:
name: Run Easy install on Ubuntu Noble AMD64
uses: ./.github/workflows/runner-easy-install.yml
secrets: inherit
with:
runs_on: ${{ 'ubuntu-24.04-arm' }}
pmm_ui_tests_branch: ${{ inputs.pmm_ui_tests_branch || 'v3' }}
qa_integration_branch: ${{ inputs.qa_integration_branch || 'v3' }}
pmm_server_image: ${{ inputs.pmm_server_image || 'perconalab/pmm-server:3-dev-latest' }}
os: ${{ 'ol-9' }}