fixed helm dependency recursion of kustomize

This commit is contained in:
Sebastian Wendel 2022-11-30 12:21:56 +01:00
parent 6161b354b4
commit a8d42e33fd
No known key found for this signature in database
GPG key ID: 1422B7DF78144640
4 changed files with 6 additions and 3 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@
temp
charts
.pre-commit-config.yaml
dist

View file

@ -27,3 +27,5 @@
# Nix
.direnv
.pre-commit-config.yaml
dist

View file

@ -1,7 +1,7 @@
---
name: fcoscore
description: Fab City OS Core Kubernetes Helm Chart
version: 0.1.1
version: 0.1.3
type: application
appVersion: latest
apiVersion: v2

View file

@ -104,10 +104,10 @@ uninstall: ## Run helm uninstall.
reinstall: uninstall install ## Run helm reinstall.
package: ## Package the helm chart.
@helm package . --destination charts
@helm package . --destination dist
push: ## Publish the helm chart.
@helm cm-push charts/fcoscore-*.tgz fcoscore-alpha
@helm cm-push dist/fcoscore-$(grep '^version:' Chart.yaml | awk '{print $2}').tgz fcoscore-alpha
%:
@true