-
Notifications
You must be signed in to change notification settings - Fork 22
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
VPC subnets as a ec2 provider option #6
Comments
VPC TemplateOptions options = compute.templateOptions(); Set<? extends NodeMetadata> nodes = client.runNodesInGroup(group, 1, |
Feature was added today b26db39 User must take the steps below to be able to use vpc:
ec2:
type: c4.large
region: eu-west-1
image: ami-47a23a30
vpc: vpc-f70ea392
subnet: subnet-e7830290 |
Kamal, can you add the steps above to the README.md? |
Done. |
…ency issues (karamelchef#4) [CLOUD-543] Print Karamel version in logs [CLOUD-543] Leave old method untouched for easy reference in the future [CLOUD-543] Lock also another region which may reconnect the client (karamelchef#5) [CLOUD-570] Serialize execution of some recipes on multiple machines (karamelchef#7) [CLOUD-570] Make recipes parallelism configurable [CLOUD-570] Ignore recipe parallelism if less than or equal to zero [CLOUD-570] Fix deadlock by moving the lock after queuing, right before execution [CLOUD-570] Log information of lock claims [CLOUD-570] Documentation [CLOUD-556] Wait for a while before exit so that web UI can catch up (karamelchef#8) increase heap size to 6gb (karamelchef#9) [CLOUD-580] Make working directory configurable by environment variable (karamelchef#6) [CLOUD-580] Update documentation [no_remote_conf_sync] Fix
…ency issues (#4) [CLOUD-543] Print Karamel version in logs [CLOUD-543] Leave old method untouched for easy reference in the future [CLOUD-543] Lock also another region which may reconnect the client (#5) [CLOUD-570] Serialize execution of some recipes on multiple machines (karamelchef#7) [CLOUD-570] Make recipes parallelism configurable [CLOUD-570] Ignore recipe parallelism if less than or equal to zero [CLOUD-570] Fix deadlock by moving the lock after queuing, right before execution [CLOUD-570] Log information of lock claims [CLOUD-570] Documentation [CLOUD-556] Wait for a while before exit so that web UI can catch up (karamelchef#8) increase heap size to 6gb (karamelchef#9) [CLOUD-580] Make working directory configurable by environment variable (karamelchef#6) [CLOUD-580] Update documentation [no_remote_conf_sync] Fix
…le (#6) [CLOUD-580] Update documentation
VPC subnets are important for the highest performance networking (10 GbE) - without it you have 1 GbE. You can easily create them in jclouds - see here: https://jclouds.apache.org/guides/aws-ec2/.
It would be nice to have this as a ec2 option:
vpc true
or something like that.
The text was updated successfully, but these errors were encountered: