Enable security on functions
Prerequisites​
If you want to enable security on functions, you need to enable security settings on function workers first.
Configure function workers​
To use the secret APIs from the context, you need to set the following two parameters for function workers.
secretsProviderConfiguratorClassName
secretsProviderConfiguratorConfig
Pulsar Functions provided two types of SecretsProviderConfigurator
implementation and both can be used as the value of secretsProviderConfiguratorClassName
directly:
org.apache.pulsar.functions.secretsproviderconfigurator.DefaultSecretsProviderConfigurator
: This is a barebones version of a secrets provider which wires inClearTextSecretsProvider
to the function instances.org.apache.pulsar.functions.secretsproviderconfigurator.KubernetesSecretsProviderConfigurator
: This is used by default for running in Kubernetes and it uses Kubernetes built-in secrets and binds them as environment variables (viaEnvironmentBasedSecretsProvider
) within the function container to ensure that the secrets are available to the function at runtime.
Function workers use the org.apache.pulsar.functions.secretsproviderconfigurator.SecretsProviderConfigurator
interface to choose the SecretsProvider
class name and its associated configurations at the time of starting the function instances.
Function instances use the org.apache.pulsar.functions.secretsprovider.SecretsProvider
interface to fetch the secrets. The implementation that SecretsProvider
uses is determined by SecretsProviderConfigurator
.
You can also implement your own SecretsProviderConfigurator
if you want to use different SecretsProvider
for function instances.
Currently, only Java and Python runtime support SecretsProvider
. The Java and Python Runtime have the following two providers:
- ClearTextSecretsProvider (default for
DefaultSecretsProviderConfigurator
) - EnvironmentBasedSecretsProvider (default for
KubernetesSecretsProviderConfigurator
)
Get the secret​
Once SecretsProviderConfigurator
is set, you can get the secret using the Context
object as follows.
- Java
- Python
import org.apache.pulsar.functions.api.Context;
import org.apache.pulsar.functions.api.Function;
import org.slf4j.Logger;
public class GetSecretValueFunction implements Function<String, Void> {
@Override
public Void process(String input, Context context) throws Exception {
Logger LOG = context.getLogger();
String secretValue = context.getSecret(input);
if (!secretValue.isEmpty()) {
LOG.info("The secret {} has value {}", input, secretValue);
} else {
LOG.warn("No secret with key {}", input);
}
return null;
}
}
from pulsar import Function
class GetSecretValueFunction(Function):
def process(self, input, context):
logger = context.get_logger()
secret_value = context.get_secret(input)
if secret_provider is None:
logger.warn('No secret with key {0} '.format(input))
else:
logger.info("The secret {0} has value {1}".format(input, secret_value))