You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -30,7 +30,7 @@ export function AnsibleWizard(props: {
30
30
description="Automation is accomplished by creating a ClusterCurator resource which can be selected during cluster creation to automate running ansible jobs."
@@ -166,15 +166,15 @@ export function ApplicationWizard(props: ApplicationWizardProps) {
166
166
placeholder="Enter the Git access token"
167
167
labelHelp="The access token if this is a private Git repository and requires connection."
168
168
/>
169
-
<Select
169
+
<WizSelect
170
170
path="subscription.git.branch"
171
171
label="Branch"
172
172
placeholder="Enter or select a branch"
173
173
labelHelp="The branch of the Git repository."
174
174
options={['branch-1']}
175
175
required
176
176
/>
177
-
<Select
177
+
<WizSelect
178
178
path="subscription.git.path"
179
179
label="Path"
180
180
placeholder="Enter or select a repository path"
@@ -196,14 +196,14 @@ export function ApplicationWizard(props: ApplicationWizardProps) {
196
196
placeholder="Enter a specific tag"
197
197
labelHelp="If you want to subscribe to a specific tag, you need to specify the tag. If both Git desired commit and tag annotations are specified, the tag is ignored. You might need to specify git-clone-depth annotation if your desired commit of the tag is older than the last 20 commits."
198
198
/>
199
-
<Select
199
+
<WizSelect
200
200
path="subscription.git.reconcileOption"
201
201
label="Reconcile option"
202
202
labelHelp="With the Merge option, new fields are added and existing fields are updated in the resource. Choose to merge if resources are updated after the initial deployment. If you choose to replace, the existing resource is replaced with the Git source."
203
203
options={reconcileOptions}
204
204
required
205
205
/>
206
-
<Select
206
+
<WizSelect
207
207
path="subscription.git.reconcileRate"
208
208
label="Repository reconcile rate"
209
209
labelHelp="The frequency of resource reconciliation that is used as a global repository setting. The medium default setting checks for changes to apply every three minutes and re-applies all resources every 15 minutes, even without a change. Select low to reconcile every hour. Select high to reconcile every two minutes. If you select off, the deployed resources are not automatically reconciled."
@@ -223,7 +223,7 @@ export function ApplicationWizard(props: ApplicationWizardProps) {
placeholder="Enter or select a Helm repository URL"
@@ -263,7 +263,7 @@ export function ApplicationWizard(props: ApplicationWizardProps) {
263
263
placeholder="Enter the version or versions"
264
264
labelHelp="The version or versions for the deployable. You can use a range of versions in the form >1.0, or <3.0."
265
265
/>
266
-
<Select
266
+
<WizSelect
267
267
path="subscription.helm.reconcileRate"
268
268
label="Repository reconcile rate"
269
269
labelHelp="The frequency of resource reconciliation that is used as a global repository setting. The medium default setting checks for changes to apply every three minutes and re-applies all resources every 15 minutes, even without a change. Select low to reconcile every hour. Select high to reconcile every two minutes. If you select off, the deployed resources are not automatically reconciled."
@@ -283,7 +283,7 @@ export function ApplicationWizard(props: ApplicationWizardProps) {
<Sectionlabel="Configure automation for prehook and posthook">
486
-
<Select
486
+
<WizSelect
487
487
path="subscription.git.ansibleSecretName"
488
488
label="Ansible Automation Platform credential"
489
489
labelHelp="If using Configure automation for prehook and posthook tasks, select the Ansible Automation Platform credential. Click the Add credentials tab to create a new secret."
0 commit comments