-
Notifications
You must be signed in to change notification settings - Fork 1.6k
WO Release/april2026 #9799
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
WO Release/april2026 #9799
Changes from 32 commits
139d152
5d9fb5a
5374406
cc808d4
be0e419
9b5c319
bc354b4
a927395
3bb524c
d88dc65
3ca0b77
066689c
e5e330c
84a10dc
d81f4bc
230ea5c
fa2bc60
51e988e
45ad448
bca3b13
c5e06bb
ba7bd26
d98e2aa
7250fe9
24992eb
7927663
e600c9a
4642f2d
e735464
5014bb0
5f91bc6
3bec477
288136b
bc14ab8
688c9bf
40242c8
705d480
09c270e
4be5606
f534322
3352fea
ed0afe4
e6e2407
76ca49f
a92175b
cba547c
d379e38
b452323
2219331
de55d7d
ba47c31
93962b4
f51abf6
9260c54
d9efcf9
a920bc4
d125500
d1820c5
ff272bd
e9e5ba9
275748c
2386481
6a132ca
8871921
1dbb4df
1d2f333
37e036b
966c83b
849e3e4
3e6cc04
aa1820f
0a67e62
cde4f97
1a05afb
945b5eb
63356c9
3384abb
eafcff6
8c54ed0
eeb45b2
4359ddf
bda5d2a
0d90f44
48b60d4
7ee26fc
33bf253
3757e6e
ae7bf2d
5264f9e
f75ca1a
05edcf3
da6558c
452fede
fdc913e
85bfc65
1c1eb67
85a291d
d50882a
be03500
ce6b516
988a9f0
35f2e7e
9bed8f1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -65,3 +65,65 @@ def load_arguments(self, _): # pylint: disable=unused-argument | |||||||||||||
| options_list=['--kube-context'], | ||||||||||||||
| help='Kubernetes context to use. Defaults to current context.', | ||||||||||||||
| ) | ||||||||||||||
| c.argument( | ||||||||||||||
| 'skip_site_reference', | ||||||||||||||
| options_list=['--skip-site-reference'], | ||||||||||||||
| action='store_true', | ||||||||||||||
| help='Skip auto-creation of site-reference to context.', | ||||||||||||||
| ) | ||||||||||||||
|
||||||||||||||
| c.argument( | |
| 'skip_site_reference', | |
| options_list=['--skip-site-reference'], | |
| action='store_true', | |
| help='Skip auto-creation of site-reference to context.', | |
| ) |
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 ServiceGroup example omits
-g/--resource-group, but this command requires--resource-group(and the argument is marked required). The example as written will fail; update it to include the resource group parameter.