-
Notifications
You must be signed in to change notification settings - Fork 430
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
added support for system node pools in managedClusters #1475
Changes from all commits
89b8d83
d3ae03e
58b57c9
2b7ffa7
f0e74c2
34e2e25
25d6f98
5342c94
158270a
a488083
be9196b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,10 @@ import ( | |
|
||
// AzureManagedMachinePoolSpec defines the desired state of AzureManagedMachinePool. | ||
type AzureManagedMachinePoolSpec struct { | ||
// Mode - represents mode of an agent pool. Possible values include: System, User. | ||
// +kubebuilder:validation:Enum=System;User | ||
Mode string `json:"mode"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we default this? or require it? i'm fine as-is but thought I'd raise it There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am okay with anything There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have we decided on this ? Should I add a default instead of required ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changing from required => optional is non-breaking, let’s leave it required for now 👍 |
||
|
||
// SKU is the size of the VMs in the node pool. | ||
SKU string `json:"sku"` | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
any chance I can persuade you to upgrade to
2021-05-01
😃 the diff should be basically nothing. if there's any non-trivial diff, you can leave it at2021-03-01
.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.
ack 👍
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 one minor difference while moving it from 2021-03-01 - 2021-05-01 is
ListClusterAdminCredentials api has an extra param serverFqdn in 2021-05-01. I have kept it to empty string.