Interface KubernetesServiceBindingConfig


@ConfigMapping(prefix="quarkus.kubernetes-service-binding") @ConfigRoot(phase=BUILD_TIME) @Deprecated(forRemoval=true, since="3.19") public interface KubernetesServiceBindingConfig
Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Determines if binding should be created as files or env vars.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Detects the binding data from resources owned by the backing service.
    Deprecated, for removal: This API element is subject to removal in a future version.
    The mountPath to add in the `ServiceBinding` resource.
    Deprecated, for removal: This API element is subject to removal in a future version.
    A list of explicitly configured services.
  • Method Details

    • services

      Map<String,ServiceConfig> services()
      Deprecated, for removal: This API element is subject to removal in a future version.
      A list of explicitly configured services. The configured value will be used in order to generate the `ServiceBinding` resource (in case that kubernetes resource generation is enabled).
    • mountPath

      Optional<String> mountPath()
      Deprecated, for removal: This API element is subject to removal in a future version.
      The mountPath to add in the `ServiceBinding` resource.
    • bindAsFiles

      @WithDefault("true") Boolean bindAsFiles()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Determines if binding should be created as files or env vars. Set this value to false to bind as env vars.`
    • detectBindingResources

      @WithDefault("false") Boolean detectBindingResources()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Detects the binding data from resources owned by the backing service.