public class FlinkConfMountDecorator extends AbstractKubernetesStepDecorator
logger
Constructor and Description |
---|
FlinkConfMountDecorator(AbstractKubernetesParameters kubernetesComponentConf) |
Modifier and Type | Method and Description |
---|---|
List<io.fabric8.kubernetes.api.model.HasMetadata> |
buildAccompanyingKubernetesResources()
Note that the method could have a side effect of modifying the Flink Configuration object,
such as update the JobManager address.
|
FlinkPod |
decorateFlinkPod(FlinkPod flinkPod)
Apply transformations on the given FlinkPod in accordance to this feature.
|
static String |
getFlinkConfConfigMapName(String clusterId) |
public FlinkConfMountDecorator(AbstractKubernetesParameters kubernetesComponentConf)
public FlinkPod decorateFlinkPod(FlinkPod flinkPod)
AbstractKubernetesStepDecorator
So this is correct:
Pod decoratedPod = new PodBuilder(pod) // Keeps the original state
...
.build()
Container decoratedContainer = new ContainerBuilder(container) // Keeps the original state
...
.build()
FlinkPod decoratedFlinkPod = new FlinkPodBuilder(flinkPod) // Keeps the original state
...
.build()
And this is the incorrect:
Pod decoratedPod = new PodBuilder() // Loses the original state
...
.build()
Container decoratedContainer = new ContainerBuilder() // Loses the original state
...
.build()
FlinkPod decoratedFlinkPod = new FlinkPodBuilder() // Loses the original state
...
.build()
decorateFlinkPod
in interface KubernetesStepDecorator
decorateFlinkPod
in class AbstractKubernetesStepDecorator
public List<io.fabric8.kubernetes.api.model.HasMetadata> buildAccompanyingKubernetesResources() throws IOException
AbstractKubernetesStepDecorator
buildAccompanyingKubernetesResources
in interface KubernetesStepDecorator
buildAccompanyingKubernetesResources
in class AbstractKubernetesStepDecorator
IOException
@VisibleForTesting public static String getFlinkConfConfigMapName(String clusterId)
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.