Compare commits
4 Commits
6b84adbed2
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 79c629162f | |||
| ed53bc8658 | |||
| e7e3cb8c23 | |||
| da3d72422a |
@@ -15,10 +15,10 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 1.0.2
|
version: 1.0.3
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: "1.0.2"
|
appVersion: "1.0.3"
|
||||||
|
|||||||
@@ -27,6 +27,8 @@ spec:
|
|||||||
value: {{ required "s3 endpoint!" .Values.s3.endpointUrl | quote }}
|
value: {{ required "s3 endpoint!" .Values.s3.endpointUrl | quote }}
|
||||||
- name: S3_PRIVATE_BUCKET
|
- name: S3_PRIVATE_BUCKET
|
||||||
value: {{ required "privateBucket!" .Values.s3.privateBucket | quote }}
|
value: {{ required "privateBucket!" .Values.s3.privateBucket | quote }}
|
||||||
|
- name: S3_PUBLIC_BUCKET
|
||||||
|
value: {{ required "publicBucket!" .Values.s3.publicBucket | quote }}
|
||||||
- name: S3_ACCESS_KEY
|
- name: S3_ACCESS_KEY
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
@@ -37,8 +39,15 @@ spec:
|
|||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: {{ .Values.s3.secretName | quote }}
|
name: {{ .Values.s3.secretName | quote }}
|
||||||
key: {{ required "secret-key-ref!" .Values.s3.secretKeyRef | quote }}
|
key: {{ required "secret-key-ref!" .Values.s3.secretKeyRef | quote }}
|
||||||
|
- name: SUBMIT_CALLBACK_SECRET
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ .Values.tester.secretName | quote }}
|
||||||
|
key: {{ required "secret-key-ref!" .Values.tester.secretKeyRef | quote }}
|
||||||
- name: TESTING_MODULE_URL
|
- name: TESTING_MODULE_URL
|
||||||
value: http://{{ .Release.Name }}-testing-module-gateway-service:8080/
|
value: http://{{ .Release.Name }}-testing-module-gateway-service/api/tester/submit
|
||||||
|
- name: SERVICE_BASE_URL
|
||||||
|
value: http://{{ .Release.Name }}-backend-service
|
||||||
- name: PG_URI
|
- name: PG_URI
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
|
|||||||
@@ -19,19 +19,19 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Release.Name }}-testing-module-gateway
|
- name: {{ .Release.Name }}-testing-module-gateway
|
||||||
image: git.nullptr.top/liquidcode/liquidcode-tester-gateway:latest
|
image: git.nullptr.top/liquidcode/liquidcode-tester-gateway-roman:latest
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
env:
|
env:
|
||||||
- name: Workers__Cpp
|
- name: Workers__Cpp
|
||||||
value: http://{{ .Release.Name }}-testing-module-worker-service:8080
|
value: http://{{ .Release.Name }}-testing-module-worker-service
|
||||||
- name: Workers__Java
|
- name: Workers__Java
|
||||||
value: http://{{ .Release.Name }}-testing-module-worker-service:8080
|
value: http://{{ .Release.Name }}-testing-module-worker-service
|
||||||
- name: Workers__Kotlin
|
- name: Workers__Kotlin
|
||||||
value: http://{{ .Release.Name }}-testing-module-worker-service:8080
|
value: http://{{ .Release.Name }}-testing-module-worker-service
|
||||||
- name: Workers__CSharp
|
- name: Workers__CSharp
|
||||||
value: http://{{ .Release.Name }}-testing-module-worker-service:8080
|
value: http://{{ .Release.Name }}-testing-module-worker-service
|
||||||
- name: Workers__Python
|
- name: Workers__Python
|
||||||
value: http://{{ .Release.Name }}-testing-module-worker-service:8080
|
value: http://{{ .Release.Name }}-testing-module-worker-service
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -19,8 +19,10 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Release.Name }}-testing-module-worker
|
- name: {{ .Release.Name }}-testing-module-worker
|
||||||
image: git.nullptr.top/liquidcode/liquidcode-tester-worker:latest
|
image: git.nullptr.top/liquidcode/liquidcode-tester-worker-roman:latest
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
|
securityContext:
|
||||||
|
privileged: true
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ spec:
|
|||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
port: 8080
|
port: 80
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -9,6 +9,6 @@ spec:
|
|||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
port: 8080
|
port: 80
|
||||||
targetPort: 8080
|
targetPort: 8080
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|||||||
@@ -26,3 +26,13 @@ spec:
|
|||||||
name: {{ .Release.Name }}-frontend-service
|
name: {{ .Release.Name }}-frontend-service
|
||||||
port:
|
port:
|
||||||
number: 80
|
number: 80
|
||||||
|
- host: tester.liquidcode.ru
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: {{ .Release.Name }}-testing-module-gateway-service
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
|
|||||||
@@ -4,12 +4,16 @@ s3:
|
|||||||
accessKeyRef: ACCESS_KEY_ID
|
accessKeyRef: ACCESS_KEY_ID
|
||||||
secretKeyRef: ACCESS_SECRET_KEY
|
secretKeyRef: ACCESS_SECRET_KEY
|
||||||
privateBucket: liquid-code
|
privateBucket: liquid-code
|
||||||
|
publicBucket: liquid-code-public
|
||||||
|
tester:
|
||||||
|
secretName: tester-callback
|
||||||
|
secretKeyRef: SUBMIT_CALLBACK_SECRET
|
||||||
jwt:
|
jwt:
|
||||||
secretName: jwt-secrets
|
secretName: jwt-secrets
|
||||||
database:
|
database:
|
||||||
secretName: liquid-db-app
|
secretName: liquid-db-app
|
||||||
migrateDb: true
|
migrateDb: true
|
||||||
dropDb: true
|
dropDb: false
|
||||||
frontend:
|
frontend:
|
||||||
enable: true
|
enable: true
|
||||||
testingModule:
|
testingModule:
|
||||||
|
|||||||
Reference in New Issue
Block a user