Wizard: add details for Satellite token expiration

This commit adds a more detailed information about when does the token
used in Satellite command expire.
This commit is contained in:
Anna Vítová 2025-05-12 11:51:23 +02:00 committed by Klara Simickova
parent daa6e59bc0
commit 4192ada532
3 changed files with 61 additions and 37 deletions

View file

@ -50,7 +50,7 @@ const SatelliteRegistration = () => {
return (
<>
<SatelliteRegistrationCommand />
<FormGroup label="Certificate authority (CA)" isRequired>
<FormGroup label="Certificate authority (CA) for Satellite" isRequired>
<FileUpload
id="text-file-with-restrictions-example"
type="text"
@ -93,6 +93,12 @@ const SatelliteRegistration = () => {
? 'Certificate was uploaded'
: 'Drag and drop a valid certificate file or upload one'}
</HelperTextItem>
{(isRejected || validated !== 'success') && (
<HelperTextItem>
You can find this certificate at{' '}
<i>http://satellite.example.com</i>/pub/katello-server-ca.crt
</HelperTextItem>
)}
</HelperText>
</FormHelperText>
</FormGroup>