Skip to content

Commit

Permalink
feat: Upgrade to 0.7.0 and set limits to the resource
Browse files Browse the repository at this point in the history
  • Loading branch information
Néstor Salceda committed May 11, 2021
1 parent 4f3ba65 commit 7153682
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions charts/cloud-connector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: cloud-connector
description: Sysdig Cloud Connector

type: application
version: 0.2.12
appVersion: 0.6.6
version: 0.3.0
appVersion: 0.7.0
home: https://sysdiglabs.github.io/cloud-connector

maintainers:
Expand Down
5 changes: 5 additions & 0 deletions charts/cloud-connector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ Sysdig Secure chart and their default values:
| `securityContext` | Configure securityContext | `{}` |
| `service.type` | Use this type as service | `ClusterIP` |
| `service.port` | Configure port for the service | `5000` |
| `resources.limits.cpu` | Configure resource limits for cpu | `256m` |
| `resources.limits.memory` | Configure resource limits for memory | `512Mi` |
| `resources.requests.cpu` | Configure resource requests for cpu | `256m` |
| `resources.requests.memory` | Configure resource requests for memory | `512Mi` |
| `nodeSelector` | Configure nodeSelector for scheduling | `{}` |
| `nodeSelector` | Configure nodeSelector for scheduling | `{}` |
| `tolerations` | Tolerations for scheduling | `[]` |
| `affinity` | Configure affinity rules | `{}` |
Expand Down
18 changes: 7 additions & 11 deletions charts/cloud-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,13 @@ service:
type: ClusterIP
port: 80

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
resources:
limits:
cpu: 256m
memory: 512Mi
requests:
cpu: 256m
memory: 512Mi

nodeSelector: {}

Expand Down

0 comments on commit 7153682

Please sign in to comment.