From 1f529921cecadaa89daab209d82a27fa8e0782e1 Mon Sep 17 00:00:00 2001 From: michaeljguarino Date: Thu, 18 Apr 2024 19:22:36 -0400 Subject: [PATCH] bump chart version --- charts/runtime/Chart.yaml | 3 ++- charts/runtime/templates/application.yaml | 4 +++- charts/runtime/templates/operator.yaml | 2 ++ charts/runtime/values.yaml | 3 +++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/charts/runtime/Chart.yaml b/charts/runtime/Chart.yaml index 7b0c5d8..55f968b 100644 --- a/charts/runtime/Chart.yaml +++ b/charts/runtime/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: runtime description: Sets up the basic dependencies needed to get a network stack running type: application -version: 0.1.18 +version: 0.1.19 appVersion: "0.1.0" dependencies: - name: external-dns @@ -15,6 +15,7 @@ dependencies: condition: cert-manager.enabled - name: plural-certmanager-webhook version: 0.1.7 + condition: plural-certmanager-webhook.enabled - name: ingress-nginx version: 4.9.1 repository: https://kubernetes.github.io/ingress-nginx diff --git a/charts/runtime/templates/application.yaml b/charts/runtime/templates/application.yaml index 9dd124d..447986f 100644 --- a/charts/runtime/templates/application.yaml +++ b/charts/runtime/templates/application.yaml @@ -1,3 +1,4 @@ +{{ if .Values.application.enabled }} apiVersion: v1 kind: ServiceAccount metadata: @@ -232,4 +233,5 @@ spec: requests: cpu: 100m memory: 20Mi - terminationGracePeriodSeconds: 10 \ No newline at end of file + terminationGracePeriodSeconds: 10 +{{ end }} \ No newline at end of file diff --git a/charts/runtime/templates/operator.yaml b/charts/runtime/templates/operator.yaml index 9fa2284..0109f23 100644 --- a/charts/runtime/templates/operator.yaml +++ b/charts/runtime/templates/operator.yaml @@ -1,3 +1,4 @@ +{{ if .Values.operator.enabled }} apiVersion: apps/v1 kind: Deployment metadata: @@ -73,3 +74,4 @@ spec: secretName: plural-operator-webhook-server-cert serviceAccountName: plural-operator terminationGracePeriodSeconds: 10 +{{ end }} \ No newline at end of file diff --git a/charts/runtime/values.yaml b/charts/runtime/values.yaml index 118ac8f..ee1124c 100644 --- a/charts/runtime/values.yaml +++ b/charts/runtime/values.yaml @@ -20,15 +20,18 @@ external-dns: key: PLURAL_ACCESS_TOKEN plural-certmanager-webhook: + enabled: true certManager: namespace: cert-manager serviceAccountName: cert-manager application: + enabled: true registry: dkr.plural.sh/bootstrap tag: v0.8.3 plural: + enabled: true image: repository: dkr.plural.sh/bootstrap/plural-operator tag: 0.5.5