DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
AssignToLoadBalancerRuleCmd Flowexecute() method of the command calls {{assignToLoadBalancerassignSslCertToLoadBalancer(lb_id, vmIds, certId) }}certId) in LoadBalancingRulesManagerImplassignSslCertToLoadBalancer checks if the loadbalancer is capable of SSL. If not error is returned.AddapplyLoadBalancerConfig which calls applyLoadBalancerRules with the lbIdgetLoadBalancerRuleToApply function should also add getSslCertificates(lbId) which gets called from applyLoadBalancerConfigrule has SSL certificate info as well.applyLBRules of the NetscalerElement, the SSL info is passed inside the rule.NetscalerElement creates a LoadBalancerTO which transfers the params to the resouce layer.LoadBalancerTO should contain SslCertTO for holding certificate information.Capability in LbSchemes as SSLNetscalerElement when checking for canHandleLbRules will check for SSL rule and respond accordinglyLoadBalancerTO will have a new parameter for passing certificate information. | Code Block | ||||
|---|---|---|---|---|
| ||||
// Transfer object for SSL certificates
public class LbSslCert()
{
String cert;
String key;
String password;
}
|
...