From 2ab86467f44d36aaa3e4e1ad7bf3c123ad5305b1 Mon Sep 17 00:00:00 2001 From: Mathieu Cesbron Date: Tue, 13 Feb 2024 14:21:26 +0100 Subject: [PATCH] Add fields to helm charts --- charts/operator/Chart.yaml | 4 ++-- charts/operator/values.yaml | 17 ++++++++++++++++- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/charts/operator/Chart.yaml b/charts/operator/Chart.yaml index d896520..59aa3c0 100644 --- a/charts/operator/Chart.yaml +++ b/charts/operator/Chart.yaml @@ -2,6 +2,6 @@ apiVersion: v2 name: metabase-operator description: Helm chart to deploy [unagex-metabase-operator](https://github.com/unagex/metabase-operator) type: application -version: 0.0.1 -appVersion: 0.0.1 +version: 0.0.2 +appVersion: 0.0.2 home: https://github.com/unagex/metabase-operator diff --git a/charts/operator/values.yaml b/charts/operator/values.yaml index e4f6625..d01cd4d 100644 --- a/charts/operator/values.yaml +++ b/charts/operator/values.yaml @@ -3,4 +3,19 @@ operator: repository: ghcr.io/unagex/metabase-operator/controller # tag default to .Chart.AppVersion if not set tag: "" - pullPolicy: IfNotPresent \ No newline at end of file + pullPolicy: IfNotPresent + + # resources example: + # resources: + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + resources: {} + + # labels example: + # labels: + # app.kubernetes.io/part-of: example + labels: {} \ No newline at end of file