Sha256: b192710989789fb84bb0f97327c95bdc6c08f676013cf68011ffe2c8cbef76f1

Contents?: true

Size: 1.01 KB

Versions: 33

Compression:

Stored size: 1.01 KB

Contents

module Fog
  module ContainerInfra
    class OpenStack
      class Real
        def list_clusters
          request(
            :expects => [200],
            :method  => 'GET',
            :path    => "clusters/detail"
          )
        end
      end

      class Mock
        def list_clusters
          response = Excon::Response.new
          response.status = 200
          response.body = {
            "clusters" => [
              {
                "status"              => "CREATE_IN_PROGRESS",
                "cluster_template_id" => "0562d357-8641-4759-8fed-8173f02c9633",
                "uuid"                => "731387cf-a92b-4c36-981e-3271d63e5597",
                "stack_id"            => "31c1ee6c-081e-4f39-9f0f-f1d87a7defa1",
                "master_count"        => 1,
                "create_timeout"      => 60,
                "node_count"          => 1,
                "name"                => "k8s"
              }
            ]
          }
          response
        end
      end
    end
  end
end

Version data entries

33 entries across 31 versions & 3 rubygems

Version Path
fog-openstack-0.1.31 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.10 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.1.30 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.1.29 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.9 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.1.28 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.8 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.7 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.6 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.5 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.4 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.3 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.2 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.3.0 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.2.4 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.2.3 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.2.2 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.2.1 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-openstack-0.2.0 lib/fog/container_infra/openstack/requests/list_clusters.rb
fog-zj-0.1.28 lib/fog/container_infra/openstack/requests/list_clusters.rb