# Generated from resize-aws-instance-0.2.0.gem by gem2rpm -*- rpm-spec -*- %global gem_name resize-aws-instance Name: rubygem-%{gem_name} Version: 0.2.0 Release: 1%{?dist} Summary: # ResizeAwsInstance This is a quick Ruby scipt to simplify the process of resizing and EBS based AWS instance. It use the aws-sdk (link) to automate the following steps: $ aws ec2 stop-instances --instance-id i-xxxxxxxx $ aws ec2 modify-instance-attribute --instance-id i-xxxxxxxx --instance-type xx.size $ aws ec2 start-instances --instance-id i-xxxxxxxx ## Installation This is packaged as a gem to simplify the process of installation. It does not come with a shared library. To install, simply run the following command: $ gem install resize_aws_instance ## Usage Simple script to resize EBS based AWS instance. Usage: resize_aws_instance [options] Note: The following AWS config options may be provided via environment variables: key-id => AWS_ACCESS_KEY_ID secret-key => AWS_SECRET_ACCESS_KEY region => AWS_DEFAULT_REGION Options: --instance-id, -i : AWS instance ID --key-id, -k : AWS access key ID --secret-key, -s : AWS secret access key --region, -r : AWS region --type, -t : Target instance type --snapshot, -n : Snapshot EBS volumes [none, root or comma separated list IDs (a,b,c)] (default: none) --version, -v: Print version and exit --help, -h: Show this message ## Contributing 1. Fork it ( https://github.com/[my-github-username]/resize-aws-instance/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request License: Apache 2.0 URL: https://github.com/Altiscale/resize-aws-instance Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem BuildRequires: ruby(release) BuildRequires: rubygems-devel BuildRequires: ruby # BuildRequires: rubygem(rubocop) >= 0.23 # BuildRequires: rubygem(rubocop) < 1 BuildArch: noarch %description Simple tool to resize AWS instances with EBS root. %package doc Summary: Documentation for %{name} Requires: %{name} = %{version}-%{release} BuildArch: noarch %description doc Documentation for %{name}. %prep %setup -q -n %{gem_name}-%{version} %build # Create the gem as gem install only works on a gem file gem build ../%{gem_name}-%{version}.gemspec # %%gem_install compiles any C extensions and installs the gem into ./%%gem_dir # by default, so that we can move it into the buildroot in %%install %gem_install %install mkdir -p %{buildroot}%{gem_dir} cp -a .%{gem_dir}/* \ %{buildroot}%{gem_dir}/ mkdir -p %{buildroot}%{_bindir} cp -a .%{_bindir}/* \ %{buildroot}%{_bindir}/ find %{buildroot}%{gem_instdir}/bin -type f | xargs chmod a+x %check pushd .%{gem_instdir} # Run the test suite. popd %files %dir %{gem_instdir} %{_bindir}/resize_aws_instance %exclude %{gem_instdir}/.gitignore %license %{gem_instdir}/LICENSE %{gem_instdir}/bin %{gem_libdir} %exclude %{gem_cache} %{gem_spec} %files doc %doc %{gem_docdir} %{gem_instdir}/Gemfile %doc %{gem_instdir}/README.md %{gem_instdir}/Rakefile %{gem_instdir}/resize_aws_instance.gemspec %changelog * Wed Apr 20 2022 mockbuilder - 0.2.0-1 - Initial package