Skip to content

Commit

Permalink
Release v0.8.33 (overwrite cpu limits, add new settings)
Browse files Browse the repository at this point in the history
  • Loading branch information
nepalez committed Jul 25, 2023
1 parent 01405d1 commit a5c7114
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.8.33 (2023-07-25)

* Enable skipping default cpu limits in `Values.resources.deployment.resources`
* Add custom settings for `minReadySeconds` and `terminationGracePeriodSeconds`

## 0.8.32 (2023-07-14)

* Support imgproxy v3.18.2
Expand Down
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ Deployment specific options.
|**resources.pod.labels**|Custom labels for imgproxy pods|`{}`|
|**resources.deployment.readinessProbe**|Timeouts and counters for the readiness probe||
|**resources.deployment.livenessProbe**|Timeouts and counters for the liveness probe||
|**resources.deployment.minReadySeconds**|Minimum ready seconds for the statement set||
|**resources.deployment.nodeSelector**|A node selector labels||
|**resources.deployment.priority.name**|The name of the priority class||
|**resources.deployment.priority.level**|The level of the pod priority|`0`|
Expand All @@ -392,6 +393,7 @@ Deployment specific options.
|**resources.deployment.replicas.cpuUtilization**|The target percentage for the average CPU utilization by pods after which they should be scaled.|`80`|
|**resources.deployment.resources**|Hash of resource limits for your pods|`{}`|
|**resources.deployment.securityContext**|Hash of security context settings for your pods|`{}`|
|**resources.deployment.terminationGracePeriodSeconds**|A custom amount of time to terminate the app|`30`|
|**resources.deployment.tolerations**|Tolerations for Kubernetes taints||
|**resources.deployment.topologySpreadConstraints**|topologySpreadConstraints for distributing pods across zones|`[]`|
|**resources.serviceAccount.existingName**|The name of an existing service account to be used by deployments|``|
Expand Down
2 changes: 1 addition & 1 deletion imgproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: A fast and secure standalone server for resizing and converting remote images. The main principles of imgproxy are simplicity, speed, and security.
name: imgproxy
icon: https://cdn.rawgit.com/imgproxy/imgproxy/master/logo.svg
version: 0.8.32
version: 0.8.33
appVersion: 3.18.2
keywords:
- imgproxy
Expand Down
2 changes: 2 additions & 0 deletions imgproxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ Deployment specific options.
|**resources.pod.labels**|Custom labels for imgproxy pods| `{}` |
|**resources.deployment.readinessProbe**|Timeouts and counters for the readiness probe||
|**resources.deployment.livenessProbe**|Timeouts and counters for the liveness probe||
|**resources.deployment.minReadySeconds**|Minimum ready seconds for the statement set||
|**resources.deployment.nodeSelector**|A node selector labels||
|**resources.deployment.priority.name**|The name of the priority class||
|**resources.deployment.priority.level**|The level of the pod priority| `0` |
Expand All @@ -429,6 +430,7 @@ Deployment specific options.
|**resources.deployment.replicas.cpuUtilization**|The target percentage for the average CPU utilization by pods after which they should be scaled.| `80` |
|**resources.deployment.resources**|Hash of resource limits for your pods| `{}` |
|**resources.deployment.securityContext**|Hash of security context settings for your pods|`{}`|
|**resources.deployment.terminationGracePeriodSeconds**|A custom amount of time to terminate the app|`30`|
|**resources.deployment.tolerations**|Tolerations for Kubernetes taints||
|**resources.deployment.topologySpreadConstraints**|Topology spread constraints for distributing pods across zones|`[]`|
|**resources.serviceAccount.existingName**|The name of an existing service account to be used by deployments|``|
Expand Down
11 changes: 11 additions & 0 deletions imgproxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ resources:

# Set kubernetes specific resource limits.
# We claim `cpu: 1` for both limits and requests by default.
# To skip these defaults, set `cpu: ~` explicitly.
resources: {}
# limits:
# cpu: 700m
Expand All @@ -135,13 +136,23 @@ resources:
successThreshold: 1
failureThreshold: 5

# The minimum number of seconds for which a newly created pod should be ready
# without any of its containers crashing, for it to be considered available.
# It is set to 0 by default.
minReadySeconds: ~

# A security context defines privilege and access control settings for the deployment.
# Check available settings in the documentation by link:
# https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
securityContext: {}
# allowPrivilegeEscalation: false
# runAsNonRoot: true

# A custom amount of time (in seconds) to terminate the app after pre-stop hook is called,
# or a TERM signal is received.
# It is set to `30` seconds by default.
terminationGracePeriodSeconds: ~

# List names of the custom secrets with env variables to be added
# from the external resources (like Vault, AWS etc.)
#
Expand Down

0 comments on commit a5c7114

Please sign in to comment.