@codefresh-io/kube-integration 1.24.1 → 1.24.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/.nvmrc +1 -1
- package/Dockerfile +1 -1
- package/lib/helm/release/helm3/revision.js +1 -1
- package/package.json +3 -3
- package/service.yaml +1 -1
- package/yarn.lock +0 -2776
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v12.22.
|
|
1
|
+
v12.22.8
|
package/Dockerfile
CHANGED
|
@@ -6,7 +6,7 @@ WORKDIR /kube-integration
|
|
|
6
6
|
COPY package.json yarn.lock ./
|
|
7
7
|
|
|
8
8
|
# install required binaries
|
|
9
|
-
RUN apk update && apk add --no-cache --virtual deps
|
|
9
|
+
RUN apk update && apk add --no-cache --virtual deps make g++ krb5-dev bash git openssh-client && \
|
|
10
10
|
rm -rf node_modules && yarn install --production --frozen-lockfile && \
|
|
11
11
|
yarn cache clean && \
|
|
12
12
|
apk del deps && apk upgrade && \
|
|
@@ -121,7 +121,7 @@ class ReleaseRevision extends BaseRevision {
|
|
|
121
121
|
|
|
122
122
|
_normalizeSecretKeys(obj) {
|
|
123
123
|
return _.transform(obj, (result, value, key) => {
|
|
124
|
-
result[
|
|
124
|
+
result[key] = _.isObject(value) ? this._normalizeSecretKeys(value) : value;
|
|
125
125
|
});
|
|
126
126
|
}
|
|
127
127
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.24.
|
|
2
|
+
"version": "1.24.2",
|
|
3
3
|
"name": "@codefresh-io/kube-integration",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@codefresh-io/docker-reference": "^0.0.5",
|
|
36
36
|
"@codefresh-io/eventbus": "1.4.1",
|
|
37
|
-
"@codefresh-io/http-infra": "^1.8.
|
|
37
|
+
"@codefresh-io/http-infra": "^1.8.11",
|
|
38
38
|
"bluebird": "^3.5.0",
|
|
39
39
|
"body-parser": "^1.17.2",
|
|
40
40
|
"cf-errors": "^0.1.15",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"mongoose": "^5.12.1",
|
|
55
55
|
"morgan": "^1.10.0",
|
|
56
56
|
"nock": "^12.0.3",
|
|
57
|
-
"nodegistry": "^1.
|
|
57
|
+
"nodegistry": "^1.2.2",
|
|
58
58
|
"object-hash": "^1.2.0",
|
|
59
59
|
"request": "^2.88.2",
|
|
60
60
|
"request-promise": "^4.2.6",
|
package/service.yaml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version: 1.25.
|
|
1
|
+
version: 1.25.8
|