From b7b2048b3516349664c70b320031b42f5d4473f7 Mon Sep 17 00:00:00 2001 From: Samuel Liu Date: Thu, 9 Sep 2021 19:41:22 +0800 Subject: [PATCH] add ingress resources The current ingress deployment does not add resource, we need to add it. Change-Id: I9d610f13235c431ffdfa1d29b71660b3c1261e37 --- mariadb/Chart.yaml | 2 +- mariadb/values.yaml | 7 +++++++ releasenotes/notes/mariadb.yaml | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/mariadb/Chart.yaml b/mariadb/Chart.yaml index 04cea320a..37b8e26c9 100644 --- a/mariadb/Chart.yaml +++ b/mariadb/Chart.yaml @@ -15,7 +15,7 @@ apiVersion: v1 appVersion: v10.2.31 description: OpenStack-Helm MariaDB name: mariadb -version: 0.2.6 +version: 0.2.7 home: https://mariadb.com/kb/en/ icon: http://badges.mariadb.org/mariadb-badge-180x60.png sources: diff --git a/mariadb/values.yaml b/mariadb/values.yaml index 7eaeddd82..362dab517 100644 --- a/mariadb/values.yaml +++ b/mariadb/values.yaml @@ -172,6 +172,13 @@ pod: limits: memory: "1024Mi" cpu: "2000m" + ingress: + requests: + memory: "128Mi" + cpu: "100m" + limits: + memory: "1024Mi" + cpu: "2000m" jobs: tests: limits: diff --git a/releasenotes/notes/mariadb.yaml b/releasenotes/notes/mariadb.yaml index 3da347e7c..d6d07f64e 100644 --- a/releasenotes/notes/mariadb.yaml +++ b/releasenotes/notes/mariadb.yaml @@ -22,4 +22,5 @@ mariadb: - 0.2.4 Use full image ref for docker official images - 0.2.5 Added helm hook for post-install and post-upgrade in prometheus exporter job. - 0.2.6 Update log format stream for mariadb + - 0.2.7 add ingress resources ...