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

Tweaks for Sofatutor #3

Open
wants to merge 68 commits into
base: master
Choose a base branch
from
Open

Tweaks for Sofatutor #3

wants to merge 68 commits into from

Conversation

korny
Copy link
Member

@korny korny commented Jun 23, 2022

See #2.

].join(" && "),
instance_snapshot_name: latest_snapshot.name,
}))
client.create_instances_from_snapshot(params.merge(
Copy link

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)
Copy link

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

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}/"
Copy link

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

@@ -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}' .")
Copy link

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)
Copy link

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".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants