Compare commits

..

1 Commits

Author SHA1 Message Date
4cbc6c3972 feat(hydra): add horizontal pod autoscaling 2023-12-11 16:48:50 +01:00
5 changed files with 33 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ resources:
- ./resources/oauth2-client.yaml
configMapGenerator:
- name: oidc-test-env
- name: oidc-test
literals:
- LOG_LEVEL=0
- HTTP_ADDRESS=0.0.0.0:8080

View File

@@ -24,7 +24,7 @@ spec:
resources: {}
envFrom:
- configMapRef:
name: oidc-test-env
name: oidc-test
env:
- name: OIDC_CLIENT_ID
valueFrom:

View File

@@ -10,6 +10,7 @@ resources:
- ./resources/hydra-migrate-job.yaml
- ./resources/hydra-maester
- ./resources/hydra-janitor-cronjob.yaml
- ./resources/hydra-hpa.yaml
secretGenerator:
- name: hydra-secret

View File

@@ -55,6 +55,9 @@ spec:
name: hydra-public
- containerPort: 4445
name: hydra-admin
resources: {}
resources:
requests:
cpu: 100m
memory: 128Mi
restartPolicy: Always

View File

@@ -0,0 +1,26 @@
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: hydra
labels:
io.kompose.service: hydra
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: hydra
minReplicas: 1
maxReplicas: 3
metrics:
- type: Resource
resource:
name: memory
target:
type: Utilization
averageUtilization: 80
- type: Resource
resource:
name: cpu
target:
type: Utilization
averageUtilization: 80