@leverege/build-tools 2.21.11 → 2.21.13

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 +6 -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.13",
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,6 @@
1
+ #!/bin/bash
1
2
  #
2
- printf "\n***** RUNNING LOCALLY *****\n" && sleep 2
3
+ # printf "\n***** RUNNING LOCALLY *****\n" && sleep 2
3
4
 
4
5
  # Load the standard helper functions
5
6
  . `build-tools --bashfun`
@@ -555,7 +556,7 @@ NEED_MANAGED_SECRET
555
556
  addHelmRepo jetstack https://charts.jetstack.io
556
557
  helm upgrade --install cert-manager jetstack/cert-manager \
557
558
  --namespace cert-manager --set installCRDs=true \
558
- --version v1.10
559
+ --version v1.9
559
560
 
560
561
  cat<<DELAY
561
562
 
@@ -630,7 +631,7 @@ TRAEFIK_CFG
630
631
 
631
632
  addHelmRepo traefik https://helm.traefik.io/traefik
632
633
 
633
- [ -z "$TRAEFIK_HELM_CHART" ] && TRAEFIK_HELM_CHART="16"
634
+ [ -z "$TRAEFIK_HELM_CHART" ] && TRAEFIK_HELM_CHART="12"
634
635
  helm upgrade --install traefik traefik/traefik \
635
636
  --namespace traefik \
636
637
  --version $TRAEFIK_HELM_CHART \
@@ -1029,10 +1030,10 @@ NOTRUNNING
1029
1030
  }
1030
1031
 
1031
1032
  # ---------- helmup MAIN ----------
1032
- GITTOP=`git rev-parse --show-toplevel` # `&& cd $GITTOP
1033
+ GITTOP=`git rev-parse --show-toplevel` && cd $GITTOP
1033
1034
  K8S_UTILS="${GITTOP}/k8s-utils"
1034
1035
 
1035
- overwhelm.js #XXX
1036
+ overwhelm
1036
1037
  [ $? -ne 0 ] && printf "\n\n***Aborting helmup...\n\n" && exit 1
1037
1038
 
1038
1039
  doInstall $@