Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

We are using openstack projects, with some defined quotas, to contain student projects. For courses which uses the openstack platform, we are creating one openstack project per project group. This page of the wiki documents this process.

...

Project administration

Naming scheme:

We are creating projects using a strict naming scheme. All projects should be named using one of the following schemes:

Naming schemeExamplePurpose
<Course-code>_<Term>_<GroupName>IMT3441_V17_Group1Projects related to a specific course. Term should reflect when the project is created, and is built up by "H" for autumn and "V" for spring, and then two digits signalizing the year.
<Department>_<DescriptiveName>IIK_AssuranceTestingLab

Project related to a certain project not course-specific.

PRIV_<username>PRIV_eigilo

Single-user private project, not associated with any real courses or projects.

MISCMISCProject with misc instances for "people who just wants a server"

Any projects not following this naming scheme might be deleted without warning. Projects created before December 2016 will be renamed instead of deleted.

Description field:

The projects have a description-field. Currently there is only a single requirement on the content of this field:

  • It should start with the string "Expires YYYYMMDD", where YYYYMMDD is the date the project is scheduled for deletion.

In addition to that field you should provide a description of the project, to help the administrators to understand what it is there for.

Creating a project

To create a project and add a student (or a group) with NTNU username pikachu with permissions to create Heat stacks in the course IMT3005.

Code Block
$ openstack project create --description "<Project Description>" --domain NTNU <Projectname>
$ openstack role add --project IMT3005_H17_Group12 --user pikachu --user-domain=NTNU _member_
$ openstack role add --project IMT3005_H17_Group12 --user pikachu --user-domain=NTNU heat_stack_owner
$ openstack role add --project IMT3005_H17_Group12 --group pikachu --group-domain=NTNU _member_
$ openstack role add --project IMT3005_H17_Group12 --group pikachu --group-domain=NTNU heat_stack_owner

# if you copy and paste (a messy) list of user info from blackboard into a.txt and need to extract the usernames:
$ grep -o ' [^ ]*@[^ ]* ' a.txt | tr -d '\t' | tr -d ' ' | grep -o '^[^@]*' > usernames.dat

# redirecting usernames.dat into a loop to create a project for each student:
while read -r
do 
  openstack project create --description "IMT3005_H17_$REPLY" --domain NTNU IMT3005_H17_$REPLY
  openstack role add --project IMT3005_H17_$REPLY --user $REPLY --user-domain=NTNU _member_
  openstack role add --project IMT3005_H17_$REPLY --user $REPLY --user-domain=NTNU heat_stack_owner
done < usernames.dat

Displaying users assigned to a certain project

To show which users are assigned to a certain project, the following command can be used.

Code Block
$ openstack role assignment list --project <projectname> --names

Deleting a project:

When a project is about to be removed, all users should be removed, and all resources should be deleted before the project is deleted. This is a suggested list of actions:

  • Remove all users and groups but your own from the project
  • Delete all heat stacks
  • Deattach and delete all volumes
  • Delete all virtual machines
  • Delete all ports
  • Delete all firewall-rules
  • Delete all firewall-policies
  • Delete all firewalls
  • Delete all routers
  • Delete all subnets
  • Delete all networks
  • Delete all security groups
  • Delete all floating IP's
  • Remove your user from the project
  • Delete the project

As of Mitaka, openstack is still not cleaning up properly when a project is removed; hence the extensive checklist.

Adding/Removing users/groups to/from projects

This section describes how to add/remove users and groups from projectsAs we are performing authentication using the NTNU LDAP infrastructure, we do not administer the user accounts. We are simply adding existing NTNU users to openstack projects.

Assigning NTNU users to a project

...

SkyHiGh will only contain groups that starts with "ie-iik_skyhigh"

stack.it will only contain groups that starts with "itea_stackit"

...

Code Block
languagebash
titleGive project access to project
$ openstack role remove --project <projectname> --group <groupname> --group-domain=NTNU _member_
$ openstack role remove --project <projectname> --group <groupname> --group-domain=NTNU heat_stack_owner

User administration

As we are performing authentication using the NTNU LDAP infrastructure, we do not administer regular user accounts. We are simply adding existing NTNU users to openstack projects.

Displaying projects a user is member of

...

Code Block
languagebash
titleDetermine user ID
$ openstack role assignment list --user eigilo --user-domain=NTNU --names
+------------------+-------------+-------+---------------+--------+-----------+
| Role             | User        | Group | Project       | Domain | Inherited |
+------------------+-------------+-------+---------------+--------+-----------+
| admin            | eigilo@NTNU |       | admin@Default |        | False     |
| _member_         | eigilo@NTNU |       | eigil@Default |        | False     |
| heat_stack_owner | eigilo@NTNU |       | eigil@Default |        | False     |
+------------------+-------------+-------+---------------+--------+-----------+

Displaying project a group is member of

To display which projects a group is a member of:

Code Block
languagebash
$ openstack role assignment list --group ie-iik_skylow1 --group-domain=NTNU --names
+----------+------+---------------------+-----------------------+--------+-----------+
| Role     | User | Group               | Project               | Domain | Inherited |
+----------+------+---------------------+-----------------------+--------+-----------+
| _member_ |      | ie-iik_skylow1@NTNU | IIK_testproject1@NTNU |        | False     |
+----------+------+---------------------+-----------------------+--------+-----------+

Project administration

Naming scheme:

We are creating projects using a strict naming scheme. All projects should be named using one of the following schemes:

...

Project related to a certain project not course-specific.

...

...

Single-user private project, not associated with any real courses or projects.

...

Any projects not following this naming scheme might be deleted without warning. Projects created before December 2016 will be renamed instead of deleted.

Creating a project

To create a project and add a student (or a group) with NTNU username pikachu with permissions to create Heat stacks in the course IMT3005.

Code Block
$ openstack project create --description "<Project Description>" --domain NTNU <Projectname>
$ openstack role add --project IMT3005_H17_Group12 --user pikachu --user-domain=NTNU _member_
$ openstack role add --project IMT3005_H17_Group12 --user pikachu --user-domain=NTNU heat_stack_owner
$ openstack role add --project IMT3005_H17_Group12 --group pikachu --group-domain=NTNU _member_
$ openstack role add --project IMT3005_H17_Group12 --group pikachu --group-domain=NTNU heat_stack_owner

# if you copy and paste (a messy) list of user info from blackboard into a.txt and need to extract the usernames:
$ grep -o ' [^ ]*@[^ ]* ' a.txt | tr -d '\t' | tr -d ' ' | grep -o '^[^@]*' > usernames.dat

# redirecting usernames.dat into a loop to create a project for each student:
while read -r
do 
  openstack project create --description "IMT3005_H17_$REPLY" --domain NTNU IMT3005_H17_$REPLY
  openstack role add --project IMT3005_H17_$REPLY --user $REPLY --user-domain=NTNU _member_
  openstack role add --project IMT3005_H17_$REPLY --user $REPLY --user-domain=NTNU heat_stack_owner
done < usernames.dat

Displaying users assigned to a certain project

To show which users are assigned to a certain project, the following command can be used.

Code Block
$ openstack role assignment list --project <projectname> --names

Deleting a project:

When a project is about to be removed, all users should be removed, and all resources should be deleted before the project is deleted. This is a suggested list of actions:

  • Remove all users and groups but your own from the project
  • Delete all heat stacks
  • Deattach and delete all volumes
  • Delete all virtual machines
  • Delete all ports
  • Delete all firewall-rules
  • Delete all firewall-policies
  • Delete all firewalls
  • Delete all routers
  • Delete all subnets
  • Delete all networks
  • Delete all security groups
  • Delete all floating IP's
  • Remove your user from the project
  • Delete the project

As of Mitaka, openstack is still not cleaning up properly when a project is removed; hence the extensive checklist.

Service users, or temporary guest users

In some special cases it is needed to create users which is not a part of the NTNU LDAP catalog. There are currently two cases where this is necessary:

...

For temporary users a similar approach as with service users can be performed, where the description of the user should indicate the reason for this being a local user, and not a NTNU user. The user should also be deleted as soon as it is not necessary anymore.

Group administration

To simplify administration of the project members we can outsource this administration to the project owner. To do this we should create a group in BAS which we allow the project owner to administer, and then assign this group to an openstack project.

TODO: Lars Erik Pedersen - Skrive litt om denne prosessen?

Displaying project a group is member of

To display which projects a group is a member of:

Code Block
languagebash
$ openstack role assignment list --group ie-iik_skylow1 --group-domain=NTNU --names
+----------+------+---------------------+-----------------------+--------+-----------+
| Role     | User | Group               | Project               | Domain | Inherited |
+----------+------+---------------------+-----------------------+--------+-----------+
| _member_ |      | ie-iik_skylow1@NTNU | IIK_testproject1@NTNU |        | False     |
+----------+------+---------------------+-----------------------+--------+-----------+

Give a user or group administrative privileges

...