Skip to content

Commit

Permalink
Merge pull request #2869 from lsst-sqre/u/rra/gafaelfawr
Browse files Browse the repository at this point in the history
Bump limits for gafaelfawr-operator pod
  • Loading branch information
rra authored Jan 19, 2024
2 parents f266b6c + 1c75423 commit 1750ae3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion applications/gafaelfawr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Authentication and identity system
| operator.affinity | object | `{}` | Affinity rules for the token management pod |
| operator.nodeSelector | object | `{}` | Node selection rules for the token management pod |
| operator.podAnnotations | object | `{}` | Annotations for the token management pod |
| operator.resources | object | See `values.yaml` | Resource limits and requests for the Gafaelfawr Kubernetes operator |
| operator.resources | object | See `values.yaml` | Resource limits and requests for the Gafaelfawr Kubernetes operator. The limits are artificially higher since the operator pod is also where we manually run `gafaelfawr audit --fix`, which requires more CPU and memory. |
| operator.tolerations | list | `[]` | Tolerations for the token management pod |
| podAnnotations | object | `{}` | Annotations for the Gafaelfawr frontend pod |
| redis.affinity | object | `{}` | Affinity rules for the Redis pod |
Expand Down
8 changes: 5 additions & 3 deletions applications/gafaelfawr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,14 @@ maintenance:
affinity: {}

operator:
# -- Resource limits and requests for the Gafaelfawr Kubernetes operator
# -- Resource limits and requests for the Gafaelfawr Kubernetes operator.
# The limits are artificially higher since the operator pod is also where we
# manually run `gafaelfawr audit --fix`, which requires more CPU and memory.
# @default -- See `values.yaml`
resources:
limits:
cpu: "100m"
memory: "300Mi"
cpu: "500m"
memory: "500Mi"
requests:
cpu: "10m"
memory: "150Mi"
Expand Down

0 comments on commit 1750ae3

Please sign in to comment.