Skip to content

Commit

Permalink
Add support of ephemeral-storage in the resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Clop committed Mar 28, 2024
1 parent 7d3e3e4 commit f057165
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/opentelemetry-collector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-collector
version: 0.85.0
version: 0.85.1
description: OpenTelemetry Collector Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
6 changes: 6 additions & 0 deletions charts/opentelemetry-collector/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,9 @@
"cpu": {
"type": ["string", "integer"]
},
"ephemeral-storage": {
"type": "string"
},
"memory": {
"type": "string"
}
Expand All @@ -366,6 +369,9 @@
"cpu": {
"type": ["string", "integer"]
},
"ephemeral-storage": {
"type": "string"
},
"memory": {
"type": "string"
}
Expand Down
1 change: 1 addition & 0 deletions charts/opentelemetry-collector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ resources: {}
# resources:
# limits:
# cpu: 250m
# ephemeral-storage: 50Mi
# memory: 512Mi

podAnnotations: {}
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-demo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
type: application
name: opentelemetry-demo
version: 0.29.2
version: 0.29.3
description: opentelemetry demo helm chart
home: https://opentelemetry.io/
sources:
Expand Down
3 changes: 3 additions & 0 deletions charts/opentelemetry-demo/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,9 @@
"cpu": {
"type": "string"
},
"ephemeral-storage": {
"type": "string"
},
"memory": {
"type": "string"
}
Expand Down
1 change: 1 addition & 0 deletions charts/opentelemetry-demo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@ opentelemetry-collector:
resources:
limits:
memory: 200Mi
ephemeral-storage: 50Mi
service:
type: ClusterIP
ports:
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-ebpf/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-ebpf
version: 0.1.0
version: 0.1.1
description: OpenTelemetry eBPF Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
6 changes: 6 additions & 0 deletions charts/opentelemetry-ebpf/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
"integer"
]
},
"ephemeral-storage": {
"type": "string"
},
"memory": {
"type": "string"
}
Expand All @@ -63,6 +66,9 @@
"integer"
]
},
"ephemeral-storage": {
"type": "string"
},
"memory": {
"type": "string"
}
Expand Down
2 changes: 1 addition & 1 deletion charts/opentelemetry-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: opentelemetry-operator
version: 0.52.2
version: 0.52.3
description: OpenTelemetry Operator Helm chart for Kubernetes
type: application
home: https://opentelemetry.io/
Expand Down
48 changes: 48 additions & 0 deletions charts/opentelemetry-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,14 @@
"100m"
]
},
"ephemeral-storage": {
"type": "string",
"default": "",
"title": "The ephemeral-storage Schema",
"examples": [
"64Mi"
]
},
"memory": {
"type": "string",
"default": "",
Expand All @@ -558,6 +566,7 @@
},
"examples": [{
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
}]
},
Expand All @@ -579,6 +588,14 @@
"100m"
]
},
"ephemeral-storage": {
"type": "string",
"default": "",
"title": "The ephemeral-storage Schema",
"examples": [
"64Mi"
]
},
"memory": {
"type": "string",
"default": "",
Expand All @@ -590,17 +607,20 @@
},
"examples": [{
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "64Mi"
}]
}
},
"examples": [{
"limits": {
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "100m",
"ephemeral-storage": "32Mi",
"memory": "64Mi"
}
}]
Expand Down Expand Up @@ -1033,10 +1053,12 @@
"resources": {
"limits": {
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "64Mi"
}
},
Expand Down Expand Up @@ -1185,6 +1207,14 @@
"500m"
]
},
"ephemeral-storage": {
"type": "string",
"default": "",
"title": "The ephemeral-storage Schema",
"examples": [
"64Mi"
]
},
"memory": {
"type": "string",
"default": "",
Expand All @@ -1196,6 +1226,7 @@
},
"examples": [{
"cpu": "500m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
}]
},
Expand All @@ -1217,6 +1248,14 @@
"5m"
]
},
"ephemeral-storage": {
"type": "string",
"default": "",
"title": "The ephemeral-storage Schema",
"examples": [
"64Mi"
]
},
"memory": {
"type": "string",
"default": "",
Expand All @@ -1228,17 +1267,20 @@
},
"examples": [{
"cpu": "5m",
"ephemeral-storage": "32Mi",
"memory": "64Mi"
}]
}
},
"examples": [{
"limits": {
"cpu": "500m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "5m",
"ephemeral-storage": "32Mi",
"memory": "64Mi"
}
}]
Expand Down Expand Up @@ -1273,10 +1315,12 @@
"resources": {
"limits": {
"cpu": "500m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "5m",
"ephemeral-storage": "32Mi",
"memory": "64Mi"
}
},
Expand Down Expand Up @@ -1816,10 +1860,12 @@
"resources": {
"limits": {
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "100m",
"ephemeral-storage": "64Mi",
"memory": "64Mi"
}
},
Expand Down Expand Up @@ -1878,10 +1924,12 @@
"resources": {
"limits": {
"cpu": "500m",
"ephemeral-storage": "64Mi",
"memory": "128Mi"
},
"requests": {
"cpu": "5m",
"ephemeral-storage": "32Mi",
"memory": "64Mi"
}
},
Expand Down

0 comments on commit f057165

Please sign in to comment.