Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson authored and github-actions[bot] committed Dec 12, 2022
1 parent d5fa851 commit 5cfb0a0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,24 @@
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

apiVersion: kustomize.config.k8s.io/v1alpha1
kind: Component
images:
- name: retail-store-sample-assets
newName: public.ecr.aws/aws-containers/retail-store-sample-assets
newTag: 0.1.0
newTag: 0.2.0
- name: retail-store-sample-catalog
newName: public.ecr.aws/aws-containers/retail-store-sample-catalog
newTag: 0.1.0
newTag: 0.2.0
- name: retail-store-sample-cart
newName: public.ecr.aws/aws-containers/retail-store-sample-cart
newTag: 0.1.0
newTag: 0.2.0
- name: retail-store-sample-checkout
newName: public.ecr.aws/aws-containers/retail-store-sample-checkout
newTag: 0.1.0
newTag: 0.2.0
- name: retail-store-sample-ui
newName: public.ecr.aws/aws-containers/retail-store-sample-ui
newTag: 0.1.0
newTag: 0.2.0
- name: retail-store-sample-orders
newName: public.ecr.aws/aws-containers/retail-store-sample-orders
newTag: 0.1.0
newTag: 0.2.0
12 changes: 6 additions & 6 deletions dist/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ services:
- ENDPOINTS_CHECKOUT=http://checkout:8080
- ENDPOINTS_ASSETS=http://assets:8080
hostname: ui
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.2.0
restart: always
mem_limit: 256m
cap_drop:
- ALL

catalog:
hostname: catalog
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.2.0
restart: always
environment:
- GIN_MODE=release
Expand All @@ -60,7 +60,7 @@ services:

carts:
hostname: carts
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.2.0
restart: always
environment:
- JAVA_OPTS=-XX:MaxRAMPercentage=75.0 -Djava.security.egd=file:/dev/urandom
Expand All @@ -82,7 +82,7 @@ services:

orders:
hostname: orders
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.2.0
restart: always
environment:
- JAVA_OPTS=-XX:MaxRAMPercentage=75.0 -Djava.security.egd=file:/dev/urandom
Expand Down Expand Up @@ -112,7 +112,7 @@ services:
mem_limit: 128m

checkout:
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.2.0
hostname: checkout
restart: always
read_only: true
Expand All @@ -135,7 +135,7 @@ services:
hostname: assets
environment:
- PORT=8080
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.2.0
restart: always
mem_limit: 64m
cap_drop:
Expand Down
21 changes: 11 additions & 10 deletions dist/kubernetes/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ spec:
- envFrom:
- configMapRef:
name: assets
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -491,7 +491,7 @@ spec:
envFrom:
- configMapRef:
name: carts
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand All @@ -506,10 +506,10 @@ spec:
protocol: TCP
resources:
limits:
memory: 256Mi
memory: 512Mi
requests:
cpu: 128m
memory: 256Mi
memory: 512Mi
securityContext:
capabilities:
drop:
Expand Down Expand Up @@ -618,7 +618,7 @@ spec:
envFrom:
- configMapRef:
name: catalog
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -743,7 +743,7 @@ spec:
- envFrom:
- configMapRef:
name: checkout
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down Expand Up @@ -817,6 +817,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app.kubernetes.io/created-by: retail-store-sample
app.kubernetes.io/type: app
name: orders
namespace: orders
Expand Down Expand Up @@ -875,7 +876,7 @@ spec:
envFrom:
- configMapRef:
name: orders
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand All @@ -896,10 +897,10 @@ spec:
successThreshold: 3
resources:
limits:
memory: 256Mi
memory: 512Mi
requests:
cpu: 128m
memory: 256Mi
memory: 512Mi
securityContext:
capabilities:
drop:
Expand Down Expand Up @@ -1029,7 +1030,7 @@ spec:
envFrom:
- configMapRef:
name: ui
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.1.0
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.2.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
Expand Down

0 comments on commit 5cfb0a0

Please sign in to comment.