File: basics_v3.rb

package info (click to toggle)
ruby-fog-openstack 1.0.8-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 5,132 kB
  • sloc: ruby: 36,411; makefile: 5; sh: 4
file content (81 lines) | stat: -rw-r--r-- 2,329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# OpenStack Identity Service (Keystone) Example

require 'fog/openstack'
require 'pp'

auth_url = "https://example.net:35357"
username = 'admin@example.net'
password = 'secret'
project = 'admin'
domain = 'Default'

keystone = Fog::OpenStack::Identity.new :openstack_auth_url     => auth_url,
                                        :openstack_username     => username,
                                        :openstack_api_key      => password,
                                        :openstack_project_name => project,
                                        :openstack_domain_name  => domain
                                        # Optional, self-signed certs
                                        #:connection_options => { :ssl_verify_peer => false }

#
# List keystone projects
#
keystone.projects.each do |project|
  # <Fog::OpenStack::Identity::V3::Project
  #   id="17775c",
  #   domain_id="default",
  #   description="admin tenant",
  #   enabled=true,
  #   name="admin",
  #   links={"self"=>"http://example.net:35357/..."},
  #   parent_id=nil,
  #   subtree=nil,
  #   parents=nil
  # >
  # ...
  pp project
end

#
# List users
#
keystone.users.each do |user|
  # <Fog::OpenStack::Identity::V3::User
  #   id="02124b...",
  #   default_project_id=2f534e...,
  #   description=nil,
  #   domain_id="default",
  #   email="quantum@example.net",
  #   enabled=true,
  #   name="quantum",
  #   links={"self"=>"http://example.net:35357/..."},
  #   password=nil
  # >
  # ...
  pp user
end

#
# Create a new tenant
#
project = keystone.projects.create :name        => 'rubiojr@example.net',
                                   :description => 'My foo tenant'

#
# Create a new user
#
user = keystone.users.create :name               => 'rubiojr@example.net',
                             :default_project_id => project.id,
                             :password           => 'rubiojr@example.net',
                             :email              => 'rubiojr@example.net',
                             :domain_id          => 'Default'

# Find the recently created tenant
project = keystone.projects.find { |t| t.name == 'rubiojr@example.net' }
# Destroy the tenant
project.destroy

# Find the recently created user
user = keystone.users.find { |u| u.name == 'rubiojr@example.net' }
# Destroy the user
user.destroy