@leverege/build-tools 2.50.4 → 2.50.6

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.50.4",
3
+ "version": "2.50.6",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -13,7 +13,13 @@ spec:
13
13
  imageName: us-docker.pkg.dev/leverege-registry/system/images/leverege-pgsql:16.2-cnpg-tsdb2-beta.4
14
14
  bootstrap:
15
15
  initdb:
16
- database: imagine
16
+ database: models
17
+ postInitSQL:
18
+ - CREATE DATABASE authz;
19
+ - CREATE DATABASE fota;
20
+ - CREATE DATABASE geotile;
21
+ - CREATE DATABASE models;
22
+ - CREATE DATABASE scheduler;
17
23
  owner: imagine
18
24
  secret:
19
25
  name: cnpg-db-psql-stack-imagine-pw # imagine db pw
@@ -90,17 +96,3 @@ spec:
90
96
  method: volumeSnapshot
91
97
  backupOwnerReference: self
92
98
  immediate: true
93
- ---
94
- apiVersion: postgresql.cnpg.io/v1
95
- kind: ScheduledBackup
96
- metadata:
97
- name: cnpg-db-psql-stack-volsnap
98
- namespace: cnpg-operands
99
- spec:
100
- # https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format
101
- schedule: "0 0 */12 * * *"
102
- cluster:
103
- name: cnpg-db-psql-stack
104
- method: volumeSnapshot
105
- backupOwnerReference: self
106
- immediate: true
@@ -98,7 +98,7 @@ spec:
98
98
  apiVersion: postgresql.cnpg.io/v1
99
99
  kind: ScheduledBackup
100
100
  metadata:
101
- name: cnpg-db-tsdb-basic-volsnap
101
+ name: cnpg-db-tsdb-basic-backup
102
102
  namespace: cnpg-operands
103
103
  spec:
104
104
  # https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format
@@ -97,7 +97,7 @@ spec:
97
97
  apiVersion: postgresql.cnpg.io/v1
98
98
  kind: ScheduledBackup
99
99
  metadata:
100
- name: cnpg-db-tsdb-dense-volsnap
100
+ name: cnpg-db-tsdb-dense-backup
101
101
  namespace: cnpg-operands
102
102
  spec:
103
103
  # https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format
package/src/helmup.sh CHANGED
@@ -836,7 +836,6 @@ CATBACKUP
836
836
  # this code only executes on the first deployment
837
837
  initializeCnpgOperand $SERVICE
838
838
  bootstrapLocalSetup $SERVICE
839
- kubectl apply -f $SERVICE/$SERVICE.yaml $K8S_WHAT
840
839
  fi
841
840
  ;;
842
841