Issues
- Fix the detection of newest GKE version in pipelinesCLOUD-889Resolved issue: CLOUD-889Eleonora Zinchenko
- Fix failing EKS pipelines because of a change how latest version is detectedCLOUD-888Pavel Tankov
- use kubectl (instead of kubectl_bin) in wait_for_delete() function for all operator testsCLOUD-876Resolved issue: CLOUD-876Pavel Tankov
- Fix reviewdog manifests check on release branchCLOUD-849Resolved issue: CLOUD-849Tomislav Plavcic
- Fix the psmdb-operator-minikube Jenkins pipelineCLOUD-846Resolved issue: CLOUD-846Pavel Tankov
- Make version service build pipeline use docker for buildingCLOUD-842Resolved issue: CLOUD-842Tomislav Plavcic
- monitoring-2.0 PXC test case is failing on EKS 1.24CLOUD-840Resolved issue: CLOUD-840Eleonora Zinchenko
- Add release and after-release targets to MakefilesCLOUD-833Resolved issue: CLOUD-833Tomislav Plavcic
- fix trivy check to use junit template from the same versionCLOUD-826Resolved issue: CLOUD-826Tomislav Plavcic
- Remove faulty logic for signing docker imagesCLOUD-821Resolved issue: CLOUD-821Tomislav Plavcic
- Fix ALL Jenkins pipelines for the new gcloud installation typeCLOUD-817Resolved issue: CLOUD-817Pavel Tankov
- Fix PGO Jenkins pipeline which is being run upon PRCLOUD-815Resolved issue: CLOUD-815Pavel Tankov
- Move from Kubernetes Platfrom v 1.14 to v 1.25 for all operator test casesCLOUD-814Resolved issue: CLOUD-814
- Move from using old unofficial helm chart for PMM to the official oneCLOUD-813Pavel Tankov
- Fix monitoring test case for PG operator which fails due to assert for PMM server creationCLOUD-812Resolved issue: CLOUD-812Pavel Tankov
- scheduler for latest jobsCLOUD-811Resolved issue: CLOUD-811yash.panchal
- pgrep command doesn't exist in the latest pmm docker imageCLOUD-810Resolved issue: CLOUD-810
- Fix AKS latest pipeline for preview versionsCLOUD-809Resolved issue: CLOUD-809Pavel Tankov
- Fix PMM server deployment in testsCLOUD-808Resolved issue: CLOUD-808Pavel Tankov
- add parameter to ignore previous test resultsCLOUD-803Resolved issue: CLOUD-803Tomislav Plavcic
- latest jobs need to run on latest platform versionsCLOUD-802Resolved issue: CLOUD-802Pavel Tankov
- Using #!/usr/bin/env bash instead of #!/bin/bash in the BASH scripts of the e2e testsCLOUD-801Resolved issue: CLOUD-801Pavel Tankov
- Include kube-linter to check yaml files in our operatorsCLOUD-797Slava Sarzhan
- set fixed versions of tools used in testsCLOUD-793Resolved issue: CLOUD-793Tomislav Plavcic
- Test operators with dual stack ipv4/ipv6CLOUD-791
- add test to check password leaks in the logsCLOUD-789Resolved issue: CLOUD-789Pavel Tankov
- Add support for kuttl 0.15.0 in E2E testsCLOUD-765Resolved issue: CLOUD-765
- Jenkins pipeline - fix posting of github resultsCLOUD-756Resolved issue: CLOUD-756Tomislav Plavcic
- Create a tool for updating/checking version service filesCLOUD-753
- fix running of chaos mesh tests under GKECLOUD-749Resolved issue: CLOUD-749Tomislav Plavcic
- Improve PMM testsCLOUD-731natalia.marukovich
- Start using official PMM helm chart in automatic E2E test suiteCLOUD-714
- Fix self-healing-chaos automatic testsCLOUD-708Resolved issue: CLOUD-708Tomislav Plavcic
- Run auto tests for EKS in parallel (like gke)CLOUD-706Resolved issue: CLOUD-706natalia.marukovich
- add checking of operator logs for errors in test suiteCLOUD-698
- Add test for bundle inside default-cr test for all operatorsCLOUD-697
- Jenkinsfile improvementsCLOUD-695Resolved issue: CLOUD-695natalia.marukovich
- enable-autoscaling option stopped working for GKE alphaCLOUD-694Resolved issue: CLOUD-694Tomislav Plavcic
- Fix pmm-client/pmm-server versionCLOUD-682Resolved issue: CLOUD-682natalia.marukovich
- refactor jenkins pipelinesCLOUD-678
- fix test reports for failed testsCLOUD-675Resolved issue: CLOUD-675Tomislav Plavcic
- create a test for cross cluster replicationCLOUD-672Resolved issue: CLOUD-672natalia.marukovich
- add test results in jenkins jobs where missingCLOUD-671Resolved issue: CLOUD-671natalia.marukovich
- Add running of unit tests in jenkins pipelineCLOUD-670Resolved issue: CLOUD-670inel.pandzic
- test run SonarQube on operators codeCLOUD-669Resolved issue: CLOUD-669Tomislav Plavcic
- run openshift and openshift-latest jobs in parallelCLOUD-668Resolved issue: CLOUD-668natalia.marukovich
- run more tests on minikubeCLOUD-667
- upgrade yq to version 4.xCLOUD-666Resolved issue: CLOUD-666Tomislav Plavcic
- create a tool to verify versions of software inside docker imagesCLOUD-665
- create a tool to update versions and other things before/after releaseCLOUD-664Resolved issue: CLOUD-664Tomislav Plavcic
50 of 53
the command:
gcloud container get-server-config --region=$region --flatten=channels --filter='channels.channel=$GKE_RELEASE_CHANNEL' --format='value(channels.defaultVersion)' | cut -d- -f1
only captures the
defaultVersion
under the$GKE_RELEASE_CHANNEL
channel, but not the highest available version.we must use this command instead:
gcloud container get-server-config --region=$region --flatten=channels --filter='channels.channel=$GKE_RELEASE_CHANNEL' --format='value(channels.validVersions)' | cut -d- -f1