Skip to content

Commit 126da7d

Browse files
author
Sudip Bhattarai
committed
Prepare for 2.3.2
1 parent ead85f8 commit 126da7d

File tree

7 files changed

+15
-30
lines changed

7 files changed

+15
-30
lines changed

Jenkinsfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,11 @@ pipeline {
1111

1212
//From develop branch: deployment details for develop
1313
DEPLOYMENT_DEVELOP_CLOUD = '172.31.0.6:2376'
14-
DEPLOYMENT_DEVELOP_SERVICE = 'kuber-dev_api'
14+
DEPLOYMENT_DEVELOP_SERVICE = 'kuber'
1515

1616
// From master branch:deployment details for staging
17-
DEPLOYMENT_STAGING_CLOUD = '172.31.0.6:2376'
18-
DEPLOYMENT_STAGING_SERVICE = 'kuber-staging'
19-
20-
//When tag is pushed: deployment details for release
21-
DEPLOYMENT_RELEASE_CLOUD = '172.31.0.7:2376'
22-
DEPLOYMENT_RELEASE_SERVICE = 'kuber_api'
17+
DEPLOYMENT_STAGING_CLOUD = '172.31.0.7:2376'
18+
DEPLOYMENT_STAGING_SERVICE = 'kuber'
2319

2420

2521
COMPUTED_PR = "${env.gitlabMergeRequestIid ? 'true' : ''}"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Kuber can be stared easily with [docker-compose.yml](./docker-compose.yml) file.
4747

4848
```bash
4949
git clone https://github.com/dquadrant/kuber.git
50-
git checkout 2.3.1
50+
git checkout 2.3.2
5151
docker-compose up -d
5252
```
5353

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
max-size: "200k"
1717
max-file: "10"
1818
kuber:
19-
image: dquadrant/kuber:${KUBER_VERSION:-2.3.1}
19+
image: dquadrant/kuber:${KUBER_VERSION:-2.3.2}
2020
environment:
2121
NETWORK: ${NETWORK:- preprod}
2222
volumes:

kuber.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: kuber
3-
version: 2.3.1.0
3+
version: 2.3.2.0
44

55
-- A short (one-line) description of the package.
66
-- synopsis:

kuber.yaml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,18 @@ networks:
33
frontend:
44
external: true
55
volumes:
6-
ipc-testnet :
7-
name : cardano-db-sync_node-ipc-testnet
86
ipc-mainnet:
9-
name: cardano-db-sync_node-ipc
7+
name: cardano_mainnet_ipc
108
ipc-preprod:
11-
name: cardano-preprod_ipc
9+
name: cardano_preprod_ipc
1210
ipc-preview:
13-
name: cardano-preview_node_ipc
11+
name: cardano_preview_ipc
1412
services :
15-
testnet :
16-
image: registry.sireto.io/kuber/api:latest-131
17-
environment:
18-
VIRTUAL_HOST : https://testnet.cnftregistry.io/kuber/api -> :8081/api
19-
NETWORK: testnet
20-
networks:
21-
- frontend
22-
volumes:
23-
- ipc-testnet:/root/.cardano/testnet
2413
mainnet :
25-
image: dquadrant/kuber:ce4d493784da945cb6a29cb5325b3f969e3924a7
14+
image: dquadrant/kuber:2.3.2
2615
environment:
2716
NETWORK: mainnet
28-
VIRTUAL_HOST : https://cnftregistry.io/kuber/api -> :8081/api
17+
VIRTUAL_HOST : https://mainnet.kuberide.com -> :8081
2918
networks:
3019
- frontend
3120
volumes:
@@ -35,7 +24,7 @@ services :
3524
environment:
3625
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
3726
NETWORK: 1
38-
VIRTUAL_HOST : https://preprod.cnftregistry.io/kuber/api -> :8081/api
27+
VIRTUAL_HOST : https://preprod.kuberide.com -> :8081
3928
networks:
4029
- frontend
4130
volumes:
@@ -45,7 +34,7 @@ services :
4534
environment:
4635
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
4736
NETWORK: 2
48-
VIRTUAL_HOST : https://preview.cnftregistry.io/kuber/api -> :8081/api
37+
VIRTUAL_HOST : https://preview.kuberide.com -> :8081/api
4938
networks:
5039
- frontend
5140
volumes:

playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "frontend",
3-
"version": "0.0.0",
3+
"version": "2.3.2",
44
"scripts": {
55
"start": "vite --host=0.0.0.0",
66
"dev": "vite",

server/kuber-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: kuber-server
3-
version: 2.3.1.0
3+
version: 2.3.2.0
44

55
-- A short (one-line) description of the package.
66
-- synopsis:

0 commit comments

Comments
 (0)