We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e372cc commit 5e5b860Copy full SHA for 5e5b860
1 file changed
tests/templates/kuttl/opa/20-install-opa.yaml.j2
@@ -11,6 +11,12 @@ metadata:
11
spec:
12
image:
13
productVersion: "{{ test_scenario['values']['opa-latest'] }}"
14
+{% if test_scenario['values']['opa-latest'].find(",") > 0 %}
15
+ custom: "{{ test_scenario['values']['opa-latest'].split(',')[1] }}"
16
+ productVersion: "{{ test_scenario['values']['opa-latest'].split(',')[0] }}"
17
+{% else %}
18
+ productVersion: "{{ test_scenario['values']['opa-latest'] }}"
19
+{% endif %}
20
pullPolicy: IfNotPresent
21
clusterConfig:
22
{% if lookup('env', 'VECTOR_AGGREGATOR') %}
0 commit comments