@leverege/build-tools 2.51.1 → 2.51.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.51.1",
3
+ "version": "2.51.2",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -61,10 +61,10 @@
61
61
  "command-line-usage": "^7.0.3",
62
62
  "deepmerge": "^4.3.1",
63
63
  "enquirer": "^2.4.1",
64
- "execa": "^9.3.1",
64
+ "execa": "^9.4.0",
65
65
  "glob": "^11.0.0",
66
66
  "handlebars": "^4.7.8",
67
- "inquirer": "^10.2.2",
67
+ "inquirer": "^11.0.1",
68
68
  "js-yaml": "^4.1.0",
69
69
  "ms": "^2.1.3",
70
70
  "npm-registry-fetch": "^17.1.0",
@@ -2,7 +2,7 @@
2
2
  #
3
3
  showInstalling "Elastic Search 8"
4
4
 
5
- [ -z "$ELASTIC_CHART_VERSION" ] && ELASTIC_CHART_VERSION="21.3.10"
5
+ [ -z "$ELASTIC_CHART_VERSION" ] && ELASTIC_CHART_VERSION="21.3.17"
6
6
 
7
7
  OCI_CHART="oci://registry-1.docker.io/bitnamicharts/elasticsearch"
8
8
 
@@ -4,7 +4,7 @@ showInstalling "Redis"
4
4
 
5
5
  OCI_CHART="oci://registry-1.docker.io/bitnamicharts/redis"
6
6
 
7
- [ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="20.0.5"
7
+ [ -z "$REDIS_CHART_VERSION" ] && REDIS_CHART_VERSION="20.1.3"
8
8
 
9
9
  helm upgrade --install redis $OCI_CHART \
10
10
  --values redis/redis-local.yaml \
package/src/helmdn.sh CHANGED
@@ -38,7 +38,6 @@ PLATFORM=(
38
38
  )
39
39
 
40
40
  SYSTEM=(
41
- cert-manager
42
41
  elastic
43
42
  preemptible-killer
44
43
  redis
package/src/helmup.sh CHANGED
@@ -543,14 +543,15 @@ function initializeCnpgOperand() {
543
543
  local IMAGINE_PW_NAME="$CNPG_SERVICE-imagine-pw"
544
544
  local POSTGRES_PW_NAME="$CNPG_SERVICE-postgres-pw"
545
545
 
546
- printf "\nCreating imagine db password for `color g $CNPG_SERVICE`\n"
547
- kubectl create secret generic -n $CNPG_NAMESPACE "$IMAGINE_PW_NAME" \
548
- --from-literal=username="imagine" \
549
- --from-literal=password="$(generatePassword)" &> $DEVNULL
550
- warnOnError $? "the `color y $IMAGINE_PW_NAME` secret may already exist"
551
-
552
- # reflect the secret to default namespace
553
- reflectSecretIntoNamespaces $IMAGINE_PW_NAME $CNPG_NAMESPACE "default"
546
+ # TODO: we use postgres root password for access - that is bad - fix it?
547
+ # printf "\nCreating imagine db password for `color g $CNPG_SERVICE`\n"
548
+ # kubectl create secret generic -n $CNPG_NAMESPACE "$IMAGINE_PW_NAME" \
549
+ # --from-literal=username="imagine" \
550
+ # --from-literal=password="$(generatePassword)" &> $DEVNULL
551
+ # warnOnError $? "the `color y $IMAGINE_PW_NAME` secret may already exist"
552
+
553
+ # # reflect the secret to default namespace
554
+ # reflectSecretIntoNamespaces $IMAGINE_PW_NAME $CNPG_NAMESPACE "default"
554
555
 
555
556
  printf "\nCreating postgres db password for `color g $CNPG_SERVICE`\n"
556
557
  kubectl create secret generic -n $CNPG_NAMESPACE "$POSTGRES_PW_NAME" \