Skip to content

Commit

Permalink
Prepare for 2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudip Bhattarai committed Feb 20, 2023
1 parent ead85f8 commit 126da7d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 30 deletions.
10 changes: 3 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,11 @@ pipeline {

//From develop branch: deployment details for develop
DEPLOYMENT_DEVELOP_CLOUD = '172.31.0.6:2376'
DEPLOYMENT_DEVELOP_SERVICE = 'kuber-dev_api'
DEPLOYMENT_DEVELOP_SERVICE = 'kuber'

// From master branch:deployment details for staging
DEPLOYMENT_STAGING_CLOUD = '172.31.0.6:2376'
DEPLOYMENT_STAGING_SERVICE = 'kuber-staging'

//When tag is pushed: deployment details for release
DEPLOYMENT_RELEASE_CLOUD = '172.31.0.7:2376'
DEPLOYMENT_RELEASE_SERVICE = 'kuber_api'
DEPLOYMENT_STAGING_CLOUD = '172.31.0.7:2376'
DEPLOYMENT_STAGING_SERVICE = 'kuber'


COMPUTED_PR = "${env.gitlabMergeRequestIid ? 'true' : ''}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Kuber can be stared easily with [docker-compose.yml](./docker-compose.yml) file.

```bash
git clone https://github.com/dquadrant/kuber.git
git checkout 2.3.1
git checkout 2.3.2
docker-compose up -d
```

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
max-size: "200k"
max-file: "10"
kuber:
image: dquadrant/kuber:${KUBER_VERSION:-2.3.1}
image: dquadrant/kuber:${KUBER_VERSION:-2.3.2}
environment:
NETWORK: ${NETWORK:- preprod}
volumes:
Expand Down
2 changes: 1 addition & 1 deletion kuber.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: kuber
version: 2.3.1.0
version: 2.3.2.0

-- A short (one-line) description of the package.
-- synopsis:
Expand Down
25 changes: 7 additions & 18 deletions kuber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,18 @@ networks:
frontend:
external: true
volumes:
ipc-testnet :
name : cardano-db-sync_node-ipc-testnet
ipc-mainnet:
name: cardano-db-sync_node-ipc
name: cardano_mainnet_ipc
ipc-preprod:
name: cardano-preprod_ipc
name: cardano_preprod_ipc
ipc-preview:
name: cardano-preview_node_ipc
name: cardano_preview_ipc
services :
testnet :
image: registry.sireto.io/kuber/api:latest-131
environment:
VIRTUAL_HOST : https://testnet.cnftregistry.io/kuber/api -> :8081/api
NETWORK: testnet
networks:
- frontend
volumes:
- ipc-testnet:/root/.cardano/testnet
mainnet :
image: dquadrant/kuber:ce4d493784da945cb6a29cb5325b3f969e3924a7
image: dquadrant/kuber:2.3.2
environment:
NETWORK: mainnet
VIRTUAL_HOST : https://cnftregistry.io/kuber/api -> :8081/api
VIRTUAL_HOST : https://mainnet.kuberide.com -> :8081
networks:
- frontend
volumes:
Expand All @@ -35,7 +24,7 @@ services :
environment:
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
NETWORK: 1
VIRTUAL_HOST : https://preprod.cnftregistry.io/kuber/api -> :8081/api
VIRTUAL_HOST : https://preprod.kuberide.com -> :8081
networks:
- frontend
volumes:
Expand All @@ -45,7 +34,7 @@ services :
environment:
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
NETWORK: 2
VIRTUAL_HOST : https://preview.cnftregistry.io/kuber/api -> :8081/api
VIRTUAL_HOST : https://preview.kuberide.com -> :8081/api
networks:
- frontend
volumes:
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "0.0.0",
"version": "2.3.2",
"scripts": {
"start": "vite --host=0.0.0.0",
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion server/kuber-server.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.4
name: kuber-server
version: 2.3.1.0
version: 2.3.2.0

-- A short (one-line) description of the package.
-- synopsis:
Expand Down

0 comments on commit 126da7d

Please sign in to comment.