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 9a8dffe commit f81405aCopy full SHA for f81405a
1 file changed
rust/operator-binary/src/container.rs
@@ -279,6 +279,8 @@ impl ContainerConfig {
279
.ephemeral(
280
SecretOperatorVolumeSourceBuilder::new(
281
&authentication_config.tls_secret_class,
282
+ // HDFS serves its own TLS endpoints, so the Pod needs both the public
283
+ // certificate and the private key.
284
SecretClassVolumeProvisionParts::PublicPrivate,
285
)
286
.with_pod_scope()
@@ -306,6 +308,7 @@ impl ContainerConfig {
306
308
307
309
310
&authentication_config.kerberos.secret_class,
311
+ // We need both public (krb5.conf) and private (keytab) parts.
312
313
314
.with_service_scope(hdfs.name_any())
0 commit comments