We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b1af9 commit fda0f49Copy full SHA for fda0f49
1 file changed
apps/supervisor/src/workloadManager/kubernetes.ts
@@ -107,9 +107,6 @@ export class KubernetesWorkloadManager implements WorkloadManager {
107
108
try {
109
const basePodSpec = this.addPlacementTags(this.#defaultPodSpec, opts.placementTags);
110
- // The io_uring-blocking profile is only needed to keep pods checkpointable.
111
- // Skip it unless checkpointing is enabled - self-hosters don't have the
112
- // profile provisioned on their nodes, so applying it would fail pod creation.
113
const podSpec = this.opts.checkpointsEnabled
114
? withBlockIoUringSeccompProfile(basePodSpec, opts.runtime)
115
: basePodSpec;
0 commit comments