@leverege/build-tools 2.21.11 → 2.21.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/helmup +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.21.11",
3
+ "version": "2.21.12",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
package/src/helmup CHANGED
@@ -1,5 +1,5 @@
1
1
  #
2
- printf "\n***** RUNNING LOCALLY *****\n" && sleep 2
2
+ # printf "\n***** RUNNING LOCALLY *****\n" && sleep 2
3
3
 
4
4
  # Load the standard helper functions
5
5
  . `build-tools --bashfun`
@@ -555,7 +555,7 @@ NEED_MANAGED_SECRET
555
555
  addHelmRepo jetstack https://charts.jetstack.io
556
556
  helm upgrade --install cert-manager jetstack/cert-manager \
557
557
  --namespace cert-manager --set installCRDs=true \
558
- --version v1.10
558
+ --version v1.9
559
559
 
560
560
  cat<<DELAY
561
561
 
@@ -630,7 +630,7 @@ TRAEFIK_CFG
630
630
 
631
631
  addHelmRepo traefik https://helm.traefik.io/traefik
632
632
 
633
- [ -z "$TRAEFIK_HELM_CHART" ] && TRAEFIK_HELM_CHART="16"
633
+ [ -z "$TRAEFIK_HELM_CHART" ] && TRAEFIK_HELM_CHART="12"
634
634
  helm upgrade --install traefik traefik/traefik \
635
635
  --namespace traefik \
636
636
  --version $TRAEFIK_HELM_CHART \
@@ -1029,10 +1029,10 @@ NOTRUNNING
1029
1029
  }
1030
1030
 
1031
1031
  # ---------- helmup MAIN ----------
1032
- GITTOP=`git rev-parse --show-toplevel` # `&& cd $GITTOP
1032
+ GITTOP=`git rev-parse --show-toplevel` && cd $GITTOP
1033
1033
  K8S_UTILS="${GITTOP}/k8s-utils"
1034
1034
 
1035
- overwhelm.js #XXX
1035
+ overwhelm
1036
1036
  [ $? -ne 0 ] && printf "\n\n***Aborting helmup...\n\n" && exit 1
1037
1037
 
1038
1038
  doInstall $@