Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package app;
  2.  
  3. import org.apache.ignite.Ignite;
  4. import org.apache.ignite.IgniteException;
  5. import org.apache.ignite.Ignition;
  6.  
  7. /**
  8. * A new Ignite-Kube Node will be started when this class gets executed.
  9. */
  10. public class KubeNodeStartup {
  11. /**
  12. * Start up a Kube Node.
  13. *
  14. * @param args Command line arguments, none required.
  15. * @throws IgniteException If failed.
  16. */
  17. public static void main(String[] args) throws IgniteException {
  18. Ignite ignite = Ignition.start("config/example-kube.xml");
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement