<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Hi All,<br>
<br>
Fyi, I figured out I needed ClusterManager (not Cluster). Here's the
way to access the ClusterManager **instance** (i.e., not the type):<br>
<br>
clus = cluster.ClusterManager(cfg)<br>
cluster.ClusterManager.run_plugin(clus, 'automount', 'smallcluster')<br>
<br>
<br>
Cheers,<br>
<br>
Stuart<br>
<br>
<br>
On 2/9/2011 6:22 PM, Stuart Young wrote:
<blockquote cite="mid:4D53219D.3020401@gmail.com" type="cite">
<meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1">
<span class="Apple-style-span" style="border-collapse: separate;
color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-style:
normal; font-variant: normal; font-weight: normal;
letter-spacing: normal; line-height: normal; orphans: 2;
text-indent: 0px; text-transform: none; white-space: normal;
widows: 2; word-spacing: 0px; font-size: medium;">
<pre>(Sorry - reposting with correct subject)
Hi All,
I'm having some trouble debugging my plugin inside the StarCluster
development shell.
I've created a plugin called automount.py like so:
class NfsShares (ClusterSetup):
"""
Automatically mounts external NFS shares on StarCluster nodes
"""
def __init__(self, head_ip):
log.info("AutoMount.__init__ Running AutoMount plugin.")
...
.. and placed it in the ~/.starcluster/plugins directory and filled in
the config file as described in the documentation here:
<a moz-do-not-send="true" href="http://web.mit.edu/stardev/cluster/docs/plugins.html">http://web.mit.edu/stardev/cluster/docs/plugins.html</a>
I started a cluster okay with:
starcluster start smallcluster
But when I come to test my plugin inside the development shell according
to the following instructions:
3. Launch the development shell and test your plugin on your small
test cluster
$ starcluster shell
[~]|1> cluster.run_plugin('myplugin', 'testcluster', cfg)
... I run this command inside the shell:
cluster.run_plugin('automount', 'smallcluster', cfg)
... and get this error message:
AttributeError: 'module' object has no attribute 'run_plugin'
So I tried the cluster.Cluster object since it has the 'run_plugin' method:
cluster.Cluster.run_plugin(cluster.Cluster, 'automount', 'smallcluster',
cfg)
... but I get this error message:
TypeError: unbound method run_plugin() must be called with Cluster
instance as first argument (got type instance instead)
Am I going about this the right way?
Cheers,
Stuart
</pre>
</span><br class="Apple-interchange-newline">
</blockquote>
<br>
</body>
</html>