Skip to content

Commit

Permalink
Merge pull request #936 from rszwajko/certText
Browse files Browse the repository at this point in the history
Fix typo in text about the manager CA certificates
  • Loading branch information
yaacov authored Feb 19, 2024
2 parents 6071a84 + 8b18269 commit b5e4e6a
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@
"The interval in seconds for snapshot pooling. Default value is 10.": "The interval in seconds for snapshot pooling. Default value is 10.",
"The limit for CPU usage by the controller, specified in milliCPU. Default value is 500m.": "The limit for CPU usage by the controller, specified in milliCPU. Default value is 500m.",
"The limit for memory usage by the controller, specified in Megabytes (Mi). Default value is 800Mi.": "The limit for memory usage by the controller, specified in Megabytes (Mi). Default value is 800Mi.",
"The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.": "The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.",
"The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.": "The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.",
"The maximum age in hours for must gather cleanup. Default value is -1, which implies never.": "The maximum age in hours for must gather cleanup. Default value is -1, which implies never.",
"The password for the ESXi host admin": "The password for the ESXi host admin",
"The provider is not ready - ": "The provider is not ready - ",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,14 +67,14 @@ const validateCacert = (value: string): ValidationMsg => {
if (value === '') {
return {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

if (valid) {
return {
type: 'success',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,14 +285,14 @@ const validateCacert = (value: string): ValidationMsg => {
if (value === '') {
return {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

if (valid) {
return {
type: 'success',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,14 @@ const validateCacert = (value: string): ValidationMsg => {
if (value === '') {
return {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

if (valid) {
return {
type: 'success',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,14 +95,14 @@ const validateCacert = (value: string): ValidationMsg => {
if (value === '') {
return {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

if (valid) {
return {
type: 'success',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const OpenshiftCredentialsEdit: React.FC<EditComponentProps> = ({ secret,
insecureSkipVerify: { type: 'default', msg: 'Migrate without validating a CA certificate' },
cacert: {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
},
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const OpenstackCredentialsEdit: React.FC<EditComponentProps> = ({ secret,
validation: {
cacert: {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
},
insecureSkipVerify: { type: 'default', msg: 'Migrate without validating a CA certificate' },
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const OvirtCredentialsEdit: React.FC<EditComponentProps> = ({ secret, onC
insecureSkipVerify: { type: 'default', msg: 'Skip certificate validation' },
cacert: {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
},
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const VSphereCredentialsEdit: React.FC<EditComponentProps> = ({ secret, o
insecureSkipVerify: { type: 'default', msg: 'Skip certificate validation' },
cacert: {
type: 'default',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
msg: 'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
},
},
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
cacert: {
label: t('CA certificate'),
description: t(
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
),
},
},
Expand Down Expand Up @@ -122,7 +122,7 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
cacert: {
label: t('CA certificate'),
description: t(
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
),
},
},
Expand Down Expand Up @@ -156,7 +156,7 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
cacert: {
label: t('CA certificate'),
description: t(
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
),
},
},
Expand Down Expand Up @@ -197,7 +197,7 @@ export const OpenstackCredentialsList: React.FC<ListComponentProps> = ({ secret,
cacert: {
label: t('CA certificate'),
description: t(
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.',
'The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.',
),
},
},
Expand Down

0 comments on commit b5e4e6a

Please sign in to comment.