Skip to content
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

bug fixes, improvements roadmap for v0.5.0-c3 #428

Closed
hoatle opened this issue Apr 17, 2018 · 6 comments
Closed

bug fixes, improvements roadmap for v0.5.0-c3 #428

hoatle opened this issue Apr 17, 2018 · 6 comments

Comments

@hoatle
Copy link
Member

hoatle commented Apr 17, 2018

Should include:

  • auto_create directory
  • bug fix for override configuration

(optional)

  • bug fix for internet connectivity?
  • https improvement?
  • caching?
@hoatle hoatle added this to the v0.5.0-c3-dev milestone Apr 17, 2018
@hoatle hoatle changed the title should release v0.5.0-c3 bug fixes, improvements roadmap for v0.5.0-c3 Apr 17, 2018
@hoatle
Copy link
Member Author

hoatle commented Apr 17, 2018

network problem, I'm still not sure about the root cause https://ubuntuforums.org/showthread.php?t=2301742

@phuonglm
Copy link
Contributor

Does the dhclient eth0 fix that?

@hoatle
Copy link
Member Author

hoatle commented Apr 18, 2018

I usually got lost internet connection after $ vagrant reload --provision and this cause a lot of problems. $ dhclient eth0 got the internet back after $ vagrant ssh and this is annoying.

@hoatle
Copy link
Member Author

hoatle commented Apr 19, 2018

I guess this could fix the dhclient problem:

diff --git a/Vagrantfile b/Vagrantfile
index 2f2dee3..ebf3f98 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -424,6 +424,14 @@ Vagrant.configure("2") do |config|
     "inline" => fix_hosts_command
   })
 
+  fix_dhclient_command = "sudo dhclient eth0"
+
+  provisioners.unshift({
+    "type" => "shell",
+    "name" => "fix-dhclient",
+    "inline" => fix_dhclient_command,
+    "run" => "always"
+  })
+
   # append ip shell as the last item to always display the ip address
   provisioners << {
     "type" => "shell",

@hoatle
Copy link
Member Author

hoatle commented Jul 12, 2018

things are getting into the priority list:

  • k8s setup support focus
  • fix IP & hostmanager ip resolver bug
  • bug fixes
  • code clean up
  • upgrade to the latest vagrant, virtualbox versions (optional)
  • cluster support (optional)

@hoatle
Copy link
Member Author

hoatle commented Jul 18, 2018

closed, we're moving to v0.6.0 instead because there are a lot of breaking changes for the upcoming releases.

@hoatle hoatle closed this as completed Jul 18, 2018
@hoatle hoatle removed this from the v0.6.0-a1-dev milestone Aug 24, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants