public abstract class AbstractKubernetesStepDecorator extends Object implements KubernetesStepDecorator
KubernetesStepDecorator contains common implementations for different plug-in features.| 构造器和说明 |
|---|
AbstractKubernetesStepDecorator() |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
public FlinkPod decorateFlinkPod(FlinkPod flinkPod)
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 在接口中 KubernetesStepDecoratorpublic List<io.fabric8.kubernetes.api.model.HasMetadata> buildAccompanyingKubernetesResources() throws IOException
Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.