Skip to content

Commit

Permalink
fix: hpa target refs (#9)
Browse files Browse the repository at this point in the history
* fix: fix hpa target refs

* fix: fix ct.yaml
  • Loading branch information
pehlicd authored Mar 12, 2024
1 parent 8ee82d4 commit 83c6c6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/keep/templates/backend-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "keep.fullname" . }}
name: {{ include "keep.fullname" . }}-backend
minReplicas: {{ .Values.backend.autoscaling.minReplicas }}
maxReplicas: {{ .Values.backend.autoscaling.maxReplicas }}
metrics:
Expand Down
2 changes: 1 addition & 1 deletion charts/keep/templates/frontend-hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "keep.fullname" . }}
name: {{ include "keep.fullname" . }}-frontend
minReplicas: {{ .Values.frontend.autoscaling.minReplicas }}
maxReplicas: {{ .Values.frontend.autoscaling.maxReplicas }}
metrics:
Expand Down
3 changes: 2 additions & 1 deletion ct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ target-branch: main
debug: true
check-version-increment: false
helm-extra-args: --timeout 15m
validate-maintainers: false
charts:
- charts/keep
chart-repos:
- keep=https://keephq.github.io/helm-charts # TODO: replace with custom domain
- keep=https://keephq.github.io/helm-charts

0 comments on commit 83c6c6b

Please sign in to comment.