Skip to content

Instantly share code, notes, and snippets.

@jruels
Created October 7, 2014 21:56
Show Gist options
  • Save jruels/272e47ae59b860e8ec13 to your computer and use it in GitHub Desktop.
Save jruels/272e47ae59b860e8ec13 to your computer and use it in GitHub Desktop.
keystone again
root@chef:~# knife environment show -Fj rpcv422
{
"name": "rpcv422",
"description": "Rackspace Private Cloud v4.2.2",
"cookbook_versions": {
},
"json_class": "Chef::Environment",
"chef_type": "environment",
"default_attributes": {
},
"override_attributes": {
"nova": {
"libvirt": {
"virt_type": "qemu",
"vncserver_listen": "0.0.0.0"
},
"network": {
"provider": "neutron"
}
},
"neutron": {
"ovs": {
"provider_networks": [
{
"label": "ph-eth3",
"bridge": "br-eth3"
}
],
"network_type": "gre",
"network": "neutron",
"external_bridge": ""
}
},
"keystone": {
"admin_user": "rpcsupport"
},
"cinder": {
"services": {
"volume": {
"network": "cinder"
}
}
},
"mysql": {
"allow_remote_root": true,
"root_network_acl": "%"
},
"osops_networks": {
"nova": "192.168.236.0/24",
"public": "192.168.236.0/24",
"management": "192.168.236.0/24",
"neutron": "192.168.240.0/24",
"cinder": "192.168.248.0/24"
}
}
}
root@controller1:~# keystone user-create --name rpcsupport --pass ostack --tenant_id e036e0f8d6144b0a84b4d111c696ac94 --enabled true
+----------+----------------------------------+
| Property | Value |
+----------+----------------------------------+
| email | |
| enabled | True |
| id | a5fcfbf48c64450ebcb45201a32763bf |
| name | rpcsupport |
| tenantId | e036e0f8d6144b0a84b4d111c696ac94 |
+----------+----------------------------------+
root@controller1:~# keystone user-get rpcsupport
+----------+----------------------------------+
| Property | Value |
+----------+----------------------------------+
| email | |
| enabled | True |
| id | a5fcfbf48c64450ebcb45201a32763bf |
| name | rpcsupport |
| tenantId | e036e0f8d6144b0a84b4d111c696ac94 |
+----------+----------------------------------+
root@controller1:~# keystone tenant-list
+----------------------------------+---------+---------+
| id | name | enabled |
+----------------------------------+---------+---------+
| e036e0f8d6144b0a84b4d111c696ac94 | admin | True |
| 94f065fda864458e888c959e890495e4 | service | True |
+----------------------------------+---------+---------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment