-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(UI): add enabled field to explicitly set in automatedSync in SyncPolicy #22482
base: master
Are you sure you want to change the base?
Conversation
🔴 Preview Environment stopped on BunnyshellSee: Environment Details | Pipeline Logs Available commands (reply to this comment):
|
@anandrkskd can you please take a look at this, its part of what you did on the UI side. cc @anandf |
536b83c
to
83bd592
Compare
@aali309 For UI PRs, please provide UI screenshot or videos of the previous vs. new experience. |
83bd592
to
8d14694
Compare
ui/src/app/applications/components/application-summary/application-summary.tsx
Outdated
Show resolved
Hide resolved
ui/src/app/applications/components/application-summary/application-summary.tsx
Show resolved
Hide resolved
ui/src/app/applications/components/application-summary/application-summary.tsx
Outdated
Show resolved
Hide resolved
8d14694
to
e64defb
Compare
Is this an intended behaviour? Screen.Recording.2025-04-02.at.2.43.39.PM.mov@aali309 this seems like a bug, can we confirm this behaviour? |
586fa29
to
a8e8fad
Compare
Yes, its a bug, fixed now. THNX @anandrkskd |
c51aad9
to
72744f2
Compare
I have checked the changes and seems to be behaving as expected, thanks @aali309. |
<div className='columns small-12'> | ||
<div className='checkbox-container'> | ||
<Checkbox | ||
onChange={async (val: boolean) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we still simply call setAutoSync
from here like for the other two flags? So pass the current state of the enabled flag to ensure it's preserved, and then you don't have to change setAutoSync
, other than to allow enabled to be passed in?
When we're enabling autosync, eg. automated
is first added, do you want to maintain the previous behaviour so that you only introduce the enabled element when the user checks the enabled checkbox?
The checkbox being unchecked right now maps to two different situations in the actual CRD. Unchecked, is for enabled: false
as well as for when the enabled
field does not exist. Checked, is for enabled: true
in the CRD only, which is ok. This can lead to inconsistencies when you initialize the state of the checkbox when you first visit the page. It is particularly evident when you make changes directly to YAML (via the YAML source in the UI, or changing it externally).
So, it's like you need a third state and perhaps the use of another widget. Potentially, a drop down combo could be used with three selections: 1. a blank entry, 2. true
and 3. false
. One for each of the three situations.
On a separate note, the UI representation for selfHeal and prune could be improved - I see they have similar issues.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something like this:
setAutoSync(
ctx,
val ? 'Enable Auto-Sync?' : 'Disable Auto-Sync?',
val
? 'If checked, application will automatically sync when changes are detected'
: 'Are you sure you want to disable automated application synchronization',
app.spec.syncPolicy.automated.prune,
app.spec.syncPolicy.automated.selfHeal,
val
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The behaviour on the back end is that the enabled
field is enabled by default when sync is automated. Also to make the behaviour consistent across both the UI and backend. The UI's checkbox logic (automated.enabled !== false) matches the backend's logic (Enabled == nil || *Enabled).
So when you set automated: {}, you're effectively enabling auto-sync because Enabled is nil, which is treated as enabled by design.
This means:
When automated: {}
, then enabled
is undefined and undefined !== false
evaluates to true, therefore, the checkbox appears ticked.
This behaviour is actually documented in docs/user-guide/auto_sync.md:
Setting spec.syncPolicy.automated.enabled
flag to null will be treated as automated sync as enabled
.
So there are three equivalent ways to enable auto-sync:
automated: {}
automated: {enabled: null}
automated: {enabled: true}
And only one way to explicitly disable it:
automated: {enabled: false}
Signed-off-by: Atif Ali <[email protected]>
Signed-off-by: Atif Ali <[email protected]>
Signed-off-by: Atif Ali <[email protected]>
72744f2
to
a44c1b0
Compare
Adding enable field to explicitly set in automatedSync in SyncPolicy on UI
Fixes #21647
Part of: #21999
This PR add a boolean field named enable in Spec.SyncPolicy.Automated for explicitly enabling or disabling automatedSync.
These changes don't affect the current behaviour.
This field can be set using
Checklist: