Skip to content

Commit c84116d

Browse files
authored
Merge pull request #278 from akash4sh/main
Add ephemeral-storage limit
2 parents 2132357 + 9813d5f commit c84116d

File tree

4 files changed

+24
-21
lines changed

4 files changed

+24
-21
lines changed

charts/agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.1.6
18+
version: 1.1.7
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/agent/values.yaml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,13 @@ git_bridge:
4949
pullPolicy: Always
5050
tag: "v1.1.3"
5151
resources:
52-
limits:
53-
cpu: 200m
54-
memory: 256Mi
55-
requests:
56-
cpu: 200m
57-
memory: 256Mi
52+
limits:
53+
cpu: 200m
54+
memory: 256Mi
55+
ephemeral-storage: 100Mi
56+
requests:
57+
cpu: 200m
58+
memory: 256Mi
5859
ingress:
5960
enabled: true
6061
annotations:
@@ -83,12 +84,13 @@ container_bridge:
8384
pullPolicy: Always
8485
tag: "v1.1.3"
8586
resources:
86-
limits:
87-
cpu: 200m
88-
memory: 256Mi
89-
requests:
90-
cpu: 200m
91-
memory: 256Mi
87+
limits:
88+
cpu: 200m
89+
memory: 256Mi
90+
ephemeral-storage: 100Mi
91+
requests:
92+
cpu: 200m
93+
memory: 256Mi
9294
ingress:
9395
enabled: true
9496
annotations:

charts/client/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.1.9
18+
version: 1.1.10
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/client/values.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,18 @@ ingress:
5353
# hosts:
5454
# - chart-example.local
5555

56-
resources: {}
56+
resources:
5757
# We usually recommend not to specify default resources and to leave this as a conscious
5858
# choice for the user. This also increases chances charts run on environments with little
5959
# resources, such as Minikube. If you do want to specify resources, uncomment the following
6060
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
61-
# limits:
62-
# cpu: 100m
63-
# memory: 128Mi
64-
# requests:
65-
# cpu: 100m
66-
# memory: 128Mi
61+
limits:
62+
cpu: 200m
63+
memory: 256Mi
64+
ephemeral-storage: 100Mi
65+
requests:
66+
cpu: 100m
67+
memory: 128Mi
6768

6869
autoscaling:
6970
enabled: false

0 commit comments

Comments
 (0)