-
Notifications
You must be signed in to change notification settings - Fork 69
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: v1 migration and adaptation #528
Conversation
(and migration to kube-system)
(typecheck detecting multiple main.go)
Data: map[string][]byte{ | ||
certresources.ServerKey: []byte("present"), | ||
certresources.ServerCert: []byte("present"), | ||
// certresources.CACert: []byte("missing"), |
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.
commented, can be removed?
) | ||
|
||
//go:generate controller-gen crd object:headerFile="../../hack/boilerplate.go.txt" paths="./..." output:crd:artifacts:config=crds | ||
var ( | ||
Group = "karpenter.azure.com" | ||
//CompatibilityGroup = "compatibility." + Group |
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.
commented out, can be removed?
This field may not be empty. | ||
maxLength: 1024 | ||
minLength: 1 | ||
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ |
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.
If it should be camelCase, should we enforce the first letter is lowercase?
enum: | ||
- "True" | ||
- "False" | ||
- Unknown |
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.
Should Unknown
also be quoted?
This field may not be empty. | ||
maxLength: 1024 | ||
minLength: 1 | ||
pattern: ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$ |
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.
Should we enforce starting with a lowercase letter if it should be camel case?
enum: | ||
- "True" | ||
- "False" | ||
- Unknown |
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.
Should Unknown
be quoted?
Description
Update to Karpenter v1 API, with many follow-ups. Summary of changes (mostly grouped by commits):
kube-system
by default, update Helm charts (many changes), update karpenter-values-template (remove drift feature gate); enable webhooks (including webhook injection into CRDs); includes enablement of webhooks in CCP context (thank you, @matthchr!)How was this change tested?
make presubmit
Does this change impact docs?
Release Note
Next
AKSNodeClass
Testing
Other