Skip to content

Commit

Permalink
Update the EKS tests for CKF 1.9 (#1019)
Browse files Browse the repository at this point in the history
* Change description for the deploy-to-eks Github action

* Update comments with 1.9 instead of 1.8

* Change description for the deploy-to-eks Github action

* Update comments with 1.9 instead of 1.8
  • Loading branch information
mvlassis authored Aug 9, 2024
1 parent 9fe98c8 commit ba6cf62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-to-eks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ on:
workflow_dispatch: # This event allows manual triggering from the Github UI
inputs:
bundle_version:
description: 'Comma-separated list of bundle versions e.g. "1.7","1.8". Make sure that the corresponding k8s version is supported by the cloud.'
default: '"1.7","1.8","latest"'
description: 'Comma-separated list of bundle versions e.g. "1.9","latest". Make sure that the corresponding k8s version is supported by the cloud.'
default: '"1.8","1.9","latest"'
required: true
k8s_version:
description: 'Kubernetes version to be used for the AKS cluster'
required: false
uats_branch:
description: 'Branch to run the UATs from e.g. main or track/1.8. By default, this is defined by the dependencies.yaml file.'
description: 'Branch to run the UATs from e.g. main or track/1.9. By default, this is defined by the dependencies.yaml file.'
required: false
schedule:
- cron: "23 0 * * 2"
Expand All @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
bundle_version: ${{ fromJSON(format('[{0}]', inputs.bundle_version || '"1.7","1.8","latest"')) }}
bundle_version: ${{ fromJSON(format('[{0}]', inputs.bundle_version || '"1.8","1.9","latest"')) }}
fail-fast: false
env:
PYTHON_VERSION: "3.8"
Expand Down

0 comments on commit ba6cf62

Please sign in to comment.