Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/deploy-kotlin-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,15 @@ on:
type: boolean
default: true
description: 'Use generated openapi spec to generate linkerd service profile and update the service helm chart'
openapi-max-workers:
required: false
type: string
default: ''
description: |
Optional cap on Gradle parallelism for the OpenAPI build step in the
update-service-profile job. Forwarded to component-service-profile-kotlin.
Set to e.g. "2" on multi-module repos that OOM the runner during
concurrent kapt. Empty string keeps default behavior.
helm-values-path:
required: false
type: string
Expand Down Expand Up @@ -286,6 +295,7 @@ jobs:
stage: ${{ inputs.stage }}
gradle-module: ${{ inputs.gradle-module }}
java-version: ${{ inputs.java-version }}
openapi-max-workers: ${{ inputs.openapi-max-workers }}
secrets:
GHL_USERNAME: ${{ secrets.GHL_USERNAME }}
GHL_PASSWORD: ${{ secrets.GHL_PASSWORD }}
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/deploy-kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ on:
type: boolean
default: true
description: 'Use generated openapi spec to generate linkerd service profile and update the service helm chart'
openapi-max-workers:
required: false
type: string
default: ''
description: |
Optional cap on Gradle parallelism for the OpenAPI build step in the
update-service-profile job. Forwarded to component-service-profile-kotlin.
Set to e.g. "2" on multi-module repos that OOM the runner during
concurrent kapt. Empty string keeps default behavior.
argocd-server:
required: false
type: string
Expand Down Expand Up @@ -277,6 +286,7 @@ jobs:
stage: ${{ inputs.stage }}
gradle-module: ${{ inputs.gradle-module }}
java-version: ${{ inputs.java-version }}
openapi-max-workers: ${{ inputs.openapi-max-workers }}
secrets:
GHL_USERNAME: ${{ secrets.GHL_USERNAME }}
GHL_PASSWORD: ${{ secrets.GHL_PASSWORD }}
Expand Down
Loading