Skip to content

Commit 4fc1502

Browse files
authored
Merge pull request #93 from OWASP/orderDetails
Implement Order details page
2 parents ac4a892 + b5b197a commit 4fc1502

File tree

16 files changed

+22336
-61
lines changed

16 files changed

+22336
-61
lines changed

deploy/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: helm
23+
appVersion: develop

deploy/helm/templates/identity/config.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ data:
1313
DB_NAME: crapi
1414
DB_PORT: "5432"
1515
APP_NAME: "crapi-identity"
16-
BLOCK_SHELL_INJECTION: "true"
16+
BLOCK_SHELL_INJECTION: "{{ .Values.block_shell_injection }}"
1717
MAILHOG_HOST: mailhog
1818
MAILHOG_PORT: "1025"
1919
MAILHOG_DOMAIN: "example.com"
@@ -24,4 +24,5 @@ data:
2424
SMTP_FROM: "[email protected]"
2525
SMTP_AUTH: "true"
2626
SMTP_STARTTLS: "true"
27-
SERVER_PORT: "{{ .Values.identity.port }}"
27+
SERVER_PORT: "{{ .Values.identity.port }}"
28+
ENABLE_LOG4J: "{{ .Values.enable_log4j }}"

deploy/helm/values.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
44
replicaCount: 1
5-
imagePullPolicy: Never
5+
imagePullPolicy: Always
6+
7+
enable_log4j: false
8+
block_shell_injection: true
9+
610
web:
711
image: crapi/crapi-web
8-
port: 8888
12+
port: 8880
913
identity:
1014
image: crapi/crapi-identity
1115
port: 8080
@@ -19,7 +23,7 @@ mailhog:
1923
image: crapi/mailhog
2024
mongodb:
2125
image: mongo
22-
version: 4.4
26+
version: 5.0
2327
postgresdb:
2428
image: postgres
25-
version: 14
29+
version: 14

0 commit comments

Comments
 (0)