-
Notifications
You must be signed in to change notification settings - Fork 0
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
Tweaks for Sofatutor #3
base: master
Are you sure you want to change the base?
Conversation
# Conflicts: # CHANGELOG.md # lib/pull_preview/up.rb
This reverts commit 2fe79a2.
…e having a clear white list policy here.
].join(" && "), | ||
instance_snapshot_name: latest_snapshot.name, | ||
})) | ||
client.create_instances_from_snapshot(params.merge( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pull provisioner refactoring to separate PR
def latest_snapshot | ||
@latest_snapshot ||= client.get_instance_snapshots.instance_snapshots.sort{|a,b| b.created_at <=> a.created_at}.find do |snap| | ||
snap.state == "available" && snap.from_instance_name == name | ||
snap.state == "available" && (snap.name == snapshot_name || snap.from_instance_name == name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pull snapshot_name feature out
lib/pull_preview/instance.rb
Outdated
dns | ||
].join(".") | ||
end | ||
|
||
def url | ||
scheme = (default_port == "443" ? "https" : "http") | ||
"#{scheme}://#{public_dns}:#{default_port}" | ||
"#{scheme}://#{basic_auth && basic_auth + '@'}#{public_dns}:#{default_port}/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pull out basic_auth feature
lib/pull_preview/up.rb
Outdated
@@ -21,7 +21,7 @@ def self.run(app_path, opts) | |||
instance_name = opts[:name] | |||
|
|||
PullPreview.logger.info "Taring up repository at #{app_path.inspect}..." | |||
unless system("tar czf /tmp/app.tar.gz --exclude .git -C '#{app_path}' .") | |||
unless system("tar czf /tmp/app.tar.gz --exclude=.git --exclude-from=.dockerignore -C '#{app_path}' .") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only add --exclude-from=.dockerignore
if .dockerignore file exists!
@@ -50,7 +50,7 @@ def self.run(app_path, opts) | |||
end | |||
end.bundle_id | |||
|
|||
instance.launch(azs.first, bundle_id, blueprint_id, tags) | |||
instance.launch(azs.sample, bundle_id, blueprint_id, tags) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pull out as it is selecting the availability zone randomly
… to 0.0.3 This commit updates the terminal-table gem to version 3.0.2, adjusts the unicode-display_width dependency to be compatible, and updates the pullpreview gem version to 0.0.3. Additionally, it updates the Bundler version to 2.4.22 and makes minor adjustments to other dependencies for compatibility.
This commit updates aws-sdk-lightsail to 1.32.0, octokit to 4.22.0, and slop to 4.10.1, ensuring compatibility and leveraging the latest features and bug fixes from these libraries. Terminal-table dependency version is relaxed to "~> 3.0".
See #2.