Skip to content

Commit

Permalink
release/v0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bourgeoisor committed Jun 8, 2022
1 parent 401cc5a commit 8f85443
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 25 deletions.
2 changes: 1 addition & 1 deletion kubernetes-manifests/accounts-db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
serviceAccountName: default
containers:
- name: accounts-db
image: gcr.io/bank-of-anthos-ci/accounts-db:v0.5.4
image: gcr.io/bank-of-anthos-ci/accounts-db:v0.5.5
envFrom:
- configMapRef:
name: environment-config
Expand Down
14 changes: 10 additions & 4 deletions kubernetes-manifests/balance-reader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: balancereader
image: gcr.io/bank-of-anthos-ci/balancereader:v0.5.4
image: gcr.io/bank-of-anthos-ci/balancereader:v0.5.5
volumeMounts:
- name: publickey
mountPath: "/root/.ssh"
readOnly: true
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
# toggle Cloud Trace export
Expand All @@ -51,7 +51,7 @@ spec:
value: "1000000"
# tell Java to obey container memory limits
- name: JVM_OPTS
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms128m -Xmx256m"
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms256m -Xmx512m"
# Valid levels are debug, info, warn, error, fatal.
# If no valid level is set, will default to info.
- name: LOG_LEVEL
Expand All @@ -71,7 +71,7 @@ spec:
cpu: 100m
memory: 256Mi
limits:
cpu: 250m
cpu: 500m
memory: 512Mi
readinessProbe:
httpGet:
Expand All @@ -87,6 +87,12 @@ spec:
initialDelaySeconds: 120
periodSeconds: 5
timeoutSeconds: 10
startupProbe:
httpGet:
path: /healthy
port: 8080
failureThreshold: 30
periodSeconds: 10
volumes:
- name: publickey
secret:
Expand Down
4 changes: 2 additions & 2 deletions kubernetes-manifests/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ metadata:
data:
USE_DEMO_DATA: "True"
DEMO_LOGIN_USERNAME: "testuser"
# All demo user accounts are hardcoded to use the login password 'password'
DEMO_LOGIN_PASSWORD: "password"
# All demo user accounts are hardcoded to use the login password 'bankofanthos'
DEMO_LOGIN_PASSWORD: "bankofanthos"
# [END gke_boa_kubernetes_manifests_config_configmap_demo_data_config]
4 changes: 2 additions & 2 deletions kubernetes-manifests/contacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: contacts
image: gcr.io/bank-of-anthos-ci/contacts:v0.5.4
image: gcr.io/bank-of-anthos-ci/contacts:v0.5.5
volumeMounts:
- name: publickey
mountPath: "/root/.ssh"
readOnly: true
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
- name: ENABLE_TRACING
Expand Down
4 changes: 2 additions & 2 deletions kubernetes-manifests/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: front
image: gcr.io/bank-of-anthos-ci/frontend:v0.5.4
image: gcr.io/bank-of-anthos-ci/frontend:v0.5.5
volumeMounts:
- name: publickey
mountPath: "/root/.ssh"
readOnly: true
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
- name: ENABLE_TRACING
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-manifests/ledger-db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
serviceAccountName: default
containers:
- name: postgres
image: gcr.io/bank-of-anthos-ci/ledger-db:v0.5.4
image: gcr.io/bank-of-anthos-ci/ledger-db:v0.5.5
ports:
- containerPort: 5432
envFrom:
Expand Down
14 changes: 10 additions & 4 deletions kubernetes-manifests/ledger-writer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: ledgerwriter
image: gcr.io/bank-of-anthos-ci/ledgerwriter:v0.5.4
image: gcr.io/bank-of-anthos-ci/ledgerwriter:v0.5.5
volumeMounts:
- name: publickey
mountPath: "/root/.ssh"
readOnly: true
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
- name: ENABLE_TRACING
Expand All @@ -46,7 +46,7 @@ spec:
value: "true"
# tell Java to obey container memory limits
- name: JVM_OPTS
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms128m -Xmx256m"
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms256m -Xmx512m"
# service level override of log level
- name: LOG_LEVEL
value: "info"
Expand All @@ -67,7 +67,7 @@ spec:
cpu: 100m
memory: 256Mi
limits:
cpu: 250m
cpu: 500m
memory: 512Mi
readinessProbe:
httpGet:
Expand All @@ -76,6 +76,12 @@ spec:
initialDelaySeconds: 60
periodSeconds: 5
timeoutSeconds: 10
startupProbe:
httpGet:
path: /ready
port: 8080
failureThreshold: 30
periodSeconds: 10
volumes:
- name: publickey
secret:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-manifests/loadgenerator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
restartPolicy: Always
containers:
- name: loadgenerator
image: gcr.io/bank-of-anthos-ci/loadgenerator:v0.5.4
image: gcr.io/bank-of-anthos-ci/loadgenerator:v0.5.5
env:
- name: FRONTEND_ADDR
value: "frontend:80"
Expand Down
14 changes: 10 additions & 4 deletions kubernetes-manifests/transaction-history.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: transactionhistory
image: gcr.io/bank-of-anthos-ci/transactionhistory:v0.5.4
image: gcr.io/bank-of-anthos-ci/transactionhistory:v0.5.5
volumeMounts:
- name: publickey
mountPath: "/root/.ssh"
readOnly: true
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
- name: ENABLE_TRACING
Expand All @@ -54,7 +54,7 @@ spec:
value: "100"
# tell Java to obey container memory limits
- name: JVM_OPTS
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms128m -Xmx256m"
value: "-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Xms256m -Xmx512m"
#- name: EXTRA_LATENCY_MILLIS
# value: "5000"
# Valid levels are debug, info, warn, error, fatal.
Expand All @@ -76,7 +76,7 @@ spec:
cpu: 100m
memory: 256Mi
limits:
cpu: 250m
cpu: 500m
memory: 512Mi
readinessProbe:
httpGet:
Expand All @@ -92,6 +92,12 @@ spec:
initialDelaySeconds: 120
periodSeconds: 5
timeoutSeconds: 10
startupProbe:
httpGet:
path: /healthy
port: 8080
failureThreshold: 30
periodSeconds: 10
volumes:
- name: publickey
secret:
Expand Down
8 changes: 4 additions & 4 deletions kubernetes-manifests/userservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spec:
terminationGracePeriodSeconds: 5
containers:
- name: userservice
image: gcr.io/bank-of-anthos-ci/userservice:v0.5.4
image: gcr.io/bank-of-anthos-ci/userservice:v0.5.5
volumeMounts:
- name: keys
mountPath: "/root/.ssh"
Expand All @@ -40,7 +40,7 @@ spec:
containerPort: 8080
env:
- name: VERSION
value: "v0.5.4"
value: "v0.5.5"
- name: PORT
value: "8080"
- name: ENABLE_TRACING
Expand All @@ -66,10 +66,10 @@ spec:
timeoutSeconds: 10
resources:
requests:
cpu: 100m
cpu: 200m
memory: 64Mi
limits:
cpu: 250m
cpu: 500m
memory: 256Mi
volumes:
- name: keys
Expand Down

0 comments on commit 8f85443

Please sign in to comment.