diff --git a/charts/vcluster/Chart.yaml b/charts/vcluster/Chart.yaml index 90e7d78c..160478e5 100644 --- a/charts/vcluster/Chart.yaml +++ b/charts/vcluster/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: vcluster description: Virtual Kubernetes Cluster type: application -version: 0.8.1 +version: 0.8.2 appVersion: 0.1.0 keywords: - vcluster diff --git a/charts/vcluster/README.md b/charts/vcluster/README.md index 5e573f94..b249ab7e 100644 --- a/charts/vcluster/README.md +++ b/charts/vcluster/README.md @@ -2,7 +2,7 @@ __This Chart is under active development! We try to improve documentation and values consistency over time__ -![Version: 0.8.1](https://img.shields.io/badge/Version-0.8.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.8.2](https://img.shields.io/badge/Version-0.8.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) Virtual Kubernetes Cluster diff --git a/charts/vcluster/addons/scripts/configure-vcluster.sh b/charts/vcluster/addons/scripts/configure-vcluster.sh index 835de9cb..7b4054d2 100644 --- a/charts/vcluster/addons/scripts/configure-vcluster.sh +++ b/charts/vcluster/addons/scripts/configure-vcluster.sh @@ -146,12 +146,12 @@ fi # ------------------------------------------------------------------------------ # Additional Manifests # ------------------------------------------------------------------------------ -{{- if $.Release.IsInstall }} - {{- range $lifecycle.vcluster.extraOnlineManifests }} -kubectl apply --server-side -f {{ . | quote }} - {{- end }} +{{- range $lifecycle.vcluster.extraOnlineManifests }} +kubectl apply --server-side -f {{ . | quote }} 2>/dev/null || true {{- end }} -{{- range $lifecycle.vcluster.extraOnlineManifestsOnInstall }} -kubectl apply --server-side -f {{ . | quote }} +{{- if $.Release.IsInstall }} + {{- range $lifecycle.vcluster.extraOnlineManifestsOnInstall }} +kubectl apply --server-side -f {{ . | quote }} 2>/dev/null || true + {{- end }} {{- end }}