- ca |
+ ca_file |
string |
CA defines the key of certificate (e.g. ca.crt) in the configmap map, secret or absolute path to a certificate.
@@ -1668,7 +1668,7 @@ The absolute path can be used when certificate is already present on the workloa
|
false |
- cert |
+ cert_file |
string |
Cert defines the key (e.g. tls.crt) of the client certificate in the secret or absolute path to a certificate.
@@ -1684,7 +1684,7 @@ used from the secret defined in SecretName.
|
false |
- key |
+ key_file |
string |
Key defines a key (e.g. tls.key) of the private key in the secret or absolute path to a certificate.
diff --git a/tests/e2e-instrumentation/instrumentation-java-tls/00-install-instrumentation.yaml b/tests/e2e-instrumentation/instrumentation-java-tls/00-install-instrumentation.yaml
index 222a0584a8..7bc75d7107 100644
--- a/tests/e2e-instrumentation/instrumentation-java-tls/00-install-instrumentation.yaml
+++ b/tests/e2e-instrumentation/instrumentation-java-tls/00-install-instrumentation.yaml
@@ -8,9 +8,9 @@ spec:
tls:
secretName: client-certs
configMapName: ca
- ca: ca.crt
- cert: tls.crt
- key: tls.key
+ ca_file: ca.crt
+ cert_file: tls.crt
+ key_file: tls.key
propagators:
- tracecontext
- baggage
|