mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
Some checks are pending
ci / build_images (map[arch:amd64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
ci / build_images (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
ci / build_images (map[arch:arm platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:arm64 platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:ppc64le platform:linux version:]) (push) Waiting to run
ci / build_images (map[arch:s390x platform:linux version:]) (push) Waiting to run
ci / build_manifests (push) Blocked by required conditions
/ triage (push) Waiting to run
Lint / Run linters (push) Waiting to run
Test / test-client (push) Waiting to run
Test / test-server (map[arch:amd64 platform:linux]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:1809]) (push) Waiting to run
Test / test-server (map[arch:amd64 platform:windows version:ltsc2022]) (push) Waiting to run
Test / test-server (map[arch:arm64 platform:linux]) (push) Waiting to run
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { SwitchField } from '@@/form-components/SwitchField';
|
|
|
|
import { FormValues } from './types';
|
|
|
|
export function DeploymentOptions({
|
|
setFieldValue,
|
|
values,
|
|
}: {
|
|
values: FormValues;
|
|
setFieldValue: <T>(field: string, value: T) => void;
|
|
}) {
|
|
return (
|
|
<>
|
|
<div className="form-group">
|
|
<div className="col-sm-12">
|
|
<SwitchField
|
|
checked={values.prePullImage}
|
|
name="prePullImage"
|
|
label="Pre-pull images"
|
|
tooltip="When enabled, the image will be pre-pulled before deployment is started. This is useful in scenarios where the image download may be delayed or intermittent and would subsequently cause the deployment to fail"
|
|
labelClass="col-sm-3 col-lg-2"
|
|
onChange={(value) => setFieldValue('prePullImage', value)}
|
|
data-cy="pre-pull-images-switch"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="form-group">
|
|
<div className="col-sm-12">
|
|
<SwitchField
|
|
checked={values.retryDeploy}
|
|
name="retryDeploy"
|
|
label="Retry deployment"
|
|
tooltip="When enabled, this will allow the edge agent to retry deployment if failed to deploy initially"
|
|
labelClass="col-sm-3 col-lg-2"
|
|
onChange={(value) => setFieldValue('retryDeploy', value)}
|
|
data-cy="retry-deployment-switch"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|