Skip to content

Commit edbd4f7

Browse files
authored
Merge pull request #99 from arvatoaws-labs/develop
Fix keda/hpa
2 parents 6b0da89 + 2d024e2 commit edbd4f7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-develop.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626

2727
- name: Set up Docker Buildx
2828
uses: docker/setup-buildx-action@v3

.github/workflows/build-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
gh api octocat
4040
4141
- name: Checkout Repository
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
with:
4444
fetch-depth: 0
4545
fetch-tags: true

.github/workflows/validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout Repository
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Install helm
2727
run: |

templates/hpa.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ spec:
2020
maxReplicaCount: {{ .Values.hpa.maxReplicas }}
2121
triggers:
2222
- type: cpu
23+
metricType: Utilization
2324
metadata:
24-
type: Utilization
2525
value: "{{ .Values.hpa.targets.cpu }}"
2626
{{- if .Values.hpa.targets.memory }}
2727
- type: memory
28+
metricType: Utilization
2829
metadata:
29-
type: Utilization
3030
value: "{{ .Values.hpa.targets.memory }}"
3131
{{- end }}
3232
- type: prometheus

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ offload:
180180
fileName: wpoffload_private.pem
181181
errorPages:
182182
enabled: false
183-
image: public.ecr.aws/aws-cli/aws-cli:2.32.16
183+
image: public.ecr.aws/aws-cli/aws-cli:2.32.17
184184
path: /var/www/html/error-pages
185185

186186

0 commit comments

Comments
 (0)