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.
...
...
Capability as SslOffload in Network.java static class CapabilityNetscalerElement when checking for canHandleLbRules will check for SSL rule and respond accordinglyLoadBalancingRule will have a new static class LbSslCert and will have a list List<LbSslCert> for holding the certificate(s)| Wiki Markup |
|---|
{{LoadBalancerTO}} will have a new parameter for passing certificate information and an array {{SslCertsTO\[\]}} for holding the certificates. |
The loadbalancign rule will have a new subclass for SSL certs
| Code Block | ||||
|---|---|---|---|---|
| ||||
// rule for SSL certificates
public class LoadBalancingRule {
....
public static class LbSslCert()
{
String cert;
String key;
String password;
boolean _revoke;
public LbSslCert(cert,key,password) {}
}
public void setSslCerts(List<SslCert> certs){}
public void getSslCerts(List<SslCert> certs){}
...
}
|
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
// TO for SSL certificates
public class LoadBalancerTO {
....
public SslCertsTO[] sslCerts;
public static class SslCertTO()
{
String cert;
String key;
String password;
boolean _revoke;
public LbSslCert(cert,key,password) {}
}
...
}
|
ssl_certs(id, uuid, account_id, cert, key, password)
...
The certificates can be accessed as a tab on the Accounts page.
Right now, this feature will only be available via the API. UI support is not yet scoped.
No external dependecies are being added for this feature. All code will be developed within Cloudstack’s scope.