Skip to content

Commit

Permalink
move autoscaling enablement to workflow job
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgomz committed Mar 15, 2024
1 parent 69f8f9d commit 7c84fa5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/helm-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ jobs:
- name: Check if we want additional helm customizations
id: configurable-extra-values
run: |
if [ "${{ matrix.values }}" = "values.yaml" ]; then
echo "Enabling clustered tests"
echo "helm_install_params=--set alfresco-repository.autoscaling.enabled=true --set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT"
fi
if [ "${{ matrix.values }}" = "7.0.N_values.yaml" ]; then
echo "Skipping renditions tests on ACS 7.0.N"
echo "helm_install_params=--set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT"
Expand Down
4 changes: 1 addition & 3 deletions test/enterprise-integration-test-values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
---
alfresco-repository:
autoscaling:
enabled: true
resources:
requests:
cpu: "0.5"
Expand Down Expand Up @@ -129,7 +127,7 @@ postgresql:
primary:
resources:
requests:
cpu: "0.01"
cpu: "0.25"
memory: "512Mi"
limits:
cpu: "2"
Expand Down

0 comments on commit 7c84fa5

Please sign in to comment.