mirror of https://github.com/portainer/portainer
80 lines
2.6 KiB
TypeScript
80 lines
2.6 KiB
TypeScript
|
import { useFormikContext, Field } from 'formik';
|
||
|
|
||
|
import { FormControl } from '@/portainer/components/form-components/FormControl';
|
||
|
import { Input } from '@/portainer/components/form-components/Input';
|
||
|
import { SwitchField } from '@/portainer/components/form-components/SwitchField';
|
||
|
import { TextTip } from '@/portainer/components/Tip/TextTip';
|
||
|
|
||
|
import { NomadTokenField } from './NomadTokenField';
|
||
|
import { ScriptFormValues } from './types';
|
||
|
|
||
|
interface Props {
|
||
|
isNomadTokenVisible?: boolean;
|
||
|
hideIdGetter?: boolean;
|
||
|
}
|
||
|
|
||
|
export function EdgeScriptSettingsFieldset({
|
||
|
isNomadTokenVisible,
|
||
|
hideIdGetter,
|
||
|
}: Props) {
|
||
|
const { values, setFieldValue } = useFormikContext<ScriptFormValues>();
|
||
|
|
||
|
return (
|
||
|
<>
|
||
|
{!hideIdGetter && (
|
||
|
<>
|
||
|
<FormControl
|
||
|
label="Edge ID Generator"
|
||
|
tooltip="A bash script one liner that will generate the edge id and will be assigned to the PORTAINER_EDGE_ID environment variable"
|
||
|
inputId="edge-id-generator-input"
|
||
|
>
|
||
|
<Input
|
||
|
type="text"
|
||
|
name="edgeIdGenerator"
|
||
|
value={values.edgeIdGenerator}
|
||
|
id="edge-id-generator-input"
|
||
|
onChange={(e) => setFieldValue(e.target.name, e.target.value)}
|
||
|
/>
|
||
|
</FormControl>
|
||
|
<div className="form-group">
|
||
|
<div className="col-sm-12">
|
||
|
<TextTip color="blue">
|
||
|
<code>PORTAINER_EDGE_ID</code> environment variable is required
|
||
|
to successfully connect the edge agent to Portainer
|
||
|
</TextTip>
|
||
|
</div>
|
||
|
</div>
|
||
|
</>
|
||
|
)}
|
||
|
|
||
|
{isNomadTokenVisible && <NomadTokenField />}
|
||
|
|
||
|
<FormControl
|
||
|
label="Environment variables"
|
||
|
tooltip="Comma separated list of environment variables that will be sourced from the host where the agent is deployed."
|
||
|
inputId="env-variables-input"
|
||
|
>
|
||
|
<Field
|
||
|
name="envVars"
|
||
|
as={Input}
|
||
|
placeholder="foo=bar,myvar"
|
||
|
id="env-variables-input"
|
||
|
/>
|
||
|
</FormControl>
|
||
|
|
||
|
<div className="form-group">
|
||
|
<div className="col-sm-12">
|
||
|
<SwitchField
|
||
|
checked={values.allowSelfSignedCertificates}
|
||
|
onChange={(value) =>
|
||
|
setFieldValue('allowSelfSignedCertificates', value)
|
||
|
}
|
||
|
label="Allow self-signed certs"
|
||
|
tooltip="When allowing self-signed certificates the edge agent will ignore the domain validation when connecting to Portainer via HTTPS"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</>
|
||
|
);
|
||
|
}
|