easy_manager 0.9.5 → 0.9.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/easymanager/scaleway/ips.rb +2 -7
- data/lib/easymanager/scaleway/servers.rb +2 -7
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 2f4d3fe63e75058880a12dbb337a1ba5ad42fc3c9fdd560f6f88bb9c1bce42e9
         | 
| 4 | 
            +
              data.tar.gz: 50993b21c01f7ab2e27f9d643dc7c4e22bf06874883e7a53e6f4ea874d379869
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 48c105b80b325399b5fd5782bb554cf428a325be64849b2d92ae43add2b86b550ca9a4fce65b10020f37049d3a1b8023e9b9e15d083c509d7e30df8558afca99
         | 
| 7 | 
            +
              data.tar.gz: 9b8c8d3d358849e6910fe4769ab50ea4e3293dcf9228dcee4367f9c1afdbea85a2f158974bac6fb3dcad36e703087587b6040e2311a97a690ed876cd5efd78fd
         | 
| @@ -18,16 +18,11 @@ class EasyManager | |
| 18 18 | 
             
                    Utilities.parse_json(response.body)
         | 
| 19 19 | 
             
                  end
         | 
| 20 20 |  | 
| 21 | 
            -
                  def self.delete(scw, ip_id | 
| 22 | 
            -
                     | 
| 21 | 
            +
                  def self.delete(scw, ip_id)
         | 
| 22 | 
            +
                    Typhoeus.delete(
         | 
| 23 23 | 
             
                      File.join(scw.api_url, "/instance/v1/zones/#{scw.zone}/ips/#{ip_id}"),
         | 
| 24 24 | 
             
                      headers: scw.headers
         | 
| 25 25 | 
             
                    )
         | 
| 26 | 
            -
                    return resp if resp&.code == 204
         | 
| 27 | 
            -
             | 
| 28 | 
            -
                    sleep(rand(10..60))
         | 
| 29 | 
            -
                    tries += 1
         | 
| 30 | 
            -
                    delete(scw, ip_id, tries) unless tries >= 3
         | 
| 31 26 | 
             
                  end
         | 
| 32 27 | 
             
                end
         | 
| 33 28 | 
             
              end
         | 
| @@ -87,18 +87,13 @@ class EasyManager | |
| 87 87 | 
             
                    )
         | 
| 88 88 | 
             
                  end
         | 
| 89 89 |  | 
| 90 | 
            -
                  def self.action(scw, srv_id, action | 
| 90 | 
            +
                  def self.action(scw, srv_id, action)
         | 
| 91 91 | 
             
                    data = { action: action }
         | 
| 92 | 
            -
                     | 
| 92 | 
            +
                    Typhoeus.post(
         | 
| 93 93 | 
             
                      File.join(scw.api_url, "/instance/v1/zones/#{scw.zone}/servers/#{srv_id}/action"),
         | 
| 94 94 | 
             
                      headers: scw.headers,
         | 
| 95 95 | 
             
                      body: data.to_json
         | 
| 96 96 | 
             
                    )
         | 
| 97 | 
            -
                    return resp if resp&.code == 202
         | 
| 98 | 
            -
             | 
| 99 | 
            -
                    sleep(rand(10..60))
         | 
| 100 | 
            -
                    tries += 1
         | 
| 101 | 
            -
                    action(scw, srv_id, action, tries) unless tries >= 3
         | 
| 102 97 | 
             
                  end
         | 
| 103 98 |  | 
| 104 99 | 
             
                  def self.srv_data(scw, srv_type, image, name_pattern, tags)
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: easy_manager
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.9. | 
| 4 | 
            +
              version: 0.9.6
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Joshua MARTINELLE
         | 
| 8 8 | 
             
            autorequire:
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2023-01- | 
| 11 | 
            +
            date: 2023-01-18 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: bcrypt_pbkdf
         |