Skip to content

Commit

Permalink
release tag
Browse files Browse the repository at this point in the history
  • Loading branch information
akalitenya committed Nov 16, 2022
1 parent 5cc7c59 commit 78bb3d6
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 36 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Thumbs.db

# Helm
*.tgz
Chart.lock

# compiled output
/dist
Expand Down
16 changes: 5 additions & 11 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mprove/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: mprove
description: A Helm chart for Kubernetes
type: application
version: 0.0.27
appVersion: "7.1.0"
version: 0.0.28
appVersion: "8.0.0"
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Values.blockmlMainWorker.name }}
name: {{ .Values.blockmlSingle.name }}
labels:
app: {{ .Values.blockmlMainWorker.name }}
app: {{ .Values.blockmlSingle.name }}
spec:
replicas: {{ .Values.blockmlMainWorker.replicas }}
replicas: {{ .Values.blockmlSingle.replicas }}
selector:
matchLabels:
app: {{ .Values.blockmlMainWorker.name }}
app: {{ .Values.blockmlSingle.name }}
strategy:
type: Recreate
template:
metadata:
labels:
app: {{ .Values.blockmlMainWorker.name }}
app: {{ .Values.blockmlSingle.name }}
spec:
containers:
- name: {{ .Values.blockmlMainWorker.name }}
- name: {{ .Values.blockmlSingle.name }}
image: {{ .Values.blockmlCommon.image }}:{{ .Chart.AppVersion }}
command:
- sh
Expand All @@ -29,11 +29,11 @@ spec:
node dist/apps/blockml/main.js
env:
- name: BLOCKML_IS_MAIN
value: 'TRUE'
value: 'FALSE'
- name: BLOCKML_IS_WORKER
value: 'TRUE'
value: 'FALSE'
- name: BLOCKML_IS_SINGLE
value: 'FALSE'
value: 'TRUE'
envFrom:
- secretRef:
name: {{ .Values.blockmlCommon.envsSecretName }}
16 changes: 5 additions & 11 deletions mprove/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,12 @@ disk:
DISK_RABBIT_PASS: rabbitpass
DISK_RABBIT_HOST: rabbit
DISK_RABBIT_PORT: 5672
DISK_LOG_IS_COLOR: 'TRUE'
DISK_LOG_IS_JSON: 'TRUE'
DISK_LOG_RESPONSE_ERROR: 'FALSE'
DISK_LOG_RESPONSE_OK: 'FALSE'
DISK_LOG_ON_SENDER: 'FALSE'
DISK_LOG_ON_RESPONSER: 'TRUE'

blockmlMainWorker:
name: blockml-main-worker
blockmlSingle:
name: blockml-single
replicas: 1

blockmlCommon:
Expand All @@ -85,11 +83,9 @@ blockmlCommon:
BLOCKML_IS_MAIN: 'FALSE'
BLOCKML_IS_WORKER: 'FALSE'
BLOCKML_CONCURRENCY_LIMIT: 0
BLOCKML_LOG_IS_COLOR: 'TRUE'
BLOCKML_LOG_IS_JSON: 'TRUE'
BLOCKML_LOG_RESPONSE_ERROR: 'FALSE'
BLOCKML_LOG_RESPONSE_OK: 'FALSE'
BLOCKML_LOG_ON_SENDER: 'FALSE'
BLOCKML_LOG_ON_RESPONSER: 'TRUE'

backend:
name: backend
Expand Down Expand Up @@ -155,11 +151,9 @@ backendCommon:
BACKEND_SMTP_SECURE: 'TRUE'
BACKEND_SMTP_AUTH_USER: realSmtpUser
BACKEND_SMTP_AUTH_PASSWORD: realSmtpPassword
BACKEND_LOG_IS_COLOR: 'TRUE'
BACKEND_LOG_IS_JSON: 'TRUE'
BACKEND_LOG_RESPONSE_ERROR: 'FALSE'
BACKEND_LOG_RESPONSE_OK: 'FALSE'
BACKEND_LOG_ON_SENDER: 'FALSE'
BACKEND_LOG_ON_RESPONSER: 'TRUE'

dwhPostgres:
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion values-mprove-example-gitclone-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ disk:
envs:
DISK_RABBIT_PASS: replaceWith32CharString

blockmlMainWorker:
blockmlSingle:
replicas: 1

blockmlCommon:
Expand Down
2 changes: 1 addition & 1 deletion values-mprove-example-managed-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ disk:
envs:
DISK_RABBIT_PASS: replaceWith32CharString

blockmlMainWorker:
blockmlSingle:
replicas: 1

blockmlCommon:
Expand Down
2 changes: 1 addition & 1 deletion values-mprove-example-no-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ disk:
envs:
DISK_RABBIT_PASS: replaceWith32CharString

blockmlMainWorker:
blockmlSingle:
replicas: 1

blockmlCommon:
Expand Down

0 comments on commit 78bb3d6

Please sign in to comment.