Jump to: navigation, search

Difference between revisions of "AddingYourBlog"

m
m (Change github link to cgit)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
= Adding Your Blog To Planet OpenStack =
 
= Adding Your Blog To Planet OpenStack =
  
The config for the planet aggregator is kept in a git repo and managed by Gerrit. To add your feed to [http://planet.openstack.org Planet OpenStack], simply clone git://github.com/openstack/openstack-planet.git and then follow the normal [[OpenStack]] [http://docs.openstack.org/infra/manual/developers.html#development-workflow development workflow] to submit your change.
+
The config for the planet aggregator is kept in a git repo and managed by Gerrit. To add your feed to [http://planet.openstack.org Planet OpenStack], simply clone git://git.openstack.org/openstack/openstack-planet and then follow the normal [[OpenStack]] [http://docs.openstack.org/infra/manual/developers.html#development-workflow development workflow] to submit your change.
  
 
== Separating Content ==
 
== Separating Content ==
Line 20: Line 20:
 
Check out the configuration files from git:
 
Check out the configuration files from git:
  
<!-- ##$ git clone git://github.com/openstack/openstack-planet.git -->
+
<!-- ##$ git clone git://git.openstack.org/openstack/openstack-planet -->
  
 
<pre><nowiki>
 
<pre><nowiki>
$ git clone git://github.com/openstack/openstack-planet.git
+
$ git clone git://git.openstack.org/openstack/openstack-planet
 
$ cd openstack-planet
 
$ cd openstack-planet
 
</nowiki></pre>
 
</nowiki></pre>
Line 55: Line 55:
  
 
<pre><nowiki>
 
<pre><nowiki>
$ git commit -a -m "Added yourusername to Planet OpenStack"
+
$ git commit -a -m "Added <yourusername> to Planet OpenStack"
 
$ git review
 
$ git review
 
</nowiki></pre>
 
</nowiki></pre>
 +
 +
= Something's wrong? =
 +
 +
Contact OpenStack Infra team on IRC #openstack-infra or mailing list openstack-infra@lists.openstack.org.
  
 
[[category: contribute]]
 
[[category: contribute]]

Latest revision as of 18:40, 14 December 2016

Adding Your Blog To Planet OpenStack

The config for the planet aggregator is kept in a git repo and managed by Gerrit. To add your feed to Planet OpenStack, simply clone git://git.openstack.org/openstack/openstack-planet and then follow the normal OpenStack development workflow to submit your change.

Separating Content

You may want to tag or label individual posts or categorize only some posts to be aggregated in Planet OpenStack. Different blogging software have different ways of providing feeds that will only aggregate posts you mark or tag under an "openstack" category, for example.

Adding Your Feed

Check out the configuration files from git:


$ git clone git://git.openstack.org/openstack/openstack-planet
$ cd openstack-planet


Next, place your hackergotchi<<FootNote(Your hackergotchi should be scaled to roughly 100x100 pixels, give or take.)>> into the images/ subdirectory:


$ cp ~/hackergotchi.png images/yourusername.png
$ git add images/yourusername.png

If you don't have a hackergotchi to add right away, comment out the line (using # at the beginning) or leave the entire line out.

Once you've done that, add a stanza like the following to the end of the planet.ini file:


[http://blog.example.com/~yourusername/feed?category=openstack]
name = Your Name Here
face = yourusername.png
nick = yourusername


/!\ Please use your real name at least somewhere in the 'name' field.

When you are satisfied that your entry is correct, it's time to check in your changes:


$ git commit -a -m "Added <yourusername> to Planet OpenStack"
$ git review

Something's wrong?

Contact OpenStack Infra team on IRC #openstack-infra or mailing list openstack-infra@lists.openstack.org.