Added $opts array for customize gRPC client options #277
Workflow file for this run
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
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
name: SLO | |
jobs: | |
test-slo: | |
concurrency: | |
group: slo-${{ github.ref }} | |
if: (!contains(github.event.pull_request.labels.*.name, 'no slo')) | |
runs-on: ubuntu-latest | |
name: SLO test | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: read | |
issues: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
if: env.DOCKER_REPO != null # check permissions | |
env: | |
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} | |
- name: Run SLO | |
uses: ydb-platform/slo-tests@php-version | |
if: env.DOCKER_REPO != null # check permissions | |
env: | |
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
KUBECONFIG_B64: ${{ secrets.SLO_KUBE_CONFIG }} | |
AWS_CREDENTIALS_B64: ${{ secrets.SLO_AWS_CREDENTIALS }} | |
AWS_CONFIG_B64: ${{ secrets.SLO_AWS_CONFIG }} | |
DOCKER_USERNAME: ${{ secrets.SLO_DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.SLO_DOCKER_PASSWORD }} | |
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} | |
DOCKER_FOLDER: ${{ secrets.SLO_DOCKER_FOLDER }} | |
s3_endpoint: ${{ secrets.SLO_S3_ENDPOINT }} | |
s3_images_folder: ${{ vars.SLO_S3_IMAGES_FOLDER }} | |
grafana_domain: ${{ vars.SLO_GRAFANA_DOMAIN }} | |
grafana_dashboard: dca60386-0d3d-43f5-a2af-5f3fd3e3b295 | |
grafana_dashboard_width: 2000 | |
grafana_dashboard_height: 2600 | |
ydb_version: 'newest' | |
timeBetweenPhases: 30 | |
shutdownTime: 30 | |
language_id0: 'php' | |
workload_path0: 'slo-workload' | |
language0: 'php' | |
workload_build_context0: ../. | |
workload_build_options0: -f Dockerfile | |
- uses: actions/upload-artifact@v3 | |
if: always() && env.DOCKER_REPO != null # check permissions and execute, even if the previous stage was failed | |
env: | |
DOCKER_REPO: ${{ secrets.SLO_DOCKER_REPO }} | |
with: | |
name: slo-logs | |
path: logs/ |