Skip to content
Snippets Groups Projects
Commit 987677c1 authored by OZGCloud's avatar OZGCloud
Browse files

Merge branch 'master' into OZG-7047-tooltip

parents 608a1541 6a3c54ad
No related branches found
No related tags found
No related merge requests found
{ {
"createdAt": "2024-01-10T12:57:35Z[UTC]", "createdAt": "2024-01-10T12:57:35Z[UTC]",
"createdBy": "SetInCode", "createdBy": "SetInCode",
"text": "Test text to test the test text test" "text": "Test text to test the test text test",
"attachments": null
} }
...@@ -14,7 +14,3 @@ ozgcloud: ...@@ -14,7 +14,3 @@ ozgcloud:
production: false production: false
stage: stage:
production: false production: false
xdomea:
behoerdenschluessel: "DUMMY-SCHLUESSEL"
behoerdenschluessel-uri: "DUMMY-URI"
behoerdenschluessel-version: "DUMMY-VERSION"
\ No newline at end of file
...@@ -13,7 +13,3 @@ ozgcloud: ...@@ -13,7 +13,3 @@ ozgcloud:
url: /assets/benutzerleitfaden/benutzerleitfaden.pdf url: /assets/benutzerleitfaden/benutzerleitfaden.pdf
user-manager: user-manager:
url: http://localhost:9092 url: http://localhost:9092
xdomea:
behoerdenschluessel: "DUMMY-SCHLUESSEL-E2E"
behoerdenschluessel-uri: "DUMMY-URI-E2E"
behoerdenschluessel-version: "DUMMY-VERSION-E2E"
\ No newline at end of file
...@@ -100,7 +100,3 @@ ozgcloud: ...@@ -100,7 +100,3 @@ ozgcloud:
user-manager: user-manager:
profile-template: /api/userProfiles/%s profile-template: /api/userProfiles/%s
search-template: /api/userProfiles/?searchBy={searchBy} search-template: /api/userProfiles/?searchBy={searchBy}
xdomea:
behoerdenschluessel:
behoerdenschluessel-uri:
behoerdenschluessel-version:
...@@ -107,12 +107,6 @@ spec: ...@@ -107,12 +107,6 @@ spec:
value: {{ $bescheid.formEngineName }} value: {{ $bescheid.formEngineName }}
{{- end }} {{- end }}
{{- end}} {{- end}}
- name: ozgcloud_xdomea_behoerdenschluessel
value: {{ ((.Values.ozgcloud).xdomea).behoerdenschluessel | quote }}
- name: ozgcloud_xdomea_behoerdenschluesselUri
value: {{ ((.Values.ozgcloud).xdomea).behoerdenschluesselUri}}
- name: ozgcloud_xdomea_behoerdenschluesselVersion
value: {{ ((.Values.ozgcloud).xdomea).behoerdenschluesselVersion | quote }}
- name: ozgcloud_administration_address - name: ozgcloud_administration_address
value: {{ include "app.spring_cloud_config_administration_address" . }} value: {{ include "app.spring_cloud_config_administration_address" . }}
- name: grpc_client_zufi-manager_address - name: grpc_client_zufi-manager_address
......
suite: deployment xdomea env
release:
name: alfa
namespace: sh-helm-test
templates:
- templates/deployment.yaml
set:
baseUrl: test.company.local
ozgcloud:
environment: test
bundesland: sh
bezeichner: helm
sso:
serverUrl: https://sso.company.local
imagePullSecret: image-pull-secret
tests:
- it: should not require on behoerdenschlüssel properties
set:
# note: explicitly non-set behoerdenschlüssel properties
asserts:
- notContains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluessel
- notContains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluesselUri
- notContains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluesselVersion
- it: should set (optional) behoerdenschlüssel properties
set:
ozgcloud:
xdomea:
behoerdenschluessel: "123456"
behoerdenschluesselUri: "uri.uri:uri"
behoerdenschluesselVersion: "version 1"
asserts:
- contains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluessel
value: "123456"
- contains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluesselUri
value: "uri.uri:uri"
- contains:
path: spec.template.spec.containers[0].env
content:
name: ozgcloud_xdomea_behoerdenschluesselVersion
value: "version 1"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment