-
Notifications
You must be signed in to change notification settings - Fork 145
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
Support non-cluster host scaling with Typha #3817
Conversation
0a38df7
to
bf7ee6b
Compare
@@ -72,16 +71,10 @@ func Add(mgr manager.Manager, opts options.AddOptions) error { | |||
|
|||
// Established deferred watches against the v3 API that should succeed after the Enterprise API Server becomes available. | |||
if opts.EnterpriseCRDExists { | |||
k8sClient, err := kubernetes.NewForConfig(mgr.GetConfig()) |
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.
This code to create a new k8s clientset is repeated across almost all controllers. It has now been refactored to be initialized once in the main function and passed as part of opts
.
9d21afc
to
9f3fbe7
Compare
// Create a Typha autoscaler for non-cluster hosts | ||
var typhaAutoscalerNonClusterHost *typhaAutoscaler | ||
restConfig := mgr.GetConfig() | ||
nonclusterhosts, err := utils.GetNonClusterHostDynamic(restConfig) |
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.
Does this mean that if there are no NCHs at boot time for the operator, that the core controller won't be watching heps going forward? Maybe we should just always watch them if there are enterprise CRDs in the cluster.
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.
I have moved the non-cluster host Typha auto-scaler initialization code to the Reconcile function. It will be initialized/started when the NonClusterHost resource exists and the scaler pointer is nil.
851f17b
to
b7b9e12
Compare
} | ||
if len(hepList.Items) == 0 { | ||
return nil, nil | ||
} |
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 for some reason the filter returns more items add a warning.
} | |
if len(hepList.Items) > 1 { | |
log.WithFields(log.Fields{ | |
"hostname": hostname, | |
"count": len(hepList.Items), | |
}).Warn("Multiple HostEndpoints found for node; returning the first one") | |
} |
4cc6578
to
16fdc27
Compare
16fdc27
to
de9eecc
Compare
* Support non-cluster host scaling with Typha * Create Kubernetes Clientset from config only once * Allow certificate signing request from non-cluster hosts * Add and fix unit tests * Create a separate key pair for non-cluster host Typha * Start the non-cluster host Typha autoscaler for enterprise only * Perform SubjectAccessReview for non-cluster host CSRs * Start Typha auto-scaler when NonClusterHost resource exists * Add a 10 second timeout when performing access reviews * Rerun make generate
* Support non-cluster host scaling with Typha (#3817) * Support non-cluster host scaling with Typha * Create Kubernetes Clientset from config only once * Allow certificate signing request from non-cluster hosts * Add and fix unit tests * Create a separate key pair for non-cluster host Typha * Start the non-cluster host Typha autoscaler for enterprise only * Perform SubjectAccessReview for non-cluster host CSRs * Start Typha auto-scaler when NonClusterHost resource exists * Add a 10 second timeout when performing access reviews * Rerun make generate * Render CSR roles when NonClusterHost feature is enabled (#3834) This change adds the NonClusterHost resource check to render CSR roles for the CSR controller. It is required to validate and sign CSRs generated from non-cluster hosts. * FV test with Calico OSS release-v3.30
Description
This changeset introduces support for non-cluster Felix auto-scaling with Typha. It implements a dedicated Typha deployment for non-cluster hosts. The newly added Thpha auto-scaler monitors the total number of non-cluster hosts and dynamically scales Typha deployment accordingly. Additionally, the Tigera operator CSR controller has been enhanced to accept CSRs from both Pods and non-cluster HostEndpoints.
For PR author
make gen-files
make gen-versions
For PR reviewers
A note for code reviewers - all pull requests must have the following:
kind/bug
if this is a bugfix.kind/enhancement
if this is a a new feature.enterprise
if this PR applies to Calico Enterprise only.