From 6d7a09d4e4675f02c5ac82af090507baa5f6ec50 Mon Sep 17 00:00:00 2001 From: yehiel etah Date: Wed, 6 Dec 2023 18:03:11 +0200 Subject: [PATCH] Test guaranteed qos pod (#72) * Update values.yaml * Update Chart.yaml * Update README.md * Update values.yaml --- charts/ocean-network-client/Chart.yaml | 2 +- charts/ocean-network-client/README.md | 4 ++-- charts/ocean-network-client/values.yaml | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/charts/ocean-network-client/Chart.yaml b/charts/ocean-network-client/Chart.yaml index 239a36c..723d4c3 100644 --- a/charts/ocean-network-client/Chart.yaml +++ b/charts/ocean-network-client/Chart.yaml @@ -17,7 +17,7 @@ maintainers: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.0.14 +version: 1.0.15 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/ocean-network-client/README.md b/charts/ocean-network-client/README.md index 294d294..bf6c4b8 100644 --- a/charts/ocean-network-client/README.md +++ b/charts/ocean-network-client/README.md @@ -1,6 +1,6 @@ # ocean-network-client -![Version: 1.0.14](https://img.shields.io/badge/Version-1.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-informational?style=flat-square) +![Version: 1.0.15](https://img.shields.io/badge/Version-1.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.6](https://img.shields.io/badge/AppVersion-1.0.6-informational?style=flat-square) A Helm chart for Ocean Network Client @@ -51,7 +51,7 @@ helm install my-release spot/ocean-network-client | namespace | Optional | `"kube-system"` | Namespace where components should be installed. | | oceanController.configMapName | Optional | `"spotinst-kubernetes-cluster-controller-config"` | ConfigMap name. | | oceanController.secretName | Optional | `"spotinst-kubernetes-cluster-controller"` | Secret name. | -| resources | Optional | `{"requests":{"cpu":"30m","memory":"150Mi"}}` | Resource requests and limits. Ref: http://kubernetes.io/docs/user-guide/compute-resources/ | +| resources | Optional | `{"limits":{"cpu":"40m","memory":"150Mi"},"requests":{"cpu":"40m","memory":"150Mi"}}` | Resource requests and limits. Ref: http://kubernetes.io/docs/user-guide/compute-resources/ | | tolerations | Optional | `[{"operator":"Exists"}]` | Tolerations - Enable pods to run an all nodes in cluster Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ | ---------------------------------------------- diff --git a/charts/ocean-network-client/values.yaml b/charts/ocean-network-client/values.yaml index 853cc80..d532a34 100644 --- a/charts/ocean-network-client/values.yaml +++ b/charts/ocean-network-client/values.yaml @@ -20,7 +20,10 @@ image: # Ref: http://kubernetes.io/docs/user-guide/compute-resources/ resources: requests: - cpu: 30m + cpu: 40m + memory: 150Mi + limits: + cpu: 40m memory: 150Mi # -- (Optional) Tolerations - Enable pods to run an all nodes in cluster