@codefresh-io/kube-integration 1.26.4 → 1.31.0-api
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/.github/PULL_REQUEST_TEMPLATE.md +6 -0
- package/.github/release-drafter.yaml +8 -0
- package/.github/workflows/draft-release.yaml +33 -0
- package/.nvmrc +1 -1
- package/Dockerfile +2 -1
- package/package.json +4 -18
- package/service.yaml +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
name-template: '$RESOLVED_VERSION'
|
|
2
|
+
tag-template: '$RESOLVED_VERSION'
|
|
3
|
+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
|
4
|
+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
|
|
5
|
+
template: |
|
|
6
|
+
## Changes
|
|
7
|
+
|
|
8
|
+
$CHANGES
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
## Reference: https://github.com/release-drafter/release-drafter
|
|
2
|
+
name: Create Release
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
push:
|
|
6
|
+
branches:
|
|
7
|
+
- master
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
create_release:
|
|
11
|
+
name: Create Release
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
|
|
19
|
+
- name: Set up YQ
|
|
20
|
+
uses: frenck/action-setup-yq@v1
|
|
21
|
+
|
|
22
|
+
- name: Get release version from service.yaml
|
|
23
|
+
run: |
|
|
24
|
+
RELEASE_VERSION=$(yq eval '.version' service.yaml )
|
|
25
|
+
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
|
|
26
|
+
|
|
27
|
+
- uses: release-drafter/release-drafter@v5
|
|
28
|
+
env:
|
|
29
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
30
|
+
with:
|
|
31
|
+
publish: true
|
|
32
|
+
version: ${{ env.RELEASE_VERSION }}
|
|
33
|
+
config-name: release-drafter.yaml
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v16.20.2
|
package/Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM --platform=$BUILDPLATFORM node:
|
|
1
|
+
FROM --platform=$BUILDPLATFORM node:18.18.0-alpine
|
|
2
2
|
|
|
3
3
|
ARG TARGETPLATFORM
|
|
4
4
|
ARG TARGETARCH
|
|
@@ -14,6 +14,7 @@ COPY package.json yarn.lock ./
|
|
|
14
14
|
# install required binaries
|
|
15
15
|
RUN apk add --no-cache --virtual deps make python3 g++ krb5-dev git && \
|
|
16
16
|
rm -rf node_modules && \
|
|
17
|
+
npm update -g npm && \
|
|
17
18
|
yarn install --production --frozen-lockfile && \
|
|
18
19
|
yarn cache clean && \
|
|
19
20
|
apk del deps && apk upgrade && \
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
2
|
+
"version": "1.31.0-api",
|
|
3
3
|
"name": "@codefresh-io/kube-integration",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"url": "git+https://github.com/codefresh-io/kube-integration.git"
|
|
20
20
|
},
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": "^
|
|
22
|
+
"node": "^18.18.0"
|
|
23
23
|
},
|
|
24
24
|
"author": "Oleg Sucharevich <olegs@codefresh.io>",
|
|
25
25
|
"license": "ISC",
|
|
@@ -28,26 +28,15 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/codefresh-io/kube-integration#readme",
|
|
30
30
|
"resolutions": {
|
|
31
|
-
"json-schema": "^0.4.0",
|
|
32
|
-
"lodash": "~4.17.21",
|
|
33
|
-
"normalize-url": "4.5.1",
|
|
34
|
-
"shelljs": "0.8.5",
|
|
35
|
-
"node-forge": "1.3.0",
|
|
36
31
|
"openid-client": "^4.9.0",
|
|
37
|
-
"request/qs": "6.5.3",
|
|
38
|
-
"kubernetes-client/qs": "6.9.7",
|
|
39
|
-
"nodegistry/request/qs": "6.5.3",
|
|
40
|
-
"semver": "7.5.2",
|
|
41
|
-
"protobufjs": "7.2.4",
|
|
42
|
-
"http-cache-semantics": "4.1.1",
|
|
43
32
|
"jose": "3.20.4",
|
|
44
33
|
"tough-cookie": "4.1.3"
|
|
45
34
|
},
|
|
46
35
|
"dependencies": {
|
|
36
|
+
"@codefresh-io/cf-monitor": "0.0.29",
|
|
47
37
|
"@codefresh-io/docker-reference": "^0.0.5",
|
|
48
|
-
"@codefresh-io/eventbus": "
|
|
38
|
+
"@codefresh-io/eventbus": "2.0.0",
|
|
49
39
|
"@codefresh-io/http-infra": "1.8.14",
|
|
50
|
-
"@codefresh-io/cf-monitor": "0.0.27",
|
|
51
40
|
"bluebird": "^3.5.0",
|
|
52
41
|
"body-parser": "1.19.2",
|
|
53
42
|
"cf-errors": "^0.1.16",
|
|
@@ -78,6 +67,3 @@
|
|
|
78
67
|
"sinon-chai": "^2.10.0"
|
|
79
68
|
}
|
|
80
69
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
package/service.yaml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version: 1.
|
|
1
|
+
version: 1.31.0
|