Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson authored and github-actions[bot] committed Aug 18, 2023
1 parent a077b57 commit f3c90c9
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/assets/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-assets
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/carts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-cart
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/catalog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-catalog
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/checkout/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-checkout
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/orders/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-orders
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/charts/ui/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/aws-containers/retail-store-sample-ui
pullPolicy: IfNotPresent
tag: 0.4.0
tag: 0.5.0

imagePullSecrets: []
nameOverride: ""
Expand Down
2 changes: 1 addition & 1 deletion deploy/terraform/lib/images/generated.tf.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"locals": {
"published_tag": "0.4.0",
"published_tag": "0.5.0",
"published_repository": "public.ecr.aws/aws-containers"
}
}
14 changes: 7 additions & 7 deletions dist/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ services:
- ENDPOINTS_CHECKOUT=http://checkout:8080
- ENDPOINTS_ASSETS=http://assets:8080
hostname: ui
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-ui:0.5.0
restart: always
mem_limit: 256m
mem_limit: 512m
cap_drop:
- ALL
catalog:
hostname: catalog
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-catalog:0.5.0
restart: always
environment:
- GIN_MODE=release
Expand All @@ -56,7 +56,7 @@ services:
mem_limit: 128m
carts:
hostname: carts
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-cart:0.5.0
restart: always
environment:
- JAVA_OPTS=-XX:MaxRAMPercentage=75.0 -Djava.security.egd=file:/dev/urandom
Expand All @@ -76,7 +76,7 @@ services:
mem_limit: 256m
orders:
hostname: orders
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-orders:0.5.0
restart: always
environment:
- JAVA_OPTS=-XX:MaxRAMPercentage=75.0 -Djava.security.egd=file:/dev/urandom
Expand Down Expand Up @@ -104,7 +104,7 @@ services:
- MYSQL_PASSWORD=${MYSQL_PASSWORD}
mem_limit: 128m
checkout:
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-checkout:0.5.0
hostname: checkout
restart: always
read_only: true
Expand All @@ -125,7 +125,7 @@ services:
hostname: assets
environment:
- PORT=8080
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.4.0
image: public.ecr.aws/aws-containers/retail-store-sample-assets:0.5.0
restart: always
mem_limit: 64m
cap_drop:
Expand Down
22 changes: 11 additions & 11 deletions dist/kubernetes/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
name: catalog-db
data:
username: "Y2F0YWxvZw=="
password: "b0R1STdETk9oTFR3aDJrWA=="
password: "YzE5ZGVwTTRaTmg4OHBkUA=="
---
# Source: catalog/templates/configmap.yml
apiVersion: v1
Expand Down Expand Up @@ -141,7 +141,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-catalog:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-catalog:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -329,7 +329,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-ui:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-ui:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -376,7 +376,7 @@ metadata:
name: catalog-db
data:
username: "Y2F0YWxvZw=="
password: "M1VNeVBhZFRVQWYzSVl5WQ=="
password: "amJrcHh0Y3pkZHhqU21EaA=="
---
# Source: catalog/templates/configmap.yml
apiVersion: v1
Expand Down Expand Up @@ -498,7 +498,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-catalog:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-catalog:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -712,7 +712,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-cart:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-cart:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -793,7 +793,7 @@ metadata:
name: orders-db
data:
username: "b3JkZXJz"
password: "dk1vZzM2UEV4djh6aDNSSQ=="
password: "Wk5QSHgwQ1lSWTBnUWg2WQ=="
---
# Source: orders/templates/rabbitmq-secret.yaml
apiVersion: v1
Expand Down Expand Up @@ -964,7 +964,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-orders:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-orders:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -1214,7 +1214,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-checkout:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-checkout:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -1366,7 +1366,7 @@ spec:
drop:
- ALL
readOnlyRootFilesystem: false
image: "public.ecr.aws/aws-containers/retail-store-sample-assets:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-assets:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down Expand Up @@ -1500,7 +1500,7 @@ spec:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
image: "public.ecr.aws/aws-containers/retail-store-sample-ui:0.4.0"
image: "public.ecr.aws/aws-containers/retail-store-sample-ui:0.5.0"
imagePullPolicy: IfNotPresent
ports:
- name: http
Expand Down

0 comments on commit f3c90c9

Please sign in to comment.