@leverege/build-tools 2.63.1 → 2.63.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.63.1",
3
+ "version": "2.63.2",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
File without changes
@@ -0,0 +1,11 @@
1
+ #!/bin/bash
2
+
3
+ showInstalling "Valkey"
4
+
5
+ OCI_CHART="oci://registry-1.docker.io/bitnamicharts/valkey"
6
+
7
+ [ -z "$VALKEY_CHART_VERSION" ] && VALKEY_CHART_VERSION="2.2.4"
8
+
9
+ helm upgrade --install valkey $OCI_CHART \
10
+ --values valkey/valkey-local.yaml \
11
+ --version $VALKEY_CHART_VERSION $HELM_WHAT
@@ -0,0 +1,87 @@
1
+
2
+ global:
3
+ storageClass: "ssd"
4
+
5
+ architecture: replication
6
+
7
+ auth:
8
+ enabled: false
9
+ sentinel: true
10
+
11
+ primary:
12
+ replicaCount: 1
13
+
14
+ resourcesPreset: "nano"
15
+ resources:
16
+ requests:
17
+ cpu: 250m
18
+ memory: 500Mi
19
+
20
+ updateStrategy:
21
+ ## StrategyType
22
+ ## Can be set to RollingUpdate, OnDelete (statefulset), Recreate (deployment)
23
+ ##
24
+ type: RollingUpdate
25
+
26
+ affinity:
27
+ nodeAffinity:
28
+ requiredDuringSchedulingIgnoredDuringExecution:
29
+ nodeSelectorTerms:
30
+ - matchExpressions:
31
+ - key: target-env
32
+ operator: In
33
+ values:
34
+ - database
35
+
36
+ tolerations:
37
+ - key: "database"
38
+ operator: "Equal"
39
+ value: "true"
40
+ effect: "NoSchedule"
41
+
42
+ persistence:
43
+ enabled: true
44
+ size: 8Gi
45
+
46
+ replica:
47
+ replicaCount: 1
48
+
49
+ resourcesPreset: "nano"
50
+ resources:
51
+ requests:
52
+ cpu: 250m
53
+ memory: 500Mi
54
+
55
+ affinity:
56
+ nodeAffinity:
57
+ requiredDuringSchedulingIgnoredDuringExecution:
58
+ nodeSelectorTerms:
59
+ - matchExpressions:
60
+ - key: target-env
61
+ operator: In
62
+ values:
63
+ - database
64
+
65
+ tolerations:
66
+ - key: "database"
67
+ operator: "Equal"
68
+ value: "true"
69
+ effect: "NoSchedule"
70
+
71
+ persistence:
72
+ enabled: true
73
+ size: 8Gi
74
+
75
+ sentinel:
76
+ enabled: false
77
+
78
+ metrics:
79
+ enabled: true
80
+ serviceMonitor:
81
+ enabled: true
82
+ namespace: "prometheus"
83
+ relabelings:
84
+ - action: labelmap
85
+ regex: __meta_kubernetes_pod_label_(.+)
86
+ - action: labelmap
87
+ regex: __meta_kubernetes_service_label_(.+)
package/src/helmup.sh CHANGED
@@ -1076,7 +1076,7 @@ CATBACKUP
1076
1076
  bootstrapLocalSetup $SERVICE
1077
1077
  ;;
1078
1078
 
1079
- "redis")
1079
+ "redis"|"valkey")
1080
1080
  bootstrapLocalSetup $SERVICE
1081
1081
  ;;
1082
1082