Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/images_ss/Project-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/alb1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/alb2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/alb3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/architecture.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/logging6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/screenshot1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/screenshot3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images_ss/screenshot4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
109 changes: 109 additions & 0 deletions helm-values/cart-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# Default values for carts.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: public.ecr.aws/aws-containers/retail-store-sample-cart
pullPolicy: IfNotPresent
tag:

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: false
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: "cart"

podAnnotations: {}

podSecurityContext:
fsGroup: 1000

securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000

service:
type: ClusterIP
port: 80

resources:
limits:
memory: 512Mi
requests:
cpu: 256m
memory: 512Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

nodeSelector: {}

tolerations: []

affinity: {}

topologySpreadConstraints: []

metrics:
enabled: true
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
prometheus.io/path: "/actuator/prometheus"

configMap:
create: true
name:

app:
persistence:
provider: dynamodb
dynamodb:
tableName: carts
createTable: false

dynamodb:
create: false

image:
repository: public.ecr.aws/aws-dynamodb-local/aws-dynamodb-local
pullPolicy: IfNotPresent
tag: "1.25.1"

service:
type: ClusterIP
port: 8000

podAnnotations: {}

nodeSelector: {}

tolerations: []

affinity: {}

opentelemetry:
enabled: false
instrumentation: ""

podDisruptionBudget:
enabled: false
minAvailable: 2
maxUnavailable: 1
127 changes: 127 additions & 0 deletions helm-values/catalog-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
# Default values for catalog.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: public.ecr.aws/aws-containers/retail-store-sample-catalog
pullPolicy: IfNotPresent
tag:

imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}

podSecurityContext:
fsGroup: 1000

securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000

service:
type: ClusterIP
port: 80

resources:
limits:
memory: 256Mi
requests:
cpu: 256m
memory: 256Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

nodeSelector: {}

tolerations: []

affinity: {}

topologySpreadConstraints: []

metrics:
enabled: true
podAnnotations:
prometheus.io/scrape: "true"
prometheus.io/port: "8080"
prometheus.io/path: "/metrics"

configMap:
create: true
name:

app:
persistence:
provider: mysql
endpoint: ""
database: "catalog"

secret:
create: true
name: catalog-db
username: catalog
password: ""

mysql:
create: true

image:
repository: public.ecr.aws/docker/library/mysql
pullPolicy: IfNotPresent
tag: "8.0"

service:
type: ClusterIP
port: 3306

podAnnotations: {}

nodeSelector: {}

tolerations: []

affinity: {}

persistentVolume:
enabled: true
annotations: {}
labels: {}
accessModes:
- ReadWriteOnce
size: 10Gi
storageClass: "ebs-csi-default-sc"

securityGroups:
create: false
securityGroupIds: []

opentelemetry:
enabled: false
instrumentation: ""

podDisruptionBudget:
enabled: false
minAvailable: 2
maxUnavailable: 1
116 changes: 116 additions & 0 deletions helm-values/checkout-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
# Default values for checkout.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
repository: public.ecr.aws/aws-containers/retail-store-sample-checkout
pullPolicy: IfNotPresent
tag:

imagePullSecrets: []
nameOverride: ''
fullnameOverride: ''

serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ''

podAnnotations: {}

podSecurityContext:
fsGroup: 1000

securityContext:
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000

service:
type: ClusterIP
port: 80

resources:
limits:
memory: 256Mi
requests:
cpu: 128m
memory: 256Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

nodeSelector: {}

tolerations: []

affinity: {}

topologySpreadConstraints: []

metrics:
enabled: true
podAnnotations:
prometheus.io/scrape: 'true'
prometheus.io/port: '8080'
prometheus.io/path: '/metrics'

configMap:
create: true
name:

app:
persistence:
provider: 'redis'
redis:
endpoint: ''

endpoints:
orders: 'http://orders.orders.svc.cluster.local:80'

redis:
create: true

image:
repository: redis
pullPolicy: IfNotPresent
tag: '6.0-alpine'

service:
type: ClusterIP
port: 6379

podAnnotations: {}

nodeSelector: {}

tolerations: []

affinity: {}

securityGroups:
create: false

securityGroupIds: []

opentelemetry:
enabled: false
instrumentation: ''

podDisruptionBudget:
enabled: false
minAvailable: 2
maxUnavailable: 1
Loading