public class FlinkConfMountDecorator extends AbstractKubernetesStepDecorator
| 构造器和说明 |
|---|
FlinkConfMountDecorator(AbstractKubernetesParameters kubernetesComponentConf) |
| 限定符和类型 | 方法和说明 |
|---|---|
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)
AbstractKubernetesStepDecoratorSo 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()
public List<io.fabric8.kubernetes.api.model.HasMetadata> buildAccompanyingKubernetesResources() throws IOException
AbstractKubernetesStepDecoratorCopyright © 2014–2020 The Apache Software Foundation. All rights reserved.