Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a9033d9455 |
109
.gitlab-ci.yml
109
.gitlab-ci.yml
@ -1,109 +0,0 @@
|
||||
stages:
|
||||
- lint
|
||||
- build
|
||||
- deploy
|
||||
- release
|
||||
|
||||
default:
|
||||
image:
|
||||
name: "alpine/k8s:1.26.3"
|
||||
|
||||
variables:
|
||||
PIPELINE:
|
||||
description: "Defines which Path of the Pipeline"
|
||||
value: "default"
|
||||
options:
|
||||
- release
|
||||
- default
|
||||
- custom
|
||||
|
||||
workflow:
|
||||
name: "Pipeline for Merge Request: $merge_request_event"
|
||||
rules:
|
||||
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
||||
variables:
|
||||
PIPELINE: "release"
|
||||
- if: $CI_COMMIT_REF_NAME =~ /release/
|
||||
variables:
|
||||
PIPELINE: "release"
|
||||
- if: $PIPELINE == "custom"
|
||||
- if: $CI_COMMIT_TAG
|
||||
when: never
|
||||
- if: $CI_PIPELINE_SOURCE == "push"
|
||||
when: never
|
||||
- if: "$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS"
|
||||
when: never
|
||||
|
||||
Helm Lint:
|
||||
stage: lint
|
||||
image:
|
||||
name: alpine/helm:3.11.1
|
||||
entrypoint: ["/bin/sh", "-c"]
|
||||
script:
|
||||
- helm lint .
|
||||
|
||||
Helm Template:
|
||||
stage: lint
|
||||
image:
|
||||
name: alpine/helm:3.11.1
|
||||
entrypoint: ["/bin/sh", "-c"]
|
||||
script:
|
||||
- echo "Templating for Answerfile Container Upload"
|
||||
- helm template .
|
||||
|
||||
Kubescore:
|
||||
stage: lint
|
||||
image: zegl/kube-score:latest
|
||||
script:
|
||||
- echo "Scoring the Chart YAML"
|
||||
- kube-score score Chart.yaml
|
||||
|
||||
Nexus custom Upload:
|
||||
stage: release
|
||||
needs:
|
||||
- Helm Template
|
||||
- Helm Lint
|
||||
rules:
|
||||
- if: $PIPELINE == "custom"
|
||||
image: registry.knecon.com/knecon/devops/build-image:latest
|
||||
script:
|
||||
- VERSION=$(cat Chart.yaml | grep "^version:" | sed 's/^version:\s\(.*\)$/\1/g')
|
||||
- uploadFile=$( helm package . | awk 'NF>1{print q $NF}' )
|
||||
- curl -s -u "${CI_NEXUS_USER}:${CI_NEXUS_PASSWORD}" "${CI_NEXUS_ADDRESS}:443/repository/red-dev/" --upload-file $uploadFile
|
||||
|
||||
Nexus Upload:
|
||||
stage: release
|
||||
needs:
|
||||
- Helm Template
|
||||
- Helm Lint
|
||||
rules:
|
||||
- if: $PIPELINE == "release"
|
||||
image: registry.knecon.com/knecon/devops/build-image:latest
|
||||
script:
|
||||
- VERSION=$(cat Chart.yaml | grep "^version:" | sed 's/^version:\s\(.*\)$/\1/g')
|
||||
- uploadFile=$( helm package . | awk 'NF>1{print q $NF}' )
|
||||
- curl -s -u "${CI_NEXUS_USER}:${CI_NEXUS_PASSWORD}" "${CI_NEXUS_ADDRESS}:443/repository/red-dev/" --upload-file $uploadFile
|
||||
- echo "FILE=$(echo $uploadFile)" >> variables.env
|
||||
- echo "VERSION=$(echo $VERSION)" >> variables.env
|
||||
artifacts:
|
||||
reports:
|
||||
dotenv: variables.env
|
||||
|
||||
Helm-pre-release:
|
||||
stage: release
|
||||
rules:
|
||||
- if: $PIPELINE == "release"
|
||||
needs:
|
||||
- job: Nexus Upload
|
||||
artifacts: true
|
||||
image: registry.gitlab.com/gitlab-org/release-cli:latest
|
||||
script:
|
||||
- echo "Releasing version $VERSION"
|
||||
release:
|
||||
tag_name: '$VERSION'
|
||||
description: '$VERSION'
|
||||
ref: '$CI_COMMIT_SHA'
|
||||
assets:
|
||||
links:
|
||||
- name: '$FILE'
|
||||
url: '${CI_NEXUS_ADDRESS}/repository/red-dev/$FILE'
|
||||
23
.helmignore
Normal file
23
.helmignore
Normal file
@ -0,0 +1,23 @@
|
||||
# Patterns to ignore when building packages.
|
||||
# This supports shell glob matching, relative path matching, and
|
||||
# negation (prefixed with !). Only one pattern per line.
|
||||
.DS_Store
|
||||
# Common VCS dirs
|
||||
.git/
|
||||
.gitignore
|
||||
.bzr/
|
||||
.bzrignore
|
||||
.hg/
|
||||
.hgignore
|
||||
.svn/
|
||||
# Common backup files
|
||||
*.swp
|
||||
*.bak
|
||||
*.tmp
|
||||
*~
|
||||
# Various IDEs
|
||||
.project
|
||||
.idea/
|
||||
*.tmproj
|
||||
# Ignore answer files.
|
||||
answers-*
|
||||
@ -1,6 +0,0 @@
|
||||
dependencies:
|
||||
- name: mailpit
|
||||
repository: https://jouve.github.io/charts
|
||||
version: 0.18.1
|
||||
digest: sha256:b98d7b2240c5db92c98e7a05079ef2c0d8522a847cdf4a4cdd25d6c0e02e5f30
|
||||
generated: "2024-07-01T15:47:17.121913226+02:00"
|
||||
19
Chart.yaml
19
Chart.yaml
@ -1,20 +1,13 @@
|
||||
name: testsuite
|
||||
apiVersion: v2
|
||||
version: 4.0.1-0
|
||||
appVersion: 4.0.0-110
|
||||
version: 3.4.45
|
||||
appVersion: 3.4.45
|
||||
description: The one and only gin-testsuite
|
||||
home: https://knecon.com
|
||||
home: https://instantli.com
|
||||
icon: https://instantli.com/wp-content/uploads/2018/11/testsuite.png
|
||||
sources:
|
||||
- https://gitlab.knecon.com
|
||||
- https://git.iqser.com
|
||||
maintainers:
|
||||
- name: Lena Maldacker
|
||||
email: lena.maldacker@knecon.com
|
||||
- name: Rosario Allegro
|
||||
email: rosario.allegro@knecon.com
|
||||
dependencies:
|
||||
- name: mailpit
|
||||
version: ~0.18.1
|
||||
repository: https://jouve.github.io/charts
|
||||
condition: mailpit.enabled
|
||||
- name: lmaldacker
|
||||
email: lena.maldacker@iqser.com
|
||||
engine: gotpl
|
||||
|
||||
@ -13,7 +13,7 @@ As of version 5.0, this chart uses Prometheus 2.1. This version of prometheus in
|
||||
Assuming you have an existing release of the prometheus chart, named `prometheus-old`. In order to update to prometheus 2.1 while keeping your old data do the following:
|
||||
|
||||
1. Update the `prometheus-old` release. Disable scraping on every component besides the prometheus server, similar to the configuration below:
|
||||
|
||||
|
||||
```
|
||||
alertmanager:
|
||||
enabled: false
|
||||
|
||||
@ -1,4 +0,0 @@
|
||||
global:
|
||||
imageRegistry: "nexus.knecon.com:5001"
|
||||
imagePullSecrets:
|
||||
- knecon
|
||||
Binary file not shown.
@ -1,4 +1,3 @@
|
||||
{{- if not .Values.global.testsuite_ui.enabled }}
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
metadata:
|
||||
@ -29,7 +28,7 @@ spec:
|
||||
imagePullPolicy: {{ .Values.global.imagePullPolicy }}
|
||||
env:
|
||||
- name: GATEWAY_HOST
|
||||
value: "persistence-service-v1"
|
||||
value: "redaction-gateway-v1"
|
||||
- name: GATEWAY_PORT
|
||||
value: {{ .Values.basic.gatewayPort | quote }}
|
||||
- name: AUTH_HOST
|
||||
@ -48,50 +47,16 @@ spec:
|
||||
value: {{ .Values.basic.runVersion | quote }}
|
||||
- name: RUN_CONTROLLER
|
||||
value: {{ .Values.basic.runController | quote }}
|
||||
- name: GATEWAY_PORT
|
||||
value: {{ .Values.basic.gatewayPort | quote }}
|
||||
- name: RUN_DEBUG_MODE
|
||||
value: {{ .Values.basic.runDebugMode | quote }}
|
||||
- name: REALM_1
|
||||
value: {{ .Values.basic.realms.first.realm | quote }}
|
||||
- name: REALM_EMAIL_1
|
||||
value: {{ .Values.basic.realms.first.email | quote }}
|
||||
- name: REALM_PASSWORD_1
|
||||
{{- if .Values.basic.realms.first.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.basic.realms.first.existingSecret.secretName }}
|
||||
key: {{ .Values.basic.realms.first.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.basic.realms.first.password | quote }}
|
||||
{{- end }}
|
||||
- name: REALM_2
|
||||
value: {{ .Values.basic.realms.second.realm | quote }}
|
||||
- name: REALM_EMAIL_2
|
||||
value: {{ .Values.basic.realms.second.email | quote }}
|
||||
- name: REALM_PASSWORD_2
|
||||
{{- if .Values.basic.realms.second.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.basic.realms.second.existingSecret.secretName }}
|
||||
key: {{ .Values.basic.realms.second.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.basic.realms.second.password | quote }}
|
||||
{{- end }}
|
||||
- name: NEXTCLOUD_USERNAME
|
||||
value: {{ .Values.nextcloud.username | quote }}
|
||||
- name: NEXTCLOUD_PASSWORD
|
||||
value: {{ .Values.nextcloud.password | quote }}
|
||||
- name: NEXTCLOUD_URL
|
||||
value: {{ .Values.nextcloud.url | quote }}
|
||||
- name: NEXUS_USER
|
||||
value: {{ .Values.nexus.user | quote }}
|
||||
- name: NEXUS_PW
|
||||
value: {{ .Values.nexus.pw | quote }}
|
||||
- name: NEXUS_ADDRESS
|
||||
value: {{ .Values.nexus.address | quote }}
|
||||
- name: NEXUS_REPOSITORY
|
||||
value: {{ .Values.nexus.repository | quote }}
|
||||
- name: NEXUS_GROUP
|
||||
value: {{ .Values.nexus.group | quote }}
|
||||
- name: CONTENT_PROCESSING_TIMEOUT
|
||||
value: "10"
|
||||
- name: WARMUP_WAIT_TIME
|
||||
@ -108,33 +73,6 @@ spec:
|
||||
value: {{ .Values.test.config.loadtest.rps | quote }}
|
||||
- name: LOADTEST_DURATION
|
||||
value: {{ .Values.test.config.loadtest.duration | quote }}
|
||||
- name: DEBUG_FILE
|
||||
value: {{ .Values.test.config.debug.file | quote }}
|
||||
- name: DEBUG_DOSSIER
|
||||
value: {{ .Values.test.config.debug.dossier | quote }}
|
||||
- name: INFRA_USER
|
||||
value: {{ .Values.test.config.infratest.user | quote }}
|
||||
- name: INFRA_PASSWORD
|
||||
{{- if .Values.test.config.infratest.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.test.config.infratest.existingSecret.secretName }}
|
||||
key: {{ .Values.test.config.infratest.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.test.config.infratest.password | quote }}
|
||||
{{- end }}
|
||||
- name: INFRA_USERS
|
||||
value: {{ .Values.test.config.infratest.users | quote }}
|
||||
- name: INFRA_ITERATIONS
|
||||
value: {{ .Values.test.config.infratest.iteratons | quote }}
|
||||
- name: INFRA_DURATION_IN_MIN
|
||||
value: {{ .Values.test.config.infratest.duration | quote }}
|
||||
- name: RUN_CLEANUP_AFTER_PERF
|
||||
value: {{ .Values.test.config.performancetest.run_cleanup | quote }}
|
||||
- name: SLEEP_BEFORE_CHECKING_200_FILES_MINUTES
|
||||
value: {{ .Values.test.config.performancetest.wait_time_200_files | quote }}
|
||||
- name: CHECK_TIMEOUT_200_FILES_MINUTES
|
||||
value: {{ .Values.test.config.performancetest.processing_timeout_200_files | quote }}
|
||||
- name: SIGNATURE
|
||||
value: {{ .Values.signature | quote }}
|
||||
- name: SIGNATURE_PW
|
||||
@ -153,20 +91,13 @@ spec:
|
||||
value: {{ .Values.test.config.stats | quote }}
|
||||
- name: ENABLE_METRICS
|
||||
value: {{ .Values.test.metrics.enabled | quote }}
|
||||
- name: UI_PORT
|
||||
value: {{ .Values.basic.uiPort | quote }}
|
||||
- name: UI_HOST
|
||||
value: {{ .Values.basic.uiHost | quote }}
|
||||
- name: RUN_LOCALLY
|
||||
value: {{ .Values.basic.runLocally | quote }}
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2000m"
|
||||
memory: "8192Mi"
|
||||
memory: "4096Mi"
|
||||
requests:
|
||||
cpu: "500m"
|
||||
memory: "4096Mi"
|
||||
{{- if and (.Values.dvc) (.Values.dvc.sshKey) }}
|
||||
memory: "2048Mi"
|
||||
volumeMounts:
|
||||
- mountPath: /keys
|
||||
name: ssh-keys-dvc
|
||||
@ -177,5 +108,3 @@ spec:
|
||||
secret:
|
||||
defaultMode: 0400
|
||||
secretName: ssh-keys-dvc
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
@ -1,176 +0,0 @@
|
||||
{{- if .Values.global.testsuite_ui.enabled }}
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
metadata:
|
||||
name: testsuite
|
||||
spec:
|
||||
backoffLimit: 0
|
||||
completions: 1
|
||||
parallelism: 1
|
||||
template:
|
||||
metadata:
|
||||
annotations:
|
||||
prometheus.io/scrape: "true"
|
||||
prometheus.io/port: "8080"
|
||||
prometheus.io/path: "/metrics"
|
||||
spec:
|
||||
{{- if .Values.global.imagePullSecrets }}
|
||||
imagePullSecrets:
|
||||
{{- range .Values.global.imagePullSecrets }}
|
||||
- name: {{ . }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
restartPolicy: Never
|
||||
containers:
|
||||
- name: testsuite
|
||||
image: "{{ .Values.global.imageRegistry }}/red/testsuite-ui:{{ .Values.global.testsuite_ui.version }}"
|
||||
imagePullPolicy: {{ .Values.global.imagePullPolicy }}
|
||||
env:
|
||||
- name: GATEWAY_HOST
|
||||
value: "persistence-service-v1"
|
||||
- name: GATEWAY_PORT
|
||||
value: {{ .Values.basic.gatewayPort | quote }}
|
||||
- name: AUTH_HOST
|
||||
{{- if .Values.basic.keycloakDynamicUrl }}
|
||||
value: "keycloak"
|
||||
{{- else }}
|
||||
value: {{ .Values.basic.keycloakURL | quote }}
|
||||
{{- end }}
|
||||
- name: AUTH_PORT
|
||||
value: {{ .Values.basic.keycloakPort | quote }}
|
||||
- name: TEST_DOC_COUNT
|
||||
value: "19"
|
||||
- name: RUN_LOCALLY
|
||||
value: {{ .Values.basic.runLocally | quote }}
|
||||
- name: RUN_VERSION
|
||||
value: {{ .Values.basic.runVersion | quote }}
|
||||
- name: RUN_CONTROLLER
|
||||
value: {{ .Values.basic.runController | quote }}
|
||||
- name: RUN_DEBUG_MODE
|
||||
value: {{ .Values.basic.runDebugMode | quote }}
|
||||
- name: REALM_1
|
||||
value: {{ .Values.basic.realms.first.realm | quote }}
|
||||
- name: REALM_EMAIL_1
|
||||
value: {{ .Values.basic.realms.first.email | quote }}
|
||||
- name: REALM_PASSWORD_1
|
||||
{{- if .Values.basic.realms.first.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.basic.realms.first.existingSecret.secretName }}
|
||||
key: {{ .Values.basic.realms.first.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.basic.realms.first.password | quote }}
|
||||
{{- end }}
|
||||
- name: REALM_2
|
||||
value: {{ .Values.basic.realms.second.realm | quote }}
|
||||
- name: REALM_EMAIL_2
|
||||
value: {{ .Values.basic.realms.second.email | quote }}
|
||||
- name: REALM_PASSWORD_2
|
||||
{{- if .Values.basic.realms.second.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.basic.realms.second.existingSecret.secretName }}
|
||||
key: {{ .Values.basic.realms.second.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.basic.realms.second.password | quote }}
|
||||
{{- end }}
|
||||
- name: NEXTCLOUD_USERNAME
|
||||
value: {{ .Values.nextcloud.username | quote }}
|
||||
- name: NEXTCLOUD_PASSWORD
|
||||
value: {{ .Values.nextcloud.password | quote }}
|
||||
- name: NEXTCLOUD_URL
|
||||
value: {{ .Values.nextcloud.url | quote }}
|
||||
- name: NEXUS_USER
|
||||
value: {{ .Values.nexus.user | quote }}
|
||||
- name: NEXUS_PW
|
||||
value: {{ .Values.nexus.pw | quote }}
|
||||
- name: NEXUS_ADDRESS
|
||||
value: {{ .Values.nexus.address | quote }}
|
||||
- name: NEXUS_REPOSITORY
|
||||
value: {{ .Values.nexus.repository | quote }}
|
||||
- name: NEXUS_GROUP
|
||||
value: {{ .Values.nexus.group | quote }}
|
||||
- name: CONTENT_PROCESSING_TIMEOUT
|
||||
value: "10"
|
||||
- name: WARMUP_WAIT_TIME
|
||||
value: {{ .Values.test.config.warmup_wait_time | quote }}
|
||||
- name: DISCOVERY_RETRIES
|
||||
value: {{ .Values.test.config.discovery.retries | quote }}
|
||||
- name: DISCOVERY_TIMEOUT
|
||||
value: {{ .Values.test.config.discovery.timeout | quote }}
|
||||
- name: LOADTEST_USERS
|
||||
value: {{ .Values.test.config.loadtest.users | quote }}
|
||||
- name: LOADTEST_REQUESTS
|
||||
value: {{ .Values.test.config.loadtest.requests | quote }}
|
||||
- name: LOADTEST_RPS
|
||||
value: {{ .Values.test.config.loadtest.rps | quote }}
|
||||
- name: LOADTEST_DURATION
|
||||
value: {{ .Values.test.config.loadtest.duration | quote }}
|
||||
- name: INFRA_USER
|
||||
value: {{ .Values.test.config.infratest.user | quote }}
|
||||
- name: INFRA_PASSWORD
|
||||
{{- if .Values.test.config.infratest.existingSecret }}
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: {{ .Values.test.config.infratest.existingSecret.secretName }}
|
||||
key: {{ .Values.test.config.infratest.existingSecret.secretKey }}
|
||||
{{- else }}
|
||||
value: {{ .Values.test.config.infratest.password | quote }}
|
||||
{{- end }}
|
||||
- name: INFRA_USERS
|
||||
value: {{ .Values.test.config.infratest.users | quote }}
|
||||
- name: INFRA_ITERATIONS
|
||||
value: {{ .Values.test.config.infratest.iteratons | quote }}
|
||||
- name: INFRA_DURATION_IN_MIN
|
||||
value: {{ .Values.test.config.infratest.duration | quote }}
|
||||
- name: RUN_CLEANUP_AFTER_PERF
|
||||
value: {{ .Values.test.config.performancetest.run_cleanup | quote }}
|
||||
- name: SLEEP_BEFORE_CHECKING_200_FILES_MINUTES
|
||||
value: {{ .Values.test.config.performancetest.wait_time_200_files | quote }}
|
||||
- name: CHECK_TIMEOUT_200_FILES_MINUTES
|
||||
value: {{ .Values.test.config.performancetest.processing_timeout_200_files | quote }}
|
||||
- name: SIGNATURE
|
||||
value: {{ .Values.signature | quote }}
|
||||
- name: SIGNATURE_PW
|
||||
value: {{ .Values.signaturePW | quote }}
|
||||
- name: DVC_ADDRESS
|
||||
value: {{ .Values.dvc.address | quote }}
|
||||
- name: DVC_HOST
|
||||
value: {{ .Values.dvc.host | quote }}
|
||||
- name: DVC_USER
|
||||
value: {{ .Values.dvc.user | quote }}
|
||||
- name: RUN_BURN_MINUTES
|
||||
value: "10"
|
||||
- name: PARSE_BURN_OUTPUT
|
||||
value: "false"
|
||||
- name: STABLE_STATS
|
||||
value: {{ .Values.test.config.stats | quote }}
|
||||
- name: ENABLE_METRICS
|
||||
value: {{ .Values.test.metrics.enabled | quote }}
|
||||
- name: UI_PORT
|
||||
value: {{ .Values.basic.uiPort | quote }}
|
||||
- name: UI_HOST
|
||||
value: {{ .Values.basic.uiHost | quote }}
|
||||
- name: RUN_LOCALLY
|
||||
value: {{ .Values.basic.runLocally | quote }}
|
||||
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2000m"
|
||||
memory: "8192Mi"
|
||||
requests:
|
||||
cpu: "500m"
|
||||
memory: "4096Mi"
|
||||
{{- if and (.Values.dvc) (.Values.dvc.sshKey) }}
|
||||
volumeMounts:
|
||||
- mountPath: /keys
|
||||
name: ssh-keys-dvc
|
||||
readOnly: true
|
||||
volumes:
|
||||
# ToDo add known_hosts
|
||||
- name: ssh-keys-dvc
|
||||
secret:
|
||||
defaultMode: 0400
|
||||
secretName: ssh-keys-dvc
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
@ -2,29 +2,20 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: acceptance-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,29 +2,20 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: security-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,17 +2,8 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: debug
|
||||
runController: debug
|
||||
runController: security-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
@ -21,10 +12,10 @@
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -81,6 +72,3 @@
|
||||
duration: '10'
|
||||
smoketest:
|
||||
warmupWaitTime: '30'
|
||||
debug:
|
||||
file: 'huge/Rules_File_500MB.pdf'
|
||||
dossier: 'performance_project_huge'
|
||||
@ -2,15 +2,6 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: not_stable
|
||||
runController: failing
|
||||
gatewayPort: 8080
|
||||
@ -21,10 +12,10 @@
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,29 +2,20 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: function-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,11 +2,6 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: load
|
||||
gatewayPort: 8080
|
||||
@ -17,10 +12,10 @@
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -11,11 +11,11 @@
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g!'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,29 +2,20 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: security-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,29 +2,20 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
second:
|
||||
realm: 'redaction2'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: smoke-v2
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -2,11 +2,6 @@
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: startup
|
||||
gatewayPort: 8080
|
||||
@ -17,10 +12,10 @@
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
dvc:
|
||||
address: "https://qa:glpat-N49LyscqRkzM-X42Wsca@gitlab.knecon.com/redactmanager/qa/testsuite.git"
|
||||
host: "vector.knecon.com"
|
||||
address: "ssh://git@git.iqser.com:2222/red/qa.git"
|
||||
host: "vector.iqser.com"
|
||||
user: "automated-ocr"
|
||||
sshKey: |
|
||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
||||
@ -1,40 +0,0 @@
|
||||
---
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'documine1'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
runVersion: stable_v2
|
||||
runController: "dm-startup"
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: true
|
||||
nextcloud:
|
||||
username: 'syn_docs'
|
||||
password: 'Gc2lwTqkTzuRjfdpCiBr3gLHmlXtpb5cPVGokvaJF7g'
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
nexus:
|
||||
user: 'automated-tests'
|
||||
pw: '58&bSTwaSDzsMW4K'
|
||||
address: 'https:/nexus.knecon.com/'
|
||||
repository: 'qa-testdata'
|
||||
group: '/dm'
|
||||
test:
|
||||
metrics:
|
||||
enabled: false
|
||||
config:
|
||||
content_processing_timeout: '10'
|
||||
warmup_wait_time: '0'
|
||||
discovery:
|
||||
retries: '20'
|
||||
timeout: '20'
|
||||
loadtest:
|
||||
users: '10'
|
||||
duration: '10'
|
||||
smoketest:
|
||||
warmupWaitTime: '30'
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,18 +0,0 @@
|
||||
---
|
||||
basic:
|
||||
runVersion: license_test
|
||||
runController: license_test
|
||||
gatewayPort: 8080
|
||||
keycloakDynamicUrl: true
|
||||
keycloakPort: 443
|
||||
disablePostgres: false
|
||||
runDebugMode: false
|
||||
test:
|
||||
metrics:
|
||||
enabled: false
|
||||
config:
|
||||
content_processing_timeout: '10'
|
||||
warmup_wait_time: '0'
|
||||
discovery:
|
||||
retries: '20'
|
||||
timeout: '20'
|
||||
File diff suppressed because one or more lines are too long
@ -1,20 +0,0 @@
|
||||
---
|
||||
global:
|
||||
testsuite_ui:
|
||||
enabled: true
|
||||
basic:
|
||||
namespace:
|
||||
server: redaction
|
||||
realms:
|
||||
first:
|
||||
realm: 'redaction'
|
||||
email: 'admin@example.com'
|
||||
password: 'JY9FGedkjL4APfg3qku8CuvwP9R3j5!'
|
||||
uiPort: 8080
|
||||
uiHost: 'ui-service'
|
||||
nexus:
|
||||
user: 'automated-tests'
|
||||
pw: '58&bSTwaSDzsMW4K'
|
||||
address: 'https://nexus.knecon.com/'
|
||||
repository: 'qa-testdata'
|
||||
group: '/ui'
|
||||
48
values.yaml
48
values.yaml
@ -4,37 +4,16 @@
|
||||
imagePullSecrets:
|
||||
- knecon
|
||||
imagePullPolicy: Always
|
||||
testsuite_ui:
|
||||
enabled: false
|
||||
version: 0.8.0
|
||||
|
||||
basic:
|
||||
realms:
|
||||
first:
|
||||
realm: ""
|
||||
email: ""
|
||||
password: ""
|
||||
# existingSecret:
|
||||
# secretName: "initialization-job-redaction" #redaction is replaced with tenant name
|
||||
# secretKey: "INIT_USER_PASSWORD"
|
||||
second:
|
||||
realm: ""
|
||||
email: ""
|
||||
password: ""
|
||||
# existingSecret:
|
||||
# secretName: "initialization-job-redaction" #redaction is replaced with tenant name
|
||||
# secretKey: "INIT_USER_PASSWORD"
|
||||
runVersion: current
|
||||
runController: all
|
||||
gatewayPort: 8080
|
||||
uiPort: 8080
|
||||
uiHost: 'ui-service-v1'
|
||||
keycloakDynamicUrl: false
|
||||
keycloakURL: ''
|
||||
keycloakPort: 443
|
||||
runDebugMode: false
|
||||
disablePostgres: false
|
||||
runLocally: false
|
||||
protractor:
|
||||
enabled: false
|
||||
dockerTag: 4.0.1
|
||||
@ -48,14 +27,7 @@
|
||||
nextcloud:
|
||||
username: ''
|
||||
password: ''
|
||||
url: 'https://cloud.knecon.com/remote.php/webdav'
|
||||
|
||||
nexus:
|
||||
user: ''
|
||||
pw: ''
|
||||
address: ''
|
||||
repository: ''
|
||||
group: ''
|
||||
url: 'https://cloud.iqser.com/remote.php/webdav'
|
||||
|
||||
test:
|
||||
metrics:
|
||||
@ -72,19 +44,5 @@
|
||||
duration: 30
|
||||
requests: 300
|
||||
rps: 10
|
||||
infratest:
|
||||
iteratons: 180
|
||||
duration: 60
|
||||
users: 5
|
||||
user: 'loadtest1@example.com'
|
||||
password: ''
|
||||
performancetest:
|
||||
wait_time_200_files: '10'
|
||||
processing_timeout_200_files: '50'
|
||||
run_cleanup: true
|
||||
debug:
|
||||
file: 'huge/Rules_File_500MB.pdf'
|
||||
dossier: 'performance_project_huge'
|
||||
|
||||
mailpit:
|
||||
enabled: false
|
||||
|
||||
testsuite_imagetag: ""
|
||||
Loading…
x
Reference in New Issue
Block a user