pepr 0.1.14 → 0.1.15
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/dist/pepr-cli.js +2 -2
- package/package.json +2 -2
- package/src/lib/k8s/webhook.ts +1 -1
package/dist/pepr-cli.js
CHANGED
|
@@ -20,7 +20,7 @@ var uuid = require('uuid');
|
|
|
20
20
|
var commander = require('commander');
|
|
21
21
|
var chokidar = require('chokidar');
|
|
22
22
|
|
|
23
|
-
var version = "0.1.
|
|
23
|
+
var version = "0.1.15";
|
|
24
24
|
|
|
25
25
|
// SPDX-License-Identifier: Apache-2.0
|
|
26
26
|
// SPDX-FileCopyrightText: 2023-Present The Pepr Authors
|
|
@@ -303,7 +303,7 @@ class Webhook {
|
|
|
303
303
|
this.config = config;
|
|
304
304
|
this.ns = "pepr-system";
|
|
305
305
|
this.name = `pepr-${config.uuid}`;
|
|
306
|
-
this.image = `ghcr.io/defenseunicorns/pepr
|
|
306
|
+
this.image = `ghcr.io/defenseunicorns/pepr/controller:${config.version}`;
|
|
307
307
|
// Generate the ephemeral tls things
|
|
308
308
|
this.tls = genTLS(this.name);
|
|
309
309
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pepr",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Kubernetes application engine",
|
|
5
5
|
"author": "Defense Unicorns",
|
|
6
6
|
"homepage": "https://github.com/defenseunicorns/pepr",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"node-forge": "^1.3.1",
|
|
46
46
|
"prettier": "^2.8.7",
|
|
47
47
|
"prompts": "^2.4.2",
|
|
48
|
-
"ramda": "^0.
|
|
48
|
+
"ramda": "^0.29.0",
|
|
49
49
|
"rollup": "^3.20.2",
|
|
50
50
|
"tslib": "^2.5.0",
|
|
51
51
|
"typescript": "^5.0.2",
|
package/src/lib/k8s/webhook.ts
CHANGED
|
@@ -39,7 +39,7 @@ export class Webhook {
|
|
|
39
39
|
constructor(private readonly config: ModuleConfig) {
|
|
40
40
|
this.name = `pepr-${config.uuid}`;
|
|
41
41
|
|
|
42
|
-
this.image = `ghcr.io/defenseunicorns/pepr
|
|
42
|
+
this.image = `ghcr.io/defenseunicorns/pepr/controller:${config.version}`;
|
|
43
43
|
|
|
44
44
|
// Generate the ephemeral tls things
|
|
45
45
|
this.tls = genTLS(this.name);
|