Skip to content

Commit

Permalink
OPSEXP-2913 Re-enable testing renditions for pre-release helm charts (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn authored Oct 29, 2024
1 parent d5dfeee commit 8dd1e51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/helm-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,17 @@ jobs:
- name: Check if we want additional helm customizations
id: configurable-extra-values
run: |
if [ "${{ matrix.values }}" = "values.yaml" -o "${{ matrix.values }}" = "pre-release_values.yaml" ]; then
if [ "${{ matrix.values }}" = "values.yaml" ]; then
echo "Enabling clustered tests via auto-scaling: 2 replicas max"
echo "Renditions tests will be skipped because particularly flaky on clustered runs"
echo "helm_install_params=--values test/autoscaling-hpa-test-values.yaml \
--set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT"
fi
if [ "${{ matrix.values }}" = "pre-release_values.yaml" ]; then
echo "Enabling clustered tests with 2 replicas"
echo "helm_install_params=--set alfresco-repository.replicaCount=2" >> "$GITHUB_OUTPUT"
fi
- name: Add dependency chart repos
run: |
Expand Down Expand Up @@ -193,7 +197,7 @@ jobs:
- name: Check HPA behavior during tests
id: hpa_check
if: always() && (matrix.values == 'values.yaml' || matrix.values == 'pre-release_values.yaml') && steps.helm_test.outcome != 'skipped'
if: always() && (matrix.values == 'values.yaml') && steps.helm_test.outcome != 'skipped'
run: |
echo "Checking current repo hpa status"
kubectl get hpa acs-alfresco-repository
Expand Down
4 changes: 2 additions & 2 deletions helm/alfresco-content-services/pre-release_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# the chart
alfresco-repository:
image:
tag: 23.4.0-M1
tag: 23.4.0-A14
activemq:
image:
repository: quay.io/alfresco/alfresco-activemq
Expand Down Expand Up @@ -34,7 +34,7 @@ alfresco-ai-transformer:
tag: 3.1.6
share:
image:
tag: 23.4.0-M1
tag: 23.4.0-A14
alfresco-search:
searchServicesImage:
tag: 2.1.0-A9
Expand Down

0 comments on commit 8dd1e51

Please sign in to comment.