Skip to content
This repository has been archived by the owner on Feb 5, 2021. It is now read-only.

Commit

Permalink
Update artifact versions for next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
wso2-jenkins-bot committed May 21, 2019
1 parent 0adb940 commit 6993773
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GIT_REVISION := $(shell git rev-parse --verify HEAD)
DOCKER_REPO ?= wso2cellery
DOCKER_IMAGE_TAG ?= $(GIT_REVISION)
CELLERY_ORG ?= wso2cellery
CELLERY_VERSION ?= latest
CELLERY_VERSION ?= 0.2.1

SAMPLES := pet-store hello-world hello-world-api

Expand Down
2 changes: 1 addition & 1 deletion hello-world-api/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GIT_REVISION := $(shell git rev-parse --verify HEAD)
DOCKER_REPO ?= wso2cellery
DOCKER_IMAGE_TAG ?= $(GIT_REVISION)
CELLERY_ORG ?= wso2cellery
CELLERY_VERSION ?= latest
CELLERY_VERSION ?= 0.2.1

SAMPLE := hello-world-api
CELL := hello-world-api
Expand Down
2 changes: 1 addition & 1 deletion hello-world-api/hello-world-api.bal
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import celleryio/cellery;
cellery:Component helloComponent = {
name: "hello-api",
source: {
image: "docker.io/wso2cellery/samples-hello-world-api-hello-service"
image: "docker.io/wso2cellery/samples-hello-world-api-hello-service:0.2.1"
},
ingresses: {
helloApi: <cellery:HttpApiIngress>{ port: 9090,
Expand Down
2 changes: 1 addition & 1 deletion hello-world/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GIT_REVISION := $(shell git rev-parse --verify HEAD)
DOCKER_REPO ?= wso2cellery
DOCKER_IMAGE_TAG ?= $(GIT_REVISION)
CELLERY_ORG ?= wso2cellery
CELLERY_VERSION ?= latest
CELLERY_VERSION ?= 0.2.1

SAMPLE := hello-world
CELL := hello-world
Expand Down
2 changes: 1 addition & 1 deletion hello-world/hello-world.bal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import celleryio/cellery;
cellery:Component helloComponent = {
name: "hello",
source: {
image: "wso2cellery/samples-hello-world-webapp"
image: "wso2cellery/samples-hello-world-webapp:0.2.1"
},
ingresses: {
webUI: <cellery:WebIngress> { // Web ingress will be always exposed globally.
Expand Down
2 changes: 1 addition & 1 deletion pet-store/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GIT_REVISION := $(shell git rev-parse --verify HEAD)
DOCKER_REPO ?= wso2cellery
DOCKER_IMAGE_TAG ?= $(GIT_REVISION)
CELLERY_ORG ?= wso2cellery
CELLERY_VERSION ?= latest
CELLERY_VERSION ?= 0.2.1

SAMPLE := pet-store
PET_BE_CELL := pet-be
Expand Down
8 changes: 4 additions & 4 deletions pet-store/pet-be/pet-be.bal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import celleryio/cellery;
cellery:Component ordersComponent = {
name: "orders",
source: {
image: "wso2cellery/samples-pet-store-orders"
image: "wso2cellery/samples-pet-store-orders:0.2.1"
},
ingresses: {
orders: <cellery:HttpApiIngress>{
Expand All @@ -35,7 +35,7 @@ cellery:Component ordersComponent = {
cellery:Component customersComponent = {
name: "customers",
source: {
image: "wso2cellery/samples-pet-store-customers"
image: "wso2cellery/samples-pet-store-customers:0.2.1"
},
ingresses: {
customers: <cellery:HttpApiIngress>{
Expand All @@ -49,7 +49,7 @@ cellery:Component customersComponent = {
cellery:Component catalogComponent = {
name: "catalog",
source: {
image: "wso2cellery/samples-pet-store-catalog"
image: "wso2cellery/samples-pet-store-catalog:0.2.1"
},
ingresses: {
catalog: <cellery:HttpApiIngress>{
Expand All @@ -64,7 +64,7 @@ cellery:Component catalogComponent = {
cellery:Component controllerComponent = {
name: "controller",
source: {
image: "wso2cellery/samples-pet-store-controller"
image: "wso2cellery/samples-pet-store-controller:0.2.1"
},
ingresses: {
controller: <cellery:HttpApiIngress>{
Expand Down
4 changes: 2 additions & 2 deletions pet-store/pet-fe/pet-fe.bal
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import ballerina/config;
cellery:Component portalComponent = {
name: "portal",
source: {
image: "wso2cellery/samples-pet-store-portal"
image: "wso2cellery/samples-pet-store-portal:0.2.1"
},
ingresses: {
portal: <cellery:WebIngress>{ // Web ingress will be always exposed globally.
Expand Down Expand Up @@ -51,7 +51,7 @@ cellery:Component portalComponent = {
BASE_PATH: { value: "." }
},
dependencies: {
petStoreBackend: <cellery:ImageName>{ org: "wso2cellery", name: "pet-be-cell", ver: "latest" }
petStoreBackend: <cellery:ImageName>{ org: "wso2cellery", name: "pet-be-cell", ver: "0.2.1" }
}
};

Expand Down

0 comments on commit 6993773

Please sign in to comment.