├── .gitignore ├── .gitreview ├── .zuul.yaml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── config.rb ├── create-post.rb ├── data ├── authors.yml ├── docs.yml ├── events │ ├── 2015 │ │ └── RDO-TestDays.yml │ ├── 2016 │ │ ├── RDO-DocDays.yml │ │ └── RDO-TestDays.yml │ ├── 2017 │ │ ├── RDO-Community.yml │ │ └── RDO-TestDays.yml │ ├── 2018 │ │ ├── CentOSDojoCERN.yml │ │ ├── DevConfCZ.yml │ │ ├── DevConfus.yml │ │ ├── FOSDEM.yml │ │ ├── OpenStackPTG.yml │ │ ├── OpenStackSummitEU.yml │ │ ├── OpenStackSummitNA.yml │ │ ├── RDO-Community.yml │ │ ├── RDO-TestDays.yml │ │ ├── RHSummit.yml │ │ └── SCALE.yml │ ├── 2019 │ │ ├── DevConfCZ.yml │ │ ├── FOSDEM.yml │ │ ├── RHSummit.yml │ │ └── SCaLE.yml │ ├── 2020 │ │ └── RDO-TestDays.yml │ └── 2023 │ │ ├── CentOS-connect.yml │ │ └── RDO-Community.yml ├── navigation.yml └── site.yml ├── docker.sh ├── lib ├── blog_helpers.rb ├── confcal.rb ├── monkeypatch_blog_date.rb └── site_helpers.rb ├── planet.ini ├── playbooks └── build.yaml ├── run-server.sh ├── scripts ├── get_blogs.pl ├── get_meetups ├── get_stats ├── get_uniques ├── unanswered.py └── whats_in_rdo.py ├── setup.sh └── source ├── .htaccess.haml ├── 404.html.haml ├── admin ├── api │ ├── create.html.haml │ ├── delete.html.haml │ └── update.html.haml ├── edit.html.haml └── index.html.haml ├── author.html.haml ├── blog.html.haml ├── blog ├── README.md └── config.rb ├── calendar.html.haml ├── cloud-management ├── index.html.md └── using-manageiq-on-openstack.html.md ├── contribute ├── community-meeting.html.md ├── index.html.md ├── irc-etiquette.html.md ├── mailing-lists.html.md ├── mentors.html.md ├── organize-a-meetup.html.md ├── rdo-bugtriage.html.md └── speakers.html.md ├── documentation ├── add-packages.html.md ├── books.html.md ├── branching.md ├── common-service-operations.html.md ├── community-guidelines.html.md ├── connecting-to-tripleo-baremetal-vms-from-remote-machine.html.md ├── domains.html.md ├── editing.html.md ├── enabling-migrations.html.md ├── general_concept_comparison.html.md ├── getting-started.html.md ├── intro-packaging.html.md ├── ironic.html.md ├── keystone-integration-with-idm.html.md ├── mariadb-galera.html.md ├── new-release-guide.html.md ├── onboarding.html.md ├── package-building-overview.html.md ├── package-list.html.md ├── packstack-all-in-one-diy-configuration.html.md ├── rdo-packaging-guidelines.html.md ├── rdo-packaging-troubleshooting.html.md ├── rdo-packaging.html.md ├── requirements.html.md ├── retire-packages.html.md ├── selinux-issues.html.md ├── tripleo-in-xena.html.md └── tunings-and-tweaks.html.md ├── easyfix.html.md ├── events ├── all.ics.haml ├── calendar.json.haml ├── ceph-rdo-barcelona.html.md ├── docdays.html.md ├── edit.html.md ├── index.html.haml ├── meetup_assistance.html.md ├── openstack-summit-hong-kong.html.md ├── presentations │ └── 2016 │ │ ├── FOSDEM │ │ ├── RDO_in_production_CERN.pdf │ │ └── configuration-files-in-rdo-fosdem-2016.pdf │ │ └── ceph-rdo-barcelona │ │ ├── lib │ │ ├── fonts │ │ │ ├── asul │ │ │ │ ├── asul-bold.ttf │ │ │ │ ├── asul-bold.woff │ │ │ │ ├── asul-regular.ttf │ │ │ │ ├── asul-regular.woff │ │ │ │ └── asul.css │ │ │ ├── cabinsketch │ │ │ │ ├── cabinsketch-bold.ttf │ │ │ │ ├── cabinsketch-bold.woff │ │ │ │ ├── cabinsketch-regular.ttf │ │ │ │ ├── cabinsketch-regular.woff │ │ │ │ └── cabinsketch.css │ │ │ ├── josefinsans │ │ │ │ ├── josefinsans-bold.ttf │ │ │ │ ├── josefinsans-bold.woff │ │ │ │ ├── josefinsans-bolditalic.ttf │ │ │ │ ├── josefinsans-bolditalic.woff │ │ │ │ ├── josefinsans-italic.ttf │ │ │ │ ├── josefinsans-italic.woff │ │ │ │ ├── josefinsans-regular.ttf │ │ │ │ ├── josefinsans-regular.woff │ │ │ │ └── josefinsans.css │ │ │ ├── katex │ │ │ │ ├── KaTeX_AMS-Regular.ttf │ │ │ │ ├── KaTeX_AMS-Regular.woff │ │ │ │ ├── KaTeX_Caligraphic-Bold.ttf │ │ │ │ ├── KaTeX_Caligraphic-Bold.woff │ │ │ │ ├── KaTeX_Caligraphic-Regular.ttf │ │ │ │ ├── KaTeX_Caligraphic-Regular.woff │ │ │ │ ├── KaTeX_Fraktur-Bold.ttf │ │ │ │ ├── KaTeX_Fraktur-Bold.woff │ │ │ │ ├── KaTeX_Fraktur-Regular.ttf │ │ │ │ ├── KaTeX_Fraktur-Regular.woff │ │ │ │ ├── KaTeX_Main-Bold.ttf │ │ │ │ ├── KaTeX_Main-Bold.woff │ │ │ │ ├── KaTeX_Main-Italic.ttf │ │ │ │ ├── KaTeX_Main-Italic.woff │ │ │ │ ├── KaTeX_Main-Regular.ttf │ │ │ │ ├── KaTeX_Main-Regular.woff │ │ │ │ ├── KaTeX_Math-BoldItalic.ttf │ │ │ │ ├── KaTeX_Math-BoldItalic.woff │ │ │ │ ├── KaTeX_Math-Italic.ttf │ │ │ │ ├── KaTeX_Math-Italic.woff │ │ │ │ ├── KaTeX_Math-Regular.ttf │ │ │ │ ├── KaTeX_Math-Regular.woff │ │ │ │ ├── KaTeX_Script-Regular.ttf │ │ │ │ ├── KaTeX_Script-Regular.woff │ │ │ │ ├── KaTeX_Size1-Regular.ttf │ │ │ │ ├── KaTeX_Size1-Regular.woff │ │ │ │ ├── KaTeX_Size2-Regular.ttf │ │ │ │ ├── KaTeX_Size2-Regular.woff │ │ │ │ ├── KaTeX_Size3-Regular.ttf │ │ │ │ ├── KaTeX_Size3-Regular.woff │ │ │ │ ├── KaTeX_Size4-Regular.ttf │ │ │ │ ├── KaTeX_Size4-Regular.woff │ │ │ │ ├── KaTeX_Typewriter-Regular.ttf │ │ │ │ └── KaTeX_Typewriter-Regular.woff │ │ │ ├── lato │ │ │ │ ├── lato-bold.ttf │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ ├── lato-italic.ttf │ │ │ │ ├── lato-italic.woff │ │ │ │ ├── lato-regular.ttf │ │ │ │ ├── lato-regular.woff │ │ │ │ └── lato.css │ │ │ ├── league │ │ │ │ ├── league_gothic.css │ │ │ │ ├── league_gothic.ttf │ │ │ │ ├── league_gothic.woff │ │ │ │ └── league_gothic_license │ │ │ ├── merriweathersans │ │ │ │ ├── merriweathersans-bold.ttf │ │ │ │ ├── merriweathersans-bold.woff │ │ │ │ ├── merriweathersans-regular.ttf │ │ │ │ ├── merriweathersans-regular.woff │ │ │ │ └── merriweathersans.css │ │ │ ├── montserrat │ │ │ │ ├── montserrat-bold.ttf │ │ │ │ ├── montserrat-bold.woff │ │ │ │ ├── montserrat-regular.ttf │ │ │ │ ├── montserrat-regular.woff │ │ │ │ └── montserrat.css │ │ │ ├── newscycle │ │ │ │ ├── newscycle-bold.ttf │ │ │ │ ├── newscycle-bold.woff │ │ │ │ ├── newscycle-regular.ttf │ │ │ │ ├── newscycle-regular.woff │ │ │ │ └── newscycle.css │ │ │ ├── opensans │ │ │ │ ├── opensans-bold.ttf │ │ │ │ ├── opensans-bold.woff │ │ │ │ ├── opensans-bolditalic.ttf │ │ │ │ ├── opensans-bolditalic.woff │ │ │ │ ├── opensans-italic.ttf │ │ │ │ ├── opensans-italic.woff │ │ │ │ ├── opensans-regular.ttf │ │ │ │ ├── opensans-regular.woff │ │ │ │ └── opensans.css │ │ │ ├── overpass │ │ │ │ ├── overpass-bold.ttf │ │ │ │ ├── overpass-bold.woff │ │ │ │ ├── overpass-light.ttf │ │ │ │ ├── overpass-light.woff │ │ │ │ ├── overpass-regular.ttf │ │ │ │ ├── overpass-regular.woff │ │ │ │ └── overpass.css │ │ │ ├── overpass2 │ │ │ │ ├── overpass2-bold.ttf │ │ │ │ ├── overpass2-bold.woff │ │ │ │ ├── overpass2-bolditalic.ttf │ │ │ │ ├── overpass2-bolditalic.woff │ │ │ │ ├── overpass2-extralight.ttf │ │ │ │ ├── overpass2-extralight.woff │ │ │ │ ├── overpass2-extralightitalic.ttf │ │ │ │ ├── overpass2-extralightitalic.woff │ │ │ │ ├── overpass2-italic.ttf │ │ │ │ ├── overpass2-italic.woff │ │ │ │ ├── overpass2-light.ttf │ │ │ │ ├── overpass2-light.woff │ │ │ │ ├── overpass2-lightitalic.ttf │ │ │ │ ├── overpass2-lightitalic.woff │ │ │ │ ├── overpass2-regular.ttf │ │ │ │ ├── overpass2-regular.woff │ │ │ │ └── overpass2.css │ │ │ ├── oxygen │ │ │ │ ├── oxygen-bold.ttf │ │ │ │ ├── oxygen-bold.woff │ │ │ │ ├── oxygen-regular.ttf │ │ │ │ ├── oxygen-regular.woff │ │ │ │ └── oxygen.css │ │ │ └── quicksand │ │ │ │ ├── quicksand-bold.ttf │ │ │ │ ├── quicksand-bold.woff │ │ │ │ ├── quicksand-regular.ttf │ │ │ │ ├── quicksand-regular.woff │ │ │ │ └── quicksand.css │ │ ├── head.min.js │ │ ├── offline-v1.css │ │ ├── offline-v2.css │ │ ├── offline.js │ │ ├── reveal-plugins │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── markdown │ │ │ │ ├── markdown.js │ │ │ │ └── marked.js │ │ │ └── notes │ │ │ │ ├── notes.html │ │ │ │ └── notes.js │ │ ├── reveal.css │ │ └── reveal.min.js │ │ └── rdo-repos-overview │ │ ├── 1748213-drawing2.svg │ │ ├── 3124989-Baby-Meme-Blank-01.jpg │ │ ├── 3125043-rdo-packages.png │ │ ├── 3125096-Victory-Baby-Meme-08.jpg │ │ └── 3157550-rdo-logo-white.png └── rdo-day-fosdem-2016.html.md ├── favicon-rdo.ico ├── feed.xml.builder ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff └── fontawesome-webfont.woff2 ├── hardware ├── home │ └── index.html.md ├── index.html.md ├── minicluster.html.md └── recommended.html.md ├── humans.txt ├── images ├── CI1.png ├── CI2.png ├── CI3.png ├── CloudSIG-dependencies.graphml ├── CloudSIG-dependencies.png ├── Neutron_private_floating_ip.png ├── OpenStackSummitBarcelonaDuck.jpg ├── Openstack-distribution.png ├── SF_basic_gui.png ├── alfredo.jpg ├── app1.png ├── app2.png ├── app3.png ├── app4.png ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── approval.png ├── ara.png ├── bg-boxes-single.png ├── bg-boxes.png ├── bg-lens.jpg ├── blog │ ├── 2017ContributorSurvey │ │ ├── affiliation.png │ │ ├── difficulties.png │ │ ├── ease.png │ │ ├── frequency.png │ │ └── type.png │ ├── RDO_trunk_pins.png │ ├── dlrn-infra-2.graphml │ ├── dlrn-infra-2.png │ ├── dlrn-infra.graphml │ ├── dlrn-infra.png │ ├── ducks.jpg │ ├── rdo-ci-2.png │ ├── rdo-ftbfs-dashboard.png │ ├── rdo-trunk-high-level.odg │ ├── rdo-trunk-high-level.png │ ├── rdo-tshirt.jpg │ ├── rdo-zuul-ci.png │ ├── rdopkg_pkgenv_0.44.png │ ├── restfuzz_graph.jpg │ ├── restfuzz_network_topology.jpg │ ├── survey_deploy.png │ ├── survey_industry.png │ ├── survey_size.png │ ├── survey_use.png │ └── survey_version.png ├── blog_cloud.png ├── bookmark │ ├── _README.md │ └── rdo_bookmark.odt ├── cbs-requirements.png ├── centos_fedora_meetup_med.jpg ├── cumulus_networks.png ├── documentation │ ├── minicluster_1.jpg │ ├── minicluster_1_thumb.jpg │ ├── minicluster_2.jpg │ ├── minicluster_2_thumb.jpg │ ├── rdo-full-workflow-high-level-no-buildlogs.png │ ├── rdo-full-workflow-high-level.png │ ├── rdo-workflow.jpg │ └── rdo-workflow.odg ├── duck.png ├── ducks │ ├── all_ducks.jpg │ ├── austin_duck.jpg │ ├── barcelona_duck.jpg │ ├── berlin_duck.jpg │ ├── boston_duck.jpg │ ├── denver_duck.jpg │ ├── enovance_duck.jpg │ ├── sydney_duck.jpg │ ├── tokyo_duck.jpg │ └── vancouver_duck.jpg ├── favicon_base.png ├── gerrit.png ├── github-mark-small.svg ├── homelab │ ├── dmsimard_home_lab.png │ ├── donny_davis_1.jpg │ ├── donny_davis_1_full.jpg │ ├── donny_davis_1_thumb.jpg │ ├── donny_davis_2.jpg │ ├── donny_davis_2_full.jpg │ └── jpena.png ├── intro-stack.png ├── logo │ ├── RDO_LOGO.png │ ├── RDO_LOGO_square.png │ ├── RDO_Logo.jpg │ ├── RDO_icon.jpg │ └── RDO_icon.xcf ├── neutron_architecture.png ├── new-dependencies-2.png ├── new-dependencies.graphml ├── new-dependencies.png ├── newredhat.png ├── newsletter.jpg ├── policy.png ├── pool.jpg ├── prague_red_hat_med.jpg ├── rdo-logo-white.png ├── red-hat-shadowman-small.svg ├── sf-credential_id.png ├── sf-deployment.png ├── sf-gerrit.png ├── sf-login_page.png ├── sf-project.png ├── ssh-keys.png ├── wiki │ ├── 10-name_virtual_netowrk.png │ ├── 11-ipv4_network_setup.png │ ├── 12-misc_network_setup.png │ ├── 13-finalize_network_setup.png │ ├── 14-clone_controller.png │ ├── 15-add_hardware.png │ ├── 16-add_network_interface.png │ ├── 8-configure_cpu.png │ ├── 9-new_virtual_network.png │ ├── Cern.jpg │ ├── Clients-stable-branches.png │ ├── Email.png │ ├── Facebook.gif │ ├── G_plus.jpg │ ├── Github.png │ ├── HA_Architecture-collapsed.png │ ├── HA_Architecture-current.png │ ├── HA_Architecture-full.png │ ├── HA_Architecture-future.png │ ├── Hw_discovery_seq.jpg │ ├── InstackSetup.png │ ├── LTWQSvm.png │ ├── Manage_storage.png │ ├── Memory_cpu.png │ ├── Microsoft_XSS.png │ ├── Net_install.png │ ├── New_vm--20130906173413.png │ ├── New_vm.png │ ├── New_volume.png │ ├── Openstack-distribution.png │ ├── Rdo-manager-logo.png │ ├── Rdo-update.png │ ├── Redhat_logo.jpg │ ├── Runninganinstance-step2-1.png │ ├── Runninganinstance-step2-2.png │ ├── Runninganinstance-step3-1.png │ ├── Runninganinstance-step3-2.png │ ├── Runninganinstance-step4.png │ ├── Runninganinstance-step5-1.png │ ├── Runninganinstance-step5-2.png │ ├── Runninganinstance-step6.png │ ├── Script-.png │ ├── TripleO_Network_Diagram_.jpg │ ├── Twitter.gif │ ├── Vm_storage_cfg.png │ ├── php6lT2BC--20140310042728.png │ ├── phpfbvZ3v--20140405122521.png │ └── rdo_bookmark.pdf └── zuul.png ├── index.html.haml ├── infra ├── dr-diagram.png ├── index.html.md ├── maintenance-windows.html.md ├── review-rdo-infra-core.html.md └── service-continuity.html.md ├── install ├── adding-a-compute-node.html.md ├── index.html.md ├── install-with-ceph.html.md ├── linuxone.html.md ├── packstack.html.md ├── selinux.html.md ├── setting-up-memcached.html.md ├── uninstalling-rdo.html.md ├── upgrading-rdo-1.html.adoc ├── upgrading-rdo-2.html.adoc ├── upgrading-rdo-3.html.adoc └── upgrading-rdo.html.md ├── javascripts ├── _bootstrap-includes.js ├── admin.js ├── application.js ├── lib │ ├── _copy_custom_libs_here.js │ └── cal-widget.js.coffee └── vendor │ ├── codemirror.js │ ├── jquery.cookie.js │ ├── marked.js │ ├── modernizr.js │ ├── noconsole.js.coffee │ └── string_score.coffee ├── layouts ├── _blog_pagination.haml ├── _blog_post.haml ├── _blog_posts.haml ├── _footer.haml ├── _footer_custom.haml ├── _header.haml ├── _nav.haml ├── _navbar.haml ├── _navbar_static_top.haml ├── _production_only.haml ├── admin.html.haml ├── basic.html.haml ├── docs.html.haml ├── layout.html.haml ├── page.html.haml ├── post.html.haml ├── pullheadings.haml ├── structure.haml └── toc.haml ├── legal ├── index.html.md ├── legal.html.md ├── privacy.html.md └── terms-of-use.html.md ├── networking ├── configuring-neutron-with-ovs-and-gre-tunnels-using-quickstack.html.md ├── difference-between-floating-ip-and-private-ip.html.md ├── floating-ip-range.html.md ├── index.html.md ├── lbaas.html.md ├── midonet-integration.html.md ├── midonet-integration_mem-54-rhel7-rhosp10.html.md ├── midonet-integration_midonet-54-rhel7-rhosp10.html.md ├── multi-node-openstack-with-neutron-with-libvirt,-netsted-kvm,-virt-manager-and-qcow2-images.html.md ├── networking-in-too-much-detail.html.md ├── neutron-gbp.html.md ├── neutron-with-existing-external-network.html.md └── using-gre-tenant-networks.html.md ├── newsletter ├── 2015 │ ├── april.html.md │ ├── august.html.md │ ├── december.html.md │ ├── february.html.md │ ├── index.html.md │ ├── january.html.md │ ├── july.html.md │ ├── june.html.md │ ├── march.html.md │ ├── may.html.md │ ├── november.html.md │ ├── october.html.md │ └── september.html.md ├── 2016 │ ├── april.html.md │ ├── august.html.md │ ├── december.html.md │ ├── february.html.md │ ├── index.html.md │ ├── january.html.md │ ├── july.html.md │ ├── june.html.md │ ├── march.html.md │ ├── may.html.md │ ├── november.html.md │ ├── october.html.md │ └── september.html.md ├── 2017 │ ├── april.html.md │ ├── august.html.md │ ├── december.html.md │ ├── february.html.md │ ├── january.html.md │ ├── june.html.md │ ├── march.html.md │ ├── november.html.md │ ├── october.html.md │ └── september.html.md ├── 2018 │ ├── april.html.md │ ├── august.html.md │ ├── december.html.md │ ├── february.html.md │ ├── january.html.md │ ├── july.html.md │ ├── june.html.md │ ├── march.html.md │ ├── may.html.md │ ├── november.html.md │ ├── october.html.md │ └── september.html.md ├── 2019 │ ├── april.html.md │ ├── august.html.md │ ├── december.html.md │ ├── february.html.md │ ├── january.html.md │ ├── july.html.md │ ├── june.html.md │ ├── march.html.md │ ├── may.html.md │ ├── november.html.md │ ├── october.html.md │ └── september.html.md ├── 2020 │ ├── april.html.md │ ├── february.html.md │ ├── january.html.md │ ├── march.html.md │ └── may.html.md ├── 2013.html.md ├── 2014-august.html.md ├── 2014-december.html.md ├── 2014-july.html.md ├── 2014-june.html.md ├── 2014-may.html.md ├── 2014-november.html.md ├── 2014-october.html.md ├── 2014-september.html.md ├── 2014.html.md ├── TEMPLATE.txt ├── index.html.md └── newsletterthanks.html.md ├── rdo ├── bugzilla-ownership.html.md ├── centos.html.md ├── ducks.html.md ├── faq.html.md ├── index.html.md ├── matrix.html.md ├── projectsinrdo.html.md ├── rdo-videos.html.md ├── release-cadence.html.md └── release-checklist.html.md ├── resources ├── image-resources.html.md └── use-a-ci-cd-workflow-to-manage-tripleo-life-cycle-full.html.md ├── robots.txt ├── search-results.json.haml ├── search.html.haml ├── storage ├── Cinder │ ├── setting-up-ha-of-cinder.html.md │ ├── using-dell-equallogic-for-cinder-with-rdo.html.md │ ├── using-netapp-for-cinder-with-rdo.html.md │ ├── using-nfs-for-cinder-with-rdo.html.md │ └── using-thinlvm-for-cinder-with-rdo.html.md ├── Glance │ ├── setting-up-ha-of-glance.html.md │ ├── using-ceph-for-glance-with-rdo.html.md │ └── using-swift-for-glance-with-rdo.html.md ├── Swift │ └── Liberty │ │ └── using-swift-for-glance-with-rdo-liberty.html.md └── index.html.md ├── stylesheets ├── 404.css.sass ├── _application-custom.css.sass ├── _bootstrap-custom.sass ├── _bootstrap-includes.sass ├── _fonts.css ├── application.css.sass ├── fonts │ └── fonts.css ├── images │ ├── audio-icon.png │ ├── external-link-ltr-icon.png │ ├── file-icon.png │ ├── lock-icon.png │ ├── mail-icon.png │ ├── news-icon.png │ └── talk-icon.png ├── lib │ ├── admin.css.sass │ ├── blog.css.sass │ ├── blog.sass │ ├── cal-widget.sass │ ├── docbrowser.sass │ ├── events.sass │ ├── juvia-comments.sass │ ├── markdown.sass │ ├── mixin │ │ ├── grayscale.sass │ │ └── responsive-image.sass │ ├── quicklinks.sass │ ├── screen.sass │ ├── scrollbar-on.sass │ ├── search.sass │ ├── site.sass │ ├── stickyfooter.sass │ ├── svg-fallback.sass │ ├── target-enhancements.sass │ ├── theme.sass │ ├── theme │ │ └── footer.sass │ └── toc-md.sass ├── print.css.sass └── vendor │ ├── lepture-editor.css.sass │ ├── main.css │ ├── normalize.css │ └── solarized-light.sass ├── tag.html.haml ├── test.html.asciidoc ├── testday ├── index.html.md ├── pike │ ├── final.html.md │ ├── milestone1.html.md │ ├── milestone2.html.md │ ├── milestone3.html.md │ ├── workarounds1.html.md │ ├── workarounds2.html.md │ └── workarounds3.html.md ├── queens │ ├── milestone1.html.md │ ├── milestone2.html.md │ └── milestone3.html.md ├── rocky │ ├── final.html.md │ ├── milestone1.html.md │ ├── milestone2.html.md │ └── milestone3.html.md ├── settingup.html.md ├── stein │ ├── milestone1.html.md │ └── milestone3.html.md ├── tests │ ├── ceilometer │ │ └── h │ │ │ ├── alarmaggregation.html.md │ │ │ ├── alarmhistoryapi.html.md │ │ │ ├── alarmpartitioning.html.md │ │ │ ├── alarmthresholdevaluation.html.md │ │ │ └── unitsrateofchangeconversion.html.md │ ├── index.html.md │ ├── ironic-overcloud.html.md │ ├── post-installation-tests.html.md │ └── storage │ │ ├── cinder.html.md │ │ └── glance.html.md ├── train │ ├── milestone1.html.md │ └── milestone3.html.md ├── ussuri │ ├── milestone1.html.md │ └── milestone3.html.md ├── victoria │ ├── milestone1.html.md │ ├── milestone3.html.md │ └── releasecandidate1.html.md ├── wallaby │ ├── milestone1.html.md │ └── milestone3.html.md └── workarounds.html.md ├── tripleo └── index.html.md ├── troubleshooting ├── index.html.haml ├── networking.html.md └── qpid-errors.html.md ├── use ├── bookmarks.html.md ├── bookmarks │ ├── 01-tripleo-cheatsheet-deploying-tripleo.pdf │ ├── openstack_runs_on_redhat-portrait-A4.pdf │ ├── rdo_bookmark.pdf │ ├── redhat_knows_openstack-portrait-A4.pdf │ └── redhat_works_with_openstack-portrait-A4.pdf ├── hangouts.html.md └── index.html.md ├── user-stories └── index.html.md └── what ├── dlrn.html.md ├── index.html.md ├── new-package.html.md ├── pipeline.html.md ├── promotion-pipeline.html.md ├── release-overview.html.md ├── release.html.md ├── repos.html.md ├── trunk-repos.html.md ├── workflow-overview.html.md └── workflow.html.md /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | # 3 | # If you find yourself ignoring temporary files generated by your text editor 4 | # or operating system, you probably want to add a global ignore instead: 5 | # git config --global core.excludesfile ~/.gitignore_global 6 | 7 | # Ignore bundler config 8 | /.bundle 9 | 10 | # Ignore the build directories 11 | /build 12 | /planet_cache 13 | data/dashboard/projects 14 | 15 | # Ignore Sass' cache 16 | /.sass-cache 17 | /.cache 18 | 19 | # Ignore .DS_store file 20 | .DS_Store 21 | 22 | # Ignore emacs .. erm its backup files.. 23 | *~ 24 | 25 | # Ignore pycharm 26 | .idea* 27 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=review.rdoproject.org 3 | port=29418 4 | project=rdo-website 5 | defaultbranch=master 6 | -------------------------------------------------------------------------------- /.zuul.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | - job: 3 | name: rdo-website-build 4 | parent: base 5 | description: Build RDO website 6 | run: playbooks/build.yaml 7 | nodeset: rdo-centos-7 8 | 9 | - project: 10 | name: rdo-website 11 | check: 12 | jobs: 13 | - rdo-website-build 14 | gate: 15 | jobs: 16 | - rdo-website-build 17 | 18 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM quay.io/centos/centos:7 2 | MAINTAINER jberkus@redhat.com 3 | WORKDIR /tmp 4 | RUN yum update -y && yum install -y tar libcurl-devel zlib-devel patch rubygem-bundler ruby-devel git make gcc gcc-c++ redhat-rpm-config && yum clean all 5 | 6 | ADD config.rb /tmp/config.rb 7 | #ADD data /tmp/data 8 | ADD Gemfile /tmp/Gemfile 9 | ADD Gemfile.lock /tmp/Gemfile.lock 10 | ADD lib /tmp/lib 11 | #ADD source /tmp/source 12 | 13 | RUN bundle install 14 | 15 | EXPOSE 4567 16 | ENTRYPOINT [ "bundle", "exec" ] 17 | CMD [ "middleman", "server" ] 18 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Unless otherwise specified, the code in the repository is available under 2 | the MIT license. 3 | 4 | --- 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2014 Red Hat, Inc. 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | -------------------------------------------------------------------------------- /data/docs.yml: -------------------------------------------------------------------------------- 1 | # This is the navigation for Documentation browser 2 | - Section Title: 3 | Document Title: /documentation/ 4 | - Another Section: 5 | Foo Bar: /documentation/foo/ -------------------------------------------------------------------------------- /data/events/2015/RDO-TestDays.yml: -------------------------------------------------------------------------------- 1 | name: RDO Test Days 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: Mitaka Milestone 1 Test Day 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2015-12-10 00:01 UTC 11 | end: 2015-12-10 23:59 UTC 12 | 13 | - title: Mitaka Milestone 1 Test Day 14 | location: rdo channel on Freenode 15 | speaker: RDO 16 | start: 2015-12-11 00:01 UTC 17 | end: 2015-12-11 23:59 UTC 18 | 19 | -------------------------------------------------------------------------------- /data/events/2016/RDO-DocDays.yml: -------------------------------------------------------------------------------- 1 | name: RDO Doc Days 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: RDO Doc Day 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2016-01-20 00:01 UTC 11 | end: 2016-01-21 23:58 UTC 12 | description: | 13 | Come help make RDO better by improving the documentation and the 14 | website. Details at https://www.rdoproject.org/events/docdays 15 | 16 | 17 | - title: RDO Doc Day 18 | location: rdo channel on Freenode 19 | speaker: RDO 20 | start: 2016-03-03 00:01 UTC 21 | end: 2016-03-04 23:58 UTC 22 | description: | 23 | Come help make RDO better by improving the documentation and the 24 | website. Details at https://www.rdoproject.org/events/docdays 25 | 26 | -------------------------------------------------------------------------------- /data/events/2017/RDO-Community.yml: -------------------------------------------------------------------------------- 1 | name: RDO Commuity events 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: Doc Sprint Day 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2017-06-08 00:01 CET 11 | end: 2017-06-09 23:59 CET 12 | description: | 13 | Come help improve the RDO documentation, RDO website, and upstream documentation. Join RDO community menbers in identifying obsolete or incorrect documentation, improving the website information architecture, and writing missing documents. Details at https://www.rdoproject.org/events/docdays/ 14 | 15 | 16 | -------------------------------------------------------------------------------- /data/events/2017/RDO-TestDays.yml: -------------------------------------------------------------------------------- 1 | name: RDO Test Days 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: Pike Milestone 2 Test Day 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2017-06-15 00:01 UTC 11 | end: 2017-06-16 23:59 UTC 12 | description: | 13 | Come help make RDO better by testing the Pike Milestone 2 packages. Details at https://www.rdoproject.org/testday/pike/milestone2 14 | 15 | - title: Pike Milestone 3 Test Day 16 | location: rdo channel on Freenode 17 | speaker: RDO 18 | start: 2017-08-03 00:01 UTC 19 | end: 2017-08-04 23:59 UTC 20 | description: | 21 | Come help make RDO better by testing the Pike Milestone 3 packages. Details at https://www.rdoproject.org/testday/pike/milestone3 22 | 23 | - title: Pike Final Test Day 24 | location: rdo channel on Freenode 25 | speaker: RDO 26 | start: 2017-09-07 00:01 UTC 27 | end: 2017-09-08 23:59 UTC 28 | description: | 29 | Come help make RDO better by testing the Pike Final Release packages. Details at https://www.rdoproject.org/testday/pike/final 30 | 31 | -------------------------------------------------------------------------------- /data/events/2018/CentOSDojoCERN.yml: -------------------------------------------------------------------------------- 1 | name: CentOS Dojo / RDO Day at CERN 2 | location: Geneva, Switzerland 3 | start: 2018-10-19 4 | end: 2018-10-19 5 | tags: centos rdo 6 | description: | 7 | The CentOS Dojo's are a one day event, organized around the world, that bring together people from the CentOS Communities to talk about systems administration, best practices in Linux centric activities and emerging technologies of note. The emphasis is to find local speakers and tutors to come together and talk about things that they care about most, and to share stories from their experiences working with CentOS in various scenarios. 8 | 9 | More information is available at 10 | 11 | -------------------------------------------------------------------------------- /data/events/2018/DevConfCZ.yml: -------------------------------------------------------------------------------- 1 | name: DevConf.cz 2 | location: Brno, Czech Republic 3 | start: 2018-01-26 4 | end: 2018-01-28 5 | tags: ovirt rdo 6 | description: | 7 | DevConf.cz (Developer Conference) is a free annual conference for all Linux and JBoss Developers, Admins and Linux users organized by Red Hat Czech Republic in cooperation with the Fedora and JBoss communities. 8 | 9 | Additional details about the conference are available at 10 | . 11 | -------------------------------------------------------------------------------- /data/events/2018/DevConfus.yml: -------------------------------------------------------------------------------- 1 | name: DevConf.us 2 | location: Boston, MA 3 | start: 2018-08-17 4 | end: 2018-08-19 5 | tags: ovirt rdo gluster ceph 6 | description: | 7 | DevConf.us (Developer Conference) is a free annual conference for all Linux and JBoss Developers, Admins and Linux users organized by Red Hat in cooperation with the Fedora and JBoss communities and Boston University. 8 | 9 | Additional details about the conference are available at 10 | . 11 | -------------------------------------------------------------------------------- /data/events/2018/OpenStackPTG.yml: -------------------------------------------------------------------------------- 1 | name: OpenStack PTG 2 | location: Dublin, Ireland 3 | start: 2018-02-26 4 | end: 2018-03-02 5 | tags: rdo 6 | description: | 7 | The Project Teams Gathering (PTG) is a new event organized by the OpenStack Foundation. Every six months (Q1 and Q3), at the beginning of the development phase of a release cycle, project teams will meet in person to discuss priorities for the upcoming cycle, iterate quickly on solutions for complex issues, and make fast progress on critical items. 8 | 9 | More information is available at: 10 | 11 | -------------------------------------------------------------------------------- /data/events/2018/OpenStackSummitEU.yml: -------------------------------------------------------------------------------- 1 | name: OpenStack Summit EU 2 | location: Berlin, Germany 3 | start: 2018-11-13 4 | end: 2018-11-15 5 | tags: centos rdo 6 | description: | 7 | The open infrastructure landscape is changing, and so is the Summit. Now that users are integrating dozens of open source tools into a modern stack that reaches well beyond the scope of OpenStack, we’re re-organizing the event to focus on specific problem domains like container infrastructure, edge computing and CI/CD and we are focusing on the hard work of integrating all of these tools developed in disparate communities. This is the essential work of 2018 and beyond, to ensure that open infrastructure is truly a viable path for operators. 8 | 9 | More information is available at: 10 | 11 | -------------------------------------------------------------------------------- /data/events/2018/OpenStackSummitNA.yml: -------------------------------------------------------------------------------- 1 | name: OpenStack Summit NA 2 | location: Vancouver, BC 3 | start: 2018-05-21 4 | end: 2018-05-24 5 | tags: centos rdo 6 | description: | 7 | The open infrastructure landscape is changing, and so is the Summit. Now that users are integrating dozens of open source tools into a modern stack that reaches well beyond the scope of OpenStack, we’re re-organizing the event to focus on specific problem domains like container infrastructure, edge computing and CI/CD and we are focusing on the hard work of integrating all of these tools developed in disparate communities. This is the essential work of 2018 and beyond, to ensure that open infrastructure is truly a viable path for operators. 8 | 9 | More information is available at: 10 | 11 | -------------------------------------------------------------------------------- /data/events/2018/RDO-Community.yml: -------------------------------------------------------------------------------- 1 | name: RDO Commuity events 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: Doc Sprint Day 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2017-06-08 00:01 CET 11 | end: 2017-06-09 23:59 CET 12 | description: | 13 | Come help improve the RDO documentation, RDO website, and upstream documentation. Join RDO community menbers in identifying obsolete or incorrect documentation, improving the website information architecture, and writing missing documents. Details at https://www.rdoproject.org/events/docdays/ 14 | 15 | 16 | -------------------------------------------------------------------------------- /data/events/2018/RDO-TestDays.yml: -------------------------------------------------------------------------------- 1 | name: RDO Test Days 2 | type: series 3 | tags: RDO 4 | 5 | talks: 6 | 7 | - title: Rocky Milestone 1 Test Days 8 | location: rdo channel on Freenode 9 | speaker: RDO 10 | start: 2018-05-03 00:01 UTC 11 | end: 2018-05-04 23:59 UTC 12 | description: | 13 | Come help make RDO better by testing the Rocky Milestone 1 packages. Details at https://www.rdoproject.org/testday/rocky/milestone1 14 | 15 | - title: Rocky Milestone 2 Test Days 16 | location: rdo channel on Freenode 17 | speaker: RDO 18 | start: 2018-06-14 00:01 UTC 19 | end: 2018-06-15 23:59 UTC 20 | description: | 21 | Come help make RDO better by testing the Rocky Milestone 2 packages. Details at https://www.rdoproject.org/testday/rocky/milestone2 22 | 23 | - title: Rocky Milestone 3 Test Days 24 | location: rdo channel on Freenode 25 | speaker: RDO 26 | start: 2018-08-02 00:01 UTC 27 | end: 2018-08-03 23:59 UTC 28 | description: | 29 | Come help make RDO better by testing the Rocky Milestone 3 Release packages. Details at https://www.rdoproject.org/testday/rocky/milestone3 30 | 31 | -------------------------------------------------------------------------------- /data/events/2018/RHSummit.yml: -------------------------------------------------------------------------------- 1 | name: Red Hat Summit 2 | location: San Francisco, CA 3 | start: 2018-05-08 4 | end: 2018-05-10 5 | tags: ovirt rdo gluster ceph 6 | description: | 7 | Red Hat Summit is for anyone interested in open source. It just so happens our open source solutions power 90% of Fortune 500 companies, and we’d love to show you why. 8 | 9 | Additional details about the conference are available at 10 | . 11 | -------------------------------------------------------------------------------- /data/events/2018/SCALE.yml: -------------------------------------------------------------------------------- 1 | name: SCaLE 2 | location: Pasadena, CA 3 | start: 2018-03-08 4 | end: 2018-03-11 5 | tags: ovirt rdo 6 | description: | 7 | SCaLE is the largest community-run open-source and free software conference in North America. It is held annually in California. 8 | 9 | Additional details about the conference are available at 10 | . 11 | -------------------------------------------------------------------------------- /data/events/2019/DevConfCZ.yml: -------------------------------------------------------------------------------- 1 | name: DevConf.cz 2 | location: Brno, Czech Republic 3 | start: 2019-01-25 4 | end: 2019-01-27 5 | tags: ovirt rdo 6 | description: | 7 | DevConf.cz (Developer Conference) is a free annual conference for all Linux and JBoss Developers, Admins and Linux users organized by Red Hat Czech Republic in cooperation with the Fedora and JBoss communities. 8 | 9 | Additional details about the conference are available at 10 | 11 | -------------------------------------------------------------------------------- /data/events/2019/FOSDEM.yml: -------------------------------------------------------------------------------- 1 | name: FOSDEM 2 | location: Brussels, Belgium 3 | start: 2019-02-02 4 | end: 2019-02-03 5 | tags: ovirt rdo 6 | description: | 7 | FOSDEM is a free event for software developers to meet, share ideas and collaborate. 8 | 9 | Additional details about the conference are available at 10 | 11 | -------------------------------------------------------------------------------- /data/events/2019/RHSummit.yml: -------------------------------------------------------------------------------- 1 | name: Red Hat Summit 2 | location: Boston, MA 3 | start: 2018-05-07 4 | end: 2018-05-09 5 | tags: ovirt rdo gluster ceph 6 | description: | 7 | Red Hat Summit is for anyone interested in open source. It just so happens our open source solutions power 90% of Fortune 500 companies, and we’d love to show you why. 8 | 9 | Additional details about the conference are available at 10 | . 11 | -------------------------------------------------------------------------------- /data/events/2019/SCaLE.yml: -------------------------------------------------------------------------------- 1 | name: SCaLE 17x 2 | location: Pasadena, CA 3 | start: 2019-03-07 4 | end: 2019-03-10 5 | tags: ovirt rdo 6 | description: | 7 | SCaLE is the largest community-run open-source and free software conference in North America. It is held annually in the greater Los Angeles area. 8 | 9 | Additional details about the conference are available at 10 | 11 | -------------------------------------------------------------------------------- /data/events/2020/RDO-TestDays.yml: -------------------------------------------------------------------------------- 1 | name: RDO Test Days 2 | tags: RDO 3 | 4 | talks: 5 | 6 | - title: Victoria Release Candidate Test Days 7 | location: rdo channel on Freenode 8 | speaker: RDO 9 | start: 2020-10-05 00:01 UTC 10 | end: 2020-10-06 23:59 UTC 11 | description: | 12 | Come help make RDO better by testing the Victoria Release Candidate 1 packages. Details at https://www.rdoproject.org/testday/victoria/releasecandidate1 13 | 14 | -------------------------------------------------------------------------------- /data/events/2023/RDO-Community.yml: -------------------------------------------------------------------------------- 1 | name: RDO Community 2 | tags: RDO 3 | 4 | talks: 5 | 6 | - title: RDO at FOSDEM 7 | location: https://lists.rdoproject.org/archives/list/users@lists.rdoproject.org/thread/KANVO4D3KAFJLZW367CESC4XIS6V6QCT/ 8 | speaker: RDO 9 | start: 2023-02-04 08:30 UTC 10 | end: 2023-02-05 17:15 UTC 11 | description: | 12 | Come meet fellow RDO Community members at the CentOS and RDO stand during FOSDEM the first weekend in February 13 | -------------------------------------------------------------------------------- /data/navigation.yml: -------------------------------------------------------------------------------- 1 | - Home: '/' 2 | - Use: /use/ 3 | - Contribute: /contribute/ 4 | - Events: /events/ 5 | - Blog: /blog/ 6 | - Search: /search/ 7 | -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # install everything in a docker container which should 3 | # permit us to have the same env on any system. 4 | 5 | # set SElinux context to allow docker to read the source directory 6 | chcon -Rt svirt_sandbox_file_t source/ 7 | chcon -Rt svirt_sandbox_file_t data/ 8 | 9 | # requires docker and being in the right group 10 | docker build -t middleman . 11 | docker run --rm -p 4567:4567 -v "$(pwd)"/source:/tmp/source:ro -v "$(pwd)"/data:/tmp/data middleman 12 | -------------------------------------------------------------------------------- /lib/monkeypatch_blog_date.rb: -------------------------------------------------------------------------------- 1 | ## Monkeypatch: make mismatched dates fail gracefully, not bomb out 2 | # 3 | # Original code is at: 4 | # https://github.com/middleman/middleman-blog/blob/master/lib/middleman-blog/blog_article.rb#L179 5 | # 6 | # (Please update if the code differs) 7 | 8 | Middleman::Blog::BlogArticle.module_eval do 9 | def date 10 | return @_date if @_date 11 | 12 | frontmatter_date = data['date'] 13 | 14 | # First get the date from frontmatter 15 | @_date = if frontmatter_date.is_a? Time 16 | frontmatter_date.in_time_zone 17 | else 18 | Time.zone.parse(frontmatter_date.to_s) 19 | end 20 | 21 | # Next figure out the date from the filename 22 | source_vars = blog_data.source_template.variables 23 | 24 | if source_vars.include?('year') && 25 | source_vars.include?('month') && 26 | source_vars.include?('day') 27 | 28 | filename_date = Time.zone.local path_part('year').to_i, 29 | path_part('month').to_i, 30 | path_part('day').to_i 31 | 32 | if @_date 33 | unless @_date.to_date == filename_date.to_date 34 | # Don't cause an error here; just fallback to using the 35 | # metadata date 36 | 37 | puts "Warning: Frontmatter date (#{@_date}) mismatch in #{path}" 38 | end 39 | else 40 | @_date = filename_date.to_time.in_time_zone 41 | end 42 | end 43 | 44 | unless @_date 45 | fail "Blog post #{path} needs a date in its filename or frontmatter" 46 | end 47 | 48 | @_date 49 | end 50 | end 51 | -------------------------------------------------------------------------------- /playbooks/build.yaml: -------------------------------------------------------------------------------- 1 | - hosts: all 2 | tasks: 3 | - name: Install required packages 4 | become: true 5 | package: 6 | name: 7 | - rubygem-bundler 8 | - ruby-devel 9 | - rubygems-devel 10 | - gcc 11 | - gcc-c++ 12 | - make 13 | - redhat-rpm-config 14 | - zlib-devel 15 | - ImageMagick 16 | state: present 17 | 18 | - name: Build RDO website 19 | shell: 20 | cmd: | 21 | export PATH=$PATH:$HOME/bin 22 | bundle install 23 | bundle exec middleman build --verbose 24 | chdir: '{{ zuul.project.src_dir }}' 25 | 26 | -------------------------------------------------------------------------------- /run-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | bundle install --verbose && bundle exec middleman $@ 4 | -------------------------------------------------------------------------------- /scripts/get_blogs.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | use strict; 3 | use warnings; 4 | 5 | use XML::Feed; 6 | use URI; 7 | use XML::Simple; 8 | use LWP::Simple; 9 | use Term::ProgressBar; 10 | 11 | $|++; 12 | 13 | my $url = URI->new("http://planet.rdoproject.org/atom.xml"); 14 | 15 | my $feed = XML::Feed->parse($url); 16 | 17 | open (my $md, '>', 'blogs.md'); 18 | open (my $tweets, '>', 'blogs.tweets.csv'); 19 | 20 | my $p = Term::ProgressBar->new({count => 60}); 21 | 22 | foreach ( $feed->entries ) { 23 | 24 | $p->update(); 25 | 26 | print $md "**" . $_->title . "** by " . $_->author . "\n\n"; 27 | my $body = $_->content->body; 28 | 29 | # Or possibly the summary? 30 | if ( !$body ) { 31 | $body = $_->summary->body; 32 | $body =~ s/\n.*//is 33 | } 34 | 35 | $body =~ s/^.*?]*?>//i; 36 | $body =~ s!

.*$!!is; 37 | $body =~ s/<[^>]+>//igs; # Strip HTML 38 | $body =~ s/[\r\n]/ /gs; # Strip newlines from whatever's left 39 | print $md "> $body\n\n"; 40 | 41 | my $link = $_->link; 42 | 43 | # tm3.org URL shortener 44 | # my $shorten = "http://tm3.org/yourls-api.php?signature=9d8634af7a&action=shorturl&url=" . $link; 45 | # my $parser = new XML::Simple; 46 | # my $content = get $shorten or die "Unable to get $url\n"; 47 | # my $data = $parser->XMLin($content); 48 | # my $short = $data->{shorturl}; 49 | 50 | # print $md "Read more at [$short]($short)\n\n\n"; 51 | print $md "Read more at [$link]($link)\n\n\n"; 52 | 53 | print $tweets '"01/01/2018 00:00:00","' . $_->title 54 | . ' #OpenStack #RDOCommunity","' 55 | . $link . '"' . "\n"; 56 | } 57 | 58 | close $md; 59 | close $tweets; 60 | 61 | print "\nDone\n"; 62 | -------------------------------------------------------------------------------- /scripts/get_stats: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # scp raspberry:rdo/logs/stats.csv ./ 3 | scp aws.rdoproject.org:/mnt/download_log_archives/stats.csv ./ 4 | 5 | 6 | -------------------------------------------------------------------------------- /scripts/get_uniques: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # scp raspberry:rdo/logs/stats.csv ./ 3 | ssh aws.rdoproject.org "/mnt/download_log_archives/resolved/new_hosts.pl > /mnt/download_log_archives/resolved/unique_hosts.csv" 4 | scp aws.rdoproject.org:/mnt/download_log_archives/resolved/unique_hosts.csv ./ 5 | 6 | -------------------------------------------------------------------------------- /scripts/unanswered.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import urllib2 3 | import json 4 | import sys 5 | import argparse 6 | 7 | # Command-line switches and arguments 8 | parser = argparse.ArgumentParser() 9 | parser.add_argument("-t", "--tags", help="Output questions by tags", action="store_true") 10 | parser.add_argument("keyword", nargs='?', type=str, default='rdo'); 11 | args = parser.parse_args() 12 | 13 | url = 'https://ask.openstack.org/en/api/v1/questions/?scope=unanswered&query=' + args.keyword + '&sort=age-desc' 14 | 15 | response = urllib2.urlopen(url) 16 | m = response.read() 17 | r = json.loads(m) 18 | questions = r['questions'] 19 | count = r['count'] 20 | tags = {} 21 | 22 | print str(count) + " unanswered questions:" 23 | 24 | for q in questions: 25 | if not args.tags: 26 | print "\n" + q['title'] + " " + q['url'] + "\nTags: " + ", ".join( q['tags'] ) 27 | 28 | for t in q['tags']: 29 | if t not in tags: 30 | tags[t] = "* " + q['title'] + ": " + q['url'] 31 | else: 32 | tags[t]+= "\n" + "* " + q['title'] + ": " + q['url'] 33 | 34 | print "\n" 35 | 36 | if args.tags: 37 | for t in sorted(tags): 38 | print "\n\n" + t + "\n" + tags[t] 39 | 40 | 41 | -------------------------------------------------------------------------------- /scripts/whats_in_rdo.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import yaml 3 | import os 4 | 5 | os.system("rm -f rdo.yml") 6 | os.system("wget -q https://raw.githubusercontent.com/redhat-openstack/rdoinfo/master/rdo.yml") 7 | 8 | f = open('./rdo.yml') 9 | # use safe_load instead load 10 | dataMap = yaml.safe_load(f) 11 | f.close() 12 | 13 | # print dataMap['packages'] 14 | for p in dataMap['packages']: 15 | print 16 | print p['project'] 17 | if 'maintainers' in p: 18 | for m in p['maintainers']: 19 | print " " + m 20 | 21 | 22 | -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | sudo dnf install -y ruby-devel rubygems-devel gcc-c++ curl-devel rubygem-bundler patch zlib-devel ImageMagick 3 | bundle install 4 | -------------------------------------------------------------------------------- /source/404.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | title: Page not found 3 | --- 4 | 5 | %h1 6 | Not found 7 | %span :( 8 | %p Sorry, but the page you were trying to view does not exist. 9 | %p It looks like this was the result of either: 10 | %ul 11 | %li a mistyped address 12 | %li an out-of-date link 13 | 14 | = partial "search" 15 | 16 | - content_for :tail do 17 | :javascript 18 | jQuery(function($){ 19 | var missing_words = document.location.pathname.replace(/[\/\+:\s\-]+/g, ' ').trim() 20 | $('#search-input').val(missing_words).trigger('keypress') 21 | }); 22 | -------------------------------------------------------------------------------- /source/admin/api/create.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: false 3 | --- 4 | 5 | :ruby 6 | export = "" 7 | content = "" 8 | 9 | results = req.env['rack.request.form_hash'] 10 | 11 | if results 12 | slug = results['title'].to_s.strip.gsub(/'/,'').parameterize 13 | timestamp = Time.now 14 | filename = "#{root}/#{source}#{blog.options.prefix}#{timestamp.to_date}-#{slug}.html.md" 15 | 16 | meta = { 17 | 'title' => results['title'], 18 | 'author' => results['author'], 19 | 'date' => timestamp.in_time_zone(Time.zone).strftime('%F %T %Z'), 20 | 'published' => false 21 | } 22 | 23 | yamlized = meta.to_yaml.gsub(/^----$/, '---').gsub(/^date: '(.*)'$/, 'date: \1') 24 | 25 | export = "#{yamlized}---\n\n#{content}" 26 | 27 | File.write filename, export if slug 28 | end 29 | 30 | = {date: timestamp.to_date, slug: slug}.to_json 31 | -------------------------------------------------------------------------------- /source/admin/api/delete.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: false 3 | --- 4 | 5 | :ruby 6 | results = req.env['rack.request.form_hash'] 7 | 8 | unless results.empty? 9 | path = results['path'] 10 | filename = results['filename'] 11 | 12 | if path && filename 13 | File.delete "#{path}/#{filename}" 14 | `git rm "#{path}/#{filename}"` 15 | end 16 | end 17 | 18 | = results.inspect 19 | -------------------------------------------------------------------------------- /source/admin/api/update.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | layout: false 3 | --- 4 | 5 | :ruby 6 | results = req.env['rack.request.form_hash'] 7 | 8 | meta, content = results['meta'], results['content'] 9 | 10 | if meta && content 11 | slug = results['slug'] 12 | path = results['path'] 13 | date = meta['date'].to_time.in_time_zone(Time.zone).to_date 14 | old_filename = results['filename'] 15 | new_filename = "#{date}-#{slug}.html.md" 16 | 17 | meta.reject! {|k, v| v.empty?} 18 | 19 | meta.each do |k, v| 20 | v = true if v == "on" 21 | v = false if v == "off" 22 | meta[k] = v 23 | end 24 | 25 | meta['date'] = meta['date'].to_time.in_time_zone(Time.zone).to_s 26 | 27 | # Ensure published state is preserved (and reversed, as published != draft) 28 | meta['published'] = !meta['published'] 29 | 30 | yamlized = meta.to_yaml.gsub(/^----$/, '---').gsub(/^date: '(.*)'$/, 'date: \1') 31 | content = content.gsub(/\r\n/, "\n") 32 | 33 | if old_filename != new_filename 34 | File.delete "#{path}/#{old_filename}" 35 | `git rm "#{path}/#{old_filename}"` 36 | end 37 | 38 | File.write "#{path}/#{new_filename}", "#{yamlized}---\n\n#{content}" 39 | `git add "#{path}/#{new_filename}"` 40 | end 41 | 42 | 43 | = {date: date, slug: slug}.to_json if meta 44 | -------------------------------------------------------------------------------- /source/author.html.haml: -------------------------------------------------------------------------------- 1 | - if defined? author 2 | 3 | - if author_card author 4 | %h2 5 | About 6 | = author_name author 7 | = author_card author 8 | 9 | - else 10 | %h2 11 | Articles from 12 | = author_name author 13 | 14 | - if pages 15 | 16 | - pages.select{ |p| defined? p.date }.sort_by{ |p| p.date}.reverse.each do |page| 17 | - if (defined? page.title) && (defined? page.published && page.published?) 18 | 19 | -#%li= page.public_methods 20 | = partial :blog_post, locals: {article: page, summarize: 400} 21 | 22 | - else 23 | 24 | .authors-list 25 | 26 | -# Sort by number of blog articles, then author's full name 27 | - blog.articles.group_by {|p| p.data.author}.sort_by {|a, p| [-p.count, author_name(a).downcase]}.each do |author, pages| 28 | 29 | .author-list 30 | 31 | %h2= author_name author 32 | 33 | - if author_card author 34 | %p= author_card author 35 | 36 | %ul 37 | - pages.each do |page| 38 | %li= link_to page.title, page.url 39 | -------------------------------------------------------------------------------- /source/blog.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Community News 3 | pageable: true 4 | index: false 5 | --- 6 | 7 | - content_for :head do 8 | %link(href="/blog/feed.xml" rel="alternate" title="Atom feed" type="application/atom+xml") 9 | 10 | %section.blog-archive 11 | 12 | %h2 RDO Community News 13 | See also blogs.rdoproject.org 14 | 15 | = partial :blog_posts, locals: locals 16 | -------------------------------------------------------------------------------- /source/blog/README.md: -------------------------------------------------------------------------------- 1 | Blogs were migrated to blogs.rdoproject.org. 2 | -------------------------------------------------------------------------------- /source/calendar.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | pageable: true 3 | per_page: 1000 4 | index: false 5 | --- 6 | 7 | %h1 8 | Archive for 9 | - case page_type 10 | - when 'day' 11 | = Date.new(year, month, day).strftime('%b %e %Y') 12 | - when 'month' 13 | = Date.new(year, month, 1).strftime('%b %Y') 14 | - when 'year' 15 | = year 16 | 17 | - if paginate && num_pages > 1 18 | %p 19 | Page #{page_number} of #{num_pages} 20 | - if prev_page 21 | %p= link_to 'Previous page', prev_page 22 | 23 | %ul 24 | - page_articles.each_with_index do |article, i| 25 | %li 26 | = link_to article.title, article 27 | %span= article.date.strftime('%b %e') 28 | 29 | - if paginate 30 | - if next_page 31 | %p= link_to 'Next page', next_page 32 | -------------------------------------------------------------------------------- /source/cloud-management/index.html.md: -------------------------------------------------------------------------------- 1 | # Cloud Management 2 | 3 | * [Using ManageIQ on OpenStack](cloud-management/using-manageiq-on-openstack) 4 | -------------------------------------------------------------------------------- /source/contribute/mailing-lists.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Mailing lists 3 | authors: rbowen 4 | --- 5 | 6 | # Mailing lists 7 | 8 | There are three main mailing lists for RDO discussion: 9 | 10 | ## Users - users@lists.rdoproject.org 11 | 12 | The main discussion list if you are looking for help on the RDO project. 13 | 14 | * [Subscribe](https://lists.rdoproject.org/mailman/listinfo/users) 15 | * [Archives](https://lists.rdoproject.org/pipermail/users/) 16 | 17 | ## Developers - dev@lists.rdoproject.org 18 | 19 | The main discussion list for RDO project contributors. 20 | 21 | * [Subscribe](https://lists.rdoproject.org/mailman/listinfo/dev) 22 | * [Archives](https://lists.rdoproject.org/pipermail/dev/) 23 | 24 | ## Newsletter - newsletter@lists.rdoproject.org - *inactive* 25 | 26 | A monthly update of what's going on at RDO. This list is read-only, and very low volume. 27 | 28 | * ~~Subscribe~~ [ARCHIVED] 29 | * [Archives](https://lists.rdoproject.org/pipermail/newsletter/) 30 | 31 | ## Other lists 32 | 33 | A complete list of mailing lists may be found at [RDO Mailing-lists](https://lists.rdoproject.org/mailman/listinfo). 34 | 35 | You may also want to be on one or more of the [OpenStack mailing lists](https://wiki.openstack.org/wiki/Mailing_Lists). 36 | 37 | -------------------------------------------------------------------------------- /source/contribute/rdo-bugtriage.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO-BugTriage 3 | authors: kashyap, larsks 4 | --- 5 | 6 | # RDO-Bug Triage 7 | 8 | ## BUG TRIAGE DAY 9 | 10 | We generally try to conduct a public bug triage every third Tuesday of the month at 14:00 UTC. That's `date -d "14:00 UTC"` in your local timezone. Please feel free to stop by `#rdo` on IRC (OFTC) to help out or ask questions. 11 | 12 | ## Bugzilla queries 13 | 14 | * List of un-triaged bugs (NEW state) -- 15 | * List of all ASSIGNED bugs (with and without Keyword 'Triaged') -- 16 | * List of all ON_QA bugs -- 17 | 18 | ## Bugzilla workflow 19 | 20 | ### Initial Triage 21 | 22 | Since RDO (say a mid-stream? ) is akin to what Fedora is to RHEL, we try to follow the Fedora bug triage method (see *References* section below) while closely monitoring upstream OpenStack issue tracker (details below in *Upstream OpenStack bug triage* section). 23 | 24 | If a bug/RFE has already been fixed in the *current* stable RDO release (say Mitaka), then: 25 | 26 | * Update the "Fixed In Version" field with the NVR (Name-Version-Release) of the package. 27 | * Move the bug to CLOSED->CURRENTRELEASE. 28 | 29 | ## References 30 | 31 | Upstream OpenStack bug triage: 32 | 33 | * 34 | 35 | Some existing community projects which use Red Hat Bugzilla, and their workflows for bug triage: 36 | 37 | * 38 | * 39 | * 40 | 41 | -------------------------------------------------------------------------------- /source/contribute/speakers.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Speakers 3 | --- 4 | 5 | # RDO Speakers 6 | 7 | If you are willing to be contacted to speak on RDO topics, or on any 8 | OpenStack topic, please update your listing on [OpenStack Foundation speakers 9 | bureau](https://www.openstack.org/community/speakers/). We can often 10 | provide some assistance in travel to nearby events, as well as providing 11 | RDO swag to take with you. [Contact Rich](mailto:rbowen@redhat.com) for 12 | details. 13 | 14 | If you are looking for speakers for your meetup group, you can [search 15 | there for 'RDO'](https://www.openstack.org/community/speakers/results?search_query=RDO). 16 | 17 | -------------------------------------------------------------------------------- /source/documentation/books.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Books 3 | category: documentation 4 | authors: rbowen 5 | --- 6 | 7 | # Books 8 | 9 | [← Docs](/documentation/) 10 | 11 | * [OpenStack Cloud Computing Cookbook](https://amzn.com/1782174788), by Kevin Jackson 12 | * [OpenStack Essentials](https://www.packtpub.com/books/info/authors/dan-radez), by Dan Radez 13 | 14 | -------------------------------------------------------------------------------- /source/documentation/getting-started.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Getting Started 3 | category: documentation 4 | --- 5 | 6 | # Getting Started 7 | 8 | ## What's the admin password? 9 | 10 | The admin dashboard (aka Horizon) is located at **http://CONTROL_NODE/dashboard** The default admin username is 'admin' and the initial password is located in /root/keystonerc_admin 11 | 12 | ## Installing on RHEL - Prerequisites 13 | 14 | If you're installing on RHEL, you must have your system registered with RHD, Satellite server, or a Yum repository. I'ts also a good idea to run "yum update" prior to starting the install, since the OpenStack software evolves very fast. 15 | 16 | ## Installing with multiple NICs 17 | 18 | If you're installing on a system with multiple NICs, "packstack --allinone" may not configure services on the interface you intended. To be certain, run "packstack --gen-answer-file=file_name", and then edit the resulting answer file to ensure that it's using the interface you wanted. Then run "packstack --answer-file=file_name" 19 | 20 | 21 | -------------------------------------------------------------------------------- /source/documentation/ironic.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ironic 3 | authors: lucasagomes 4 | --- 5 | 6 | # Ironic 7 | 8 | * [Developer Quick-Start](http://docs.openstack.org/developer/ironic/dev/dev-quickstart.html) 9 | -------------------------------------------------------------------------------- /source/documentation/package-list.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Package List 3 | --- 4 | 5 | You can find a list of all packages currently built for CentOS Stream and a particular release at the following link: 6 | 7 | For CentOS Stream 8: 8 | - [http://mirror.centos.org/centos/8-stream/cloud/x86_64/](http://mirror.centos.org/centos/8-stream/cloud/x86_64/) 9 | 10 | For CentOS Stream 9: 11 | - [http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/](http://mirror.stream.centos.org/SIGs/9-stream/cloud/x86_64/) 12 | 13 | You can also find the list of all packages from Trunk repos at [RDO Trunk repositories](/what/trunk-repos) 14 | -------------------------------------------------------------------------------- /source/documentation/rdo-packaging-troubleshooting.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | :author: hguemar 3 | --- 4 | 5 | # RDO OpenStack Packaging Troubleshooting 6 | 7 | ## FAQ 8 | 9 | ### My EPEL branch request has been denied 10 | 11 | 12 | EPEL rules exclude packages that in a limited set of channels of 13 | RHEL but Fedora Releng uses a generated list of packages to filter 14 | branch requests. Check first that your package is not listed 15 | [there](http://infrastructure.fedoraproject.org/repo/json/pkg_el7.json) 16 | by mistake 17 | 18 | -------------------------------------------------------------------------------- /source/easyfix.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: EasyFix 3 | --- 4 | 5 | 6 | 7 | # EasyFix 8 | 9 | The [EasyFix](https://github.com/redhat-openstack/easyfix) project is 10 | the best place to find places to get started working on RDO. These are 11 | tickets that are accessible to beginners, and not urgent, and so a 12 | wonderful opportunity to learn how things work while dipping your toes 13 | into the code. 14 | -------------------------------------------------------------------------------- /source/events/ceph-rdo-barcelona.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: An evening with Ceph and RDO 3 | --- 4 | 5 | On Tuesday, October 25th, 2016, we hosted an evening 6 | with Ceph and RDO at the OpenStack Summit in Barcelona. 7 | 8 | Here are some of the presentations from that event: 9 | 10 | * [Javier Peña - RDO repos overview]( /events/presentations/2016/ceph-rdo-barcelona/jpena) 11 | * [Alfredo Moralejo - Testing in RDO](http://www.slideshare.net/amoralej/rdo-and-ceph-meetup-bcn-testing-in-rdo) 12 | * [Gulio Fidente - Ceph, TripleO and the Newton release](http://giuliofidente.com/2016/08/ceph-tripleo-and-the-newton-release.html) 13 | 14 | You can see some photos from the event [on 15 | Flickr](https://www.flickr.com/photos/rbowen/sets/72157675620637236). 16 | 17 | -------------------------------------------------------------------------------- /source/events/docdays.html.md: -------------------------------------------------------------------------------- 1 | # RDO Doc Days 2 | 3 | We periodically run RDO Doc Days, when we encourage people to improve 4 | the documentation and the website by spending an hour or two looking for 5 | errors, outdated information, or anything else that could be better. 6 | 7 | Goals for a doc day include: 8 | 9 | * Knock out as many of the [open issues](https://github.com/redhat-openstack/website/issues) as possible. 10 | * Identify docs that are outdated, and/or refer to end-of-lifed releases. 11 | * Consolidate duplicate docs. 12 | * Improve the [test day instructions](https://www.rdoproject.org/testday/tests/), so that people don't have to be experts to participate. 13 | 14 | Meanwhile, you can always work on the [open issues](https://github.com/redhat-openstack/website/issues). 15 | 16 | -------------------------------------------------------------------------------- /source/events/edit.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Edit RDO events 3 | --- 4 | 5 | # Editing the RDO events calendar 6 | 7 | The RDO events calendar is maintained as part of the RDO website. To edit or add 8 | an RDO-related meetup, edit this year's RDO-Meetups.yml file. If your event is 9 | some other community event, such as a mini-conference, add it to this year's 10 | RDO-Community.yml file. 11 | 12 | A few words of caution: 13 | 14 | * The yml calendar format is very finicky. If you are planning to edit a lot of 15 | events, consider cloning the RDO website and running the 16 | `validate.rb` script in the top level directory before you send pull 17 | requests, to ensure that there are no syntax errors. 18 | 19 | * The events in the meetups file are refreshed from meetup.com every Monday 20 | morning. So while we'll try to be careful not to overwrite your 21 | event, it does occasionally happen. 22 | 23 | * The weekly mailing to 24 | [the rdo lists](https://lists.rdoproject.org/mailman/listinfo) contains 25 | only the upcoming 7 days of events, while the update to the events 26 | page is the upcoming 14 days. Check [the events page](/events) before 27 | deciding that your event is not on the list. 28 | -------------------------------------------------------------------------------- /source/events/presentations/2016/FOSDEM/RDO_in_production_CERN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/FOSDEM/RDO_in_production_CERN.pdf -------------------------------------------------------------------------------- /source/events/presentations/2016/FOSDEM/configuration-files-in-rdo-fosdem-2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/FOSDEM/configuration-files-in-rdo-fosdem-2016.pdf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/asul/asul.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Asul'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('asul-regular.woff') format('woff'), 8 | url('asul-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Asul'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('asul-bold.woff') format('woff'), 15 | url('asul-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/cabinsketch/cabinsketch.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Cabin Sketch'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('cabinsketch-regular.woff') format('woff'), 8 | url('cabinsketch-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Cabin Sketch'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('cabinsketch-regular.woff') format('woff'), 15 | url('cabinsketch-regular.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bolditalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-bolditalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/josefinsans/josefinsans.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Josefin Sans'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('josefinsans-regular.woff') format('woff'), 8 | url('josefinsans-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Josefin Sans'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('josefinsans-bold.woff') format('woff'), 15 | url('josefinsans-bold.ttf') format('truetype'); 16 | } 17 | @font-face { 18 | font-family: 'Josefin Sans'; 19 | font-style: italic; 20 | font-weight: 400; 21 | src: url('josefinsans-italic.woff') format('woff'), 22 | url('josefinsans-italic.ttf') format('truetype'); 23 | } 24 | @font-face { 25 | font-family: 'Josefin Sans'; 26 | font-style: italic; 27 | font-weight: 700; 28 | src: url('josefinsans-bolditalic.woff') format('woff'), 29 | url('josefinsans-bolditalic.ttf') format('truetype'); 30 | } 31 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Math-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/katex/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/lato/lato.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Lato'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('lato-regular.woff') format('woff'), 8 | url('lato-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Lato'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('lato-bold.woff') format('woff'), 15 | url('lato-bold.ttf') format('truetype'); 16 | } 17 | @font-face { 18 | font-family: 'Lato'; 19 | font-style: italic; 20 | font-weight: 400; 21 | src: url('lato-italic.woff') format('woff'), 22 | url('lato-italic.ttf') format('truetype'); 23 | } 24 | @font-face { 25 | font-family: 'Lato'; 26 | font-style: italic; 27 | font-weight: 700; 28 | src: url('lato-bolditalic.woff') format('woff'), 29 | url('lato-bolditalic.ttf') format('truetype'); 30 | } 31 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league_gothic.woff') format('woff'), 4 | url('league_gothic.ttf') format('truetype'); 5 | 6 | font-weight: normal; 7 | font-style: normal; 8 | } 9 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/league/league_gothic_license: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/merriweathersans/merriweathersans.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Merriweather Sans'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('merriweathersans-regular.woff') format('woff'), 8 | url('merriweathersans-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Merriweather Sans'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('merriweathersans-bold.woff') format('woff'), 15 | url('merriweathersans-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/montserrat/montserrat.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Montserrat'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('montserrat-regular.woff') format('woff'), 8 | url('montserrat-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Montserrat'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('montserrat-bold.woff') format('woff'), 15 | url('montserrat-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/newscycle/newscycle.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'News Cycle'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('newscycle-regular.woff') format('woff'), 8 | url('newscycle-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'News Cycle'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('newscycle-bold.woff') format('woff'), 15 | url('newscycle-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bolditalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-bolditalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/opensans/opensans.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Open Sans'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('opensans-regular.woff') format('woff'), 8 | url('opensans-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Open Sans'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('opensans-bold.woff') format('woff'), 15 | url('opensans-bold.ttf') format('truetype'); 16 | } 17 | @font-face { 18 | font-family: 'Open Sans'; 19 | font-style: italic; 20 | font-weight: 400; 21 | src: url('opensans-italic.woff') format('woff'), 22 | url('opensans-italic.ttf') format('truetype'); 23 | } 24 | @font-face { 25 | font-family: 'Open Sans'; 26 | font-style: italic; 27 | font-weight: 700; 28 | src: url('opensans-bolditalic.woff') format('woff'), 29 | url('opensans-bolditalic.ttf') format('truetype'); 30 | } 31 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-light.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-light.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass/overpass.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Overpass'; 3 | font-style: normal; 4 | font-weight: bold; 5 | src: url('overpass-bold.woff') format('woff'), 6 | url('overpass-bold.ttf') format('truetype'); 7 | } 8 | 9 | 10 | @font-face { 11 | font-family: 'Overpass'; 12 | font-style: normal; 13 | font-weight: 500; 14 | src: url('overpass-regular.woff') format('woff'), 15 | url('overpass-regular.ttf') format('truetype'); 16 | } 17 | 18 | 19 | @font-face { 20 | font-family: 'Overpass'; 21 | font-style: normal; 22 | font-weight: normal; 23 | src: url('overpass-light.woff') format('woff'), 24 | url('overpass-light.ttf') format('truetype'); 25 | } 26 | 27 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bolditalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-bolditalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralight.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralight.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralightitalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-extralightitalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-italic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-italic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-light.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-light.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-lightitalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-lightitalic.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-lightitalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-lightitalic.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/overpass2/overpass2-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/oxygen/oxygen.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Oxygen'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('oxygen-regular.woff') format('woff'), 8 | url('oxygen-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Oxygen'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('oxygen-bold.woff') format('woff'), 15 | url('oxygen-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-bold.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-bold.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-regular.ttf -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand-regular.woff -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/lib/fonts/quicksand/quicksand.css: -------------------------------------------------------------------------------- 1 | /* Generated by Font Squirrel (http://www.fontsquirrel.com) on May 10, 2013 */ 2 | 3 | @font-face { 4 | font-family: 'Quicksand'; 5 | font-style: normal; 6 | font-weight: 400; 7 | src: url('quicksand-regular.woff') format('woff'), 8 | url('quicksand-regular.ttf') format('truetype'); 9 | } 10 | @font-face { 11 | font-family: 'Quicksand'; 12 | font-style: normal; 13 | font-weight: 700; 14 | src: url('quicksand-bold.woff') format('woff'), 15 | url('quicksand-bold.ttf') format('truetype'); 16 | } 17 | -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3124989-Baby-Meme-Blank-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3124989-Baby-Meme-Blank-01.jpg -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3125043-rdo-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3125043-rdo-packages.png -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3125096-Victory-Baby-Meme-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3125096-Victory-Baby-Meme-08.jpg -------------------------------------------------------------------------------- /source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3157550-rdo-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/events/presentations/2016/ceph-rdo-barcelona/rdo-repos-overview/3157550-rdo-logo-white.png -------------------------------------------------------------------------------- /source/favicon-rdo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/favicon-rdo.ico -------------------------------------------------------------------------------- /source/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /source/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /source/hardware/home/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Home lab 3 | --- 4 | 5 | # What are you running at home? 6 | 7 | {:.no_toc} 8 | 9 | Want to run a small OpenStack cloud for personal use, with 10 | whatever old hardware you have laying around? Here's what some of our 11 | community are running at home. 12 | 13 | See also the [RDO minicluster](/hardware/minicluster) for an example of 14 | what you can do. 15 | 16 | Are you running RDO at home? Write it up and [tell us about 17 | it](mailto:rdo-list@redhat.com) and we'll add you to the list. 18 | 19 | ## Home Setups 20 | 21 | |---|---| 22 | | [David Moreau Simard](https://twitter.com/dmsimard/status/778646409293733888)
[ ![](/images/homelab/dmsimard_home_lab.png) ](https://twitter.com/dmsimard/status/778646409293733888) | [Javier Peña](http://www.jpena.net/creating-a-home-openstack-lab-with-rdo-and-a-couple-spare-laptops/)
[ ![](/images/homelab/jpena.png) ](http://www.jpena.net/creating-a-home-openstack-lab-with-rdo-and-a-couple-spare-laptops/) | 23 | | [Donny Davis](http://project.fortnebula.com/)
[ ![](/images/homelab/donny_davis_1_thumb.jpg) ](/hardware/home/donny_davis) | | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /source/hardware/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Hardware recommendations 3 | --- 4 | # Hardware 5 | 6 | A collection of hardware recommendations for deploying OpenStack with 7 | RDO. 8 | 9 | * [Recommended hardware for RDO deployments](/hardware/recommended) 10 | * [What are you running at home?](/hardware/home/) 11 | * [RDO NUC mini-cluster](/hardware/minicluster) 12 | -------------------------------------------------------------------------------- /source/hardware/minicluster.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO mini-cluster 3 | --- 4 | 5 | # RDO Mini-Cluster 6 | 7 | ![](/images/documentation/minicluster_1_thumb.jpg) 8 | ![](/images/documentation/minicluster_2_thumb.jpg) 9 | 10 | For Red Hat Summit 2017, the RDO and ManageIQ engineers in the Red Hat 11 | Brno office put together a mini-cluster, using Intel NUC servers, to 12 | demo running OpenStack, and managing it with ManageIQ. 13 | 14 | On the RDO side, we built with the following hardware. 15 | 16 | | Item | Model/Type | 17 | |------|-------| 18 | | Intel NUC (4) | [6I5SYK](https://www.intel.com/content/www/us/en/products/boards-kits/nuc/kits/nuc6i5syk.html) | 19 | | RAM (4) | Crucial SO-DIMM 32 GB DDR4 2133MHz CL15 Dual Ranked | 20 | | SSD (4) | Patriot Ignite M2 240 gigabytes | 21 | | Cables | Various CAT5E cables for connectivity | 22 | | Switch | TP-LINK TL-SG105 | 23 | | Router | (Someone fill this in?) | 24 | | USB network adapters | [Axago ADE-SG](http://www.axagon.eu/produkty/ade-sg) or similar | 25 | 26 | 27 | Note: The NUCs have only one NIC. The USB network adapters are to 28 | provide the control network. 29 | 30 | TODO: Deployment instructions here 31 | -------------------------------------------------------------------------------- /source/hardware/recommended.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Recommended hardware 3 | --- 4 | 5 | # Recommended hardware 6 | 7 | Recommended hardware requirements for an RDO cloud: 8 | 9 | ## TripleO - Production (Zed or earlier) 10 | 11 | Production deployments vary greatly but as a very brief guideline: 12 | 13 | 3 x controllers (minimum for HA control plane) 14 | X number of compute nodes / hypervisors (can be scaled) 15 | 3 x Ceph storage nodes (optional, depending on requirements) 16 | 3 x Swift object storage nodes (optional, if not using RADOS) 17 | 18 | More information at http://tripleo.org/ 19 | 20 | ## TripleO Quickstart - Development (Zed or earlier) 21 | 22 | Minimum 32GB of RAM 23 | Minimum 120GB free disk space 24 | 25 | ## Packstack - PoC 26 | 27 | Minimum of 1 node, additional nodes for additional hypervisors 28 | Minimum 16GB RAM for All In One deployment 29 | -------------------------------------------------------------------------------- /source/humans.txt: -------------------------------------------------------------------------------- 1 | # humanstxt.org/ 2 | # The humans responsible & technology colophon 3 | 4 | # TEAM 5 | 6 | -- -- 7 | 8 | # THANKS 9 | 10 | 11 | 12 | # TECHNOLOGY COLOPHON 13 | 14 | HTML5, CSS3 15 | jQuery, Modernizr 16 | -------------------------------------------------------------------------------- /source/images/CI1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/CI1.png -------------------------------------------------------------------------------- /source/images/CI2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/CI2.png -------------------------------------------------------------------------------- /source/images/CI3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/CI3.png -------------------------------------------------------------------------------- /source/images/CloudSIG-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/CloudSIG-dependencies.png -------------------------------------------------------------------------------- /source/images/Neutron_private_floating_ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/Neutron_private_floating_ip.png -------------------------------------------------------------------------------- /source/images/OpenStackSummitBarcelonaDuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/OpenStackSummitBarcelonaDuck.jpg -------------------------------------------------------------------------------- /source/images/Openstack-distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/Openstack-distribution.png -------------------------------------------------------------------------------- /source/images/SF_basic_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/SF_basic_gui.png -------------------------------------------------------------------------------- /source/images/alfredo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/alfredo.jpg -------------------------------------------------------------------------------- /source/images/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/app1.png -------------------------------------------------------------------------------- /source/images/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/app2.png -------------------------------------------------------------------------------- /source/images/app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/app3.png -------------------------------------------------------------------------------- /source/images/app4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/app4.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /source/images/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /source/images/approval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/approval.png -------------------------------------------------------------------------------- /source/images/ara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ara.png -------------------------------------------------------------------------------- /source/images/bg-boxes-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/bg-boxes-single.png -------------------------------------------------------------------------------- /source/images/bg-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/bg-boxes.png -------------------------------------------------------------------------------- /source/images/bg-lens.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/bg-lens.jpg -------------------------------------------------------------------------------- /source/images/blog/2017ContributorSurvey/affiliation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/2017ContributorSurvey/affiliation.png -------------------------------------------------------------------------------- /source/images/blog/2017ContributorSurvey/difficulties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/2017ContributorSurvey/difficulties.png -------------------------------------------------------------------------------- /source/images/blog/2017ContributorSurvey/ease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/2017ContributorSurvey/ease.png -------------------------------------------------------------------------------- /source/images/blog/2017ContributorSurvey/frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/2017ContributorSurvey/frequency.png -------------------------------------------------------------------------------- /source/images/blog/2017ContributorSurvey/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/2017ContributorSurvey/type.png -------------------------------------------------------------------------------- /source/images/blog/RDO_trunk_pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/RDO_trunk_pins.png -------------------------------------------------------------------------------- /source/images/blog/dlrn-infra-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/dlrn-infra-2.png -------------------------------------------------------------------------------- /source/images/blog/dlrn-infra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/dlrn-infra.png -------------------------------------------------------------------------------- /source/images/blog/ducks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/ducks.jpg -------------------------------------------------------------------------------- /source/images/blog/rdo-ci-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-ci-2.png -------------------------------------------------------------------------------- /source/images/blog/rdo-ftbfs-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-ftbfs-dashboard.png -------------------------------------------------------------------------------- /source/images/blog/rdo-trunk-high-level.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-trunk-high-level.odg -------------------------------------------------------------------------------- /source/images/blog/rdo-trunk-high-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-trunk-high-level.png -------------------------------------------------------------------------------- /source/images/blog/rdo-tshirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-tshirt.jpg -------------------------------------------------------------------------------- /source/images/blog/rdo-zuul-ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdo-zuul-ci.png -------------------------------------------------------------------------------- /source/images/blog/rdopkg_pkgenv_0.44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/rdopkg_pkgenv_0.44.png -------------------------------------------------------------------------------- /source/images/blog/restfuzz_graph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/restfuzz_graph.jpg -------------------------------------------------------------------------------- /source/images/blog/restfuzz_network_topology.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/restfuzz_network_topology.jpg -------------------------------------------------------------------------------- /source/images/blog/survey_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/survey_deploy.png -------------------------------------------------------------------------------- /source/images/blog/survey_industry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/survey_industry.png -------------------------------------------------------------------------------- /source/images/blog/survey_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/survey_size.png -------------------------------------------------------------------------------- /source/images/blog/survey_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/survey_use.png -------------------------------------------------------------------------------- /source/images/blog/survey_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog/survey_version.png -------------------------------------------------------------------------------- /source/images/blog_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/blog_cloud.png -------------------------------------------------------------------------------- /source/images/bookmark/_README.md: -------------------------------------------------------------------------------- 1 | You'll need the fonts Lato and Source Code Pro installed to edit this 2 | file. These may be obtained at 3 | https://www.google.com/fonts#UsePlace:use/Collection:Lato and 4 | https://www.google.com/fonts#UsePlace:use/Collection:Source+Code+Pro respectively. 5 | -------------------------------------------------------------------------------- /source/images/bookmark/rdo_bookmark.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/bookmark/rdo_bookmark.odt -------------------------------------------------------------------------------- /source/images/cbs-requirements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/cbs-requirements.png -------------------------------------------------------------------------------- /source/images/centos_fedora_meetup_med.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/centos_fedora_meetup_med.jpg -------------------------------------------------------------------------------- /source/images/cumulus_networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/cumulus_networks.png -------------------------------------------------------------------------------- /source/images/documentation/minicluster_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/minicluster_1.jpg -------------------------------------------------------------------------------- /source/images/documentation/minicluster_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/minicluster_1_thumb.jpg -------------------------------------------------------------------------------- /source/images/documentation/minicluster_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/minicluster_2.jpg -------------------------------------------------------------------------------- /source/images/documentation/minicluster_2_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/minicluster_2_thumb.jpg -------------------------------------------------------------------------------- /source/images/documentation/rdo-full-workflow-high-level-no-buildlogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/rdo-full-workflow-high-level-no-buildlogs.png -------------------------------------------------------------------------------- /source/images/documentation/rdo-full-workflow-high-level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/rdo-full-workflow-high-level.png -------------------------------------------------------------------------------- /source/images/documentation/rdo-workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/rdo-workflow.jpg -------------------------------------------------------------------------------- /source/images/documentation/rdo-workflow.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/documentation/rdo-workflow.odg -------------------------------------------------------------------------------- /source/images/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/duck.png -------------------------------------------------------------------------------- /source/images/ducks/all_ducks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/all_ducks.jpg -------------------------------------------------------------------------------- /source/images/ducks/austin_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/austin_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/barcelona_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/barcelona_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/berlin_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/berlin_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/boston_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/boston_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/denver_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/denver_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/enovance_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/enovance_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/sydney_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/sydney_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/tokyo_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/tokyo_duck.jpg -------------------------------------------------------------------------------- /source/images/ducks/vancouver_duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ducks/vancouver_duck.jpg -------------------------------------------------------------------------------- /source/images/favicon_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/favicon_base.png -------------------------------------------------------------------------------- /source/images/gerrit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/gerrit.png -------------------------------------------------------------------------------- /source/images/github-mark-small.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source/images/homelab/dmsimard_home_lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/dmsimard_home_lab.png -------------------------------------------------------------------------------- /source/images/homelab/donny_davis_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/donny_davis_1.jpg -------------------------------------------------------------------------------- /source/images/homelab/donny_davis_1_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/donny_davis_1_full.jpg -------------------------------------------------------------------------------- /source/images/homelab/donny_davis_1_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/donny_davis_1_thumb.jpg -------------------------------------------------------------------------------- /source/images/homelab/donny_davis_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/donny_davis_2.jpg -------------------------------------------------------------------------------- /source/images/homelab/donny_davis_2_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/donny_davis_2_full.jpg -------------------------------------------------------------------------------- /source/images/homelab/jpena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/homelab/jpena.png -------------------------------------------------------------------------------- /source/images/intro-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/intro-stack.png -------------------------------------------------------------------------------- /source/images/logo/RDO_LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/logo/RDO_LOGO.png -------------------------------------------------------------------------------- /source/images/logo/RDO_LOGO_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/logo/RDO_LOGO_square.png -------------------------------------------------------------------------------- /source/images/logo/RDO_Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/logo/RDO_Logo.jpg -------------------------------------------------------------------------------- /source/images/logo/RDO_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/logo/RDO_icon.jpg -------------------------------------------------------------------------------- /source/images/logo/RDO_icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/logo/RDO_icon.xcf -------------------------------------------------------------------------------- /source/images/neutron_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/neutron_architecture.png -------------------------------------------------------------------------------- /source/images/new-dependencies-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/new-dependencies-2.png -------------------------------------------------------------------------------- /source/images/new-dependencies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/new-dependencies.png -------------------------------------------------------------------------------- /source/images/newredhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/newredhat.png -------------------------------------------------------------------------------- /source/images/newsletter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/newsletter.jpg -------------------------------------------------------------------------------- /source/images/policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/policy.png -------------------------------------------------------------------------------- /source/images/pool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/pool.jpg -------------------------------------------------------------------------------- /source/images/prague_red_hat_med.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/prague_red_hat_med.jpg -------------------------------------------------------------------------------- /source/images/rdo-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/rdo-logo-white.png -------------------------------------------------------------------------------- /source/images/sf-credential_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/sf-credential_id.png -------------------------------------------------------------------------------- /source/images/sf-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/sf-deployment.png -------------------------------------------------------------------------------- /source/images/sf-gerrit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/sf-gerrit.png -------------------------------------------------------------------------------- /source/images/sf-login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/sf-login_page.png -------------------------------------------------------------------------------- /source/images/sf-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/sf-project.png -------------------------------------------------------------------------------- /source/images/ssh-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/ssh-keys.png -------------------------------------------------------------------------------- /source/images/wiki/10-name_virtual_netowrk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/10-name_virtual_netowrk.png -------------------------------------------------------------------------------- /source/images/wiki/11-ipv4_network_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/11-ipv4_network_setup.png -------------------------------------------------------------------------------- /source/images/wiki/12-misc_network_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/12-misc_network_setup.png -------------------------------------------------------------------------------- /source/images/wiki/13-finalize_network_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/13-finalize_network_setup.png -------------------------------------------------------------------------------- /source/images/wiki/14-clone_controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/14-clone_controller.png -------------------------------------------------------------------------------- /source/images/wiki/15-add_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/15-add_hardware.png -------------------------------------------------------------------------------- /source/images/wiki/16-add_network_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/16-add_network_interface.png -------------------------------------------------------------------------------- /source/images/wiki/8-configure_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/8-configure_cpu.png -------------------------------------------------------------------------------- /source/images/wiki/9-new_virtual_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/9-new_virtual_network.png -------------------------------------------------------------------------------- /source/images/wiki/Cern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Cern.jpg -------------------------------------------------------------------------------- /source/images/wiki/Clients-stable-branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Clients-stable-branches.png -------------------------------------------------------------------------------- /source/images/wiki/Email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Email.png -------------------------------------------------------------------------------- /source/images/wiki/Facebook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Facebook.gif -------------------------------------------------------------------------------- /source/images/wiki/G_plus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/G_plus.jpg -------------------------------------------------------------------------------- /source/images/wiki/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Github.png -------------------------------------------------------------------------------- /source/images/wiki/HA_Architecture-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/HA_Architecture-collapsed.png -------------------------------------------------------------------------------- /source/images/wiki/HA_Architecture-current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/HA_Architecture-current.png -------------------------------------------------------------------------------- /source/images/wiki/HA_Architecture-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/HA_Architecture-full.png -------------------------------------------------------------------------------- /source/images/wiki/HA_Architecture-future.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/HA_Architecture-future.png -------------------------------------------------------------------------------- /source/images/wiki/Hw_discovery_seq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Hw_discovery_seq.jpg -------------------------------------------------------------------------------- /source/images/wiki/InstackSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/InstackSetup.png -------------------------------------------------------------------------------- /source/images/wiki/LTWQSvm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/LTWQSvm.png -------------------------------------------------------------------------------- /source/images/wiki/Manage_storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Manage_storage.png -------------------------------------------------------------------------------- /source/images/wiki/Memory_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Memory_cpu.png -------------------------------------------------------------------------------- /source/images/wiki/Microsoft_XSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Microsoft_XSS.png -------------------------------------------------------------------------------- /source/images/wiki/Net_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Net_install.png -------------------------------------------------------------------------------- /source/images/wiki/New_vm--20130906173413.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/New_vm--20130906173413.png -------------------------------------------------------------------------------- /source/images/wiki/New_vm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/New_vm.png -------------------------------------------------------------------------------- /source/images/wiki/New_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/New_volume.png -------------------------------------------------------------------------------- /source/images/wiki/Openstack-distribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Openstack-distribution.png -------------------------------------------------------------------------------- /source/images/wiki/Rdo-manager-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Rdo-manager-logo.png -------------------------------------------------------------------------------- /source/images/wiki/Rdo-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Rdo-update.png -------------------------------------------------------------------------------- /source/images/wiki/Redhat_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Redhat_logo.jpg -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step2-1.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step2-2.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step3-1.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step3-2.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step4.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step5-1.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step5-2.png -------------------------------------------------------------------------------- /source/images/wiki/Runninganinstance-step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Runninganinstance-step6.png -------------------------------------------------------------------------------- /source/images/wiki/Script-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Script-.png -------------------------------------------------------------------------------- /source/images/wiki/TripleO_Network_Diagram_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/TripleO_Network_Diagram_.jpg -------------------------------------------------------------------------------- /source/images/wiki/Twitter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Twitter.gif -------------------------------------------------------------------------------- /source/images/wiki/Vm_storage_cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/Vm_storage_cfg.png -------------------------------------------------------------------------------- /source/images/wiki/php6lT2BC--20140310042728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/php6lT2BC--20140310042728.png -------------------------------------------------------------------------------- /source/images/wiki/phpfbvZ3v--20140405122521.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/phpfbvZ3v--20140405122521.png -------------------------------------------------------------------------------- /source/images/wiki/rdo_bookmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/wiki/rdo_bookmark.pdf -------------------------------------------------------------------------------- /source/images/zuul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/images/zuul.png -------------------------------------------------------------------------------- /source/infra/dr-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/infra/dr-diagram.png -------------------------------------------------------------------------------- /source/infra/maintenance-windows.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Infra maintenance windows 3 | category: documentation,infrastructure 4 | --- 5 | 6 | # Introduction 7 | 8 | Infrastructure systems require regular maintenance to ensure a proper, bug-free operation, and the RDO Infrastructure is no exception. 9 | This document defines the processes we will follow to run maintenance on the RDO systems. 10 | 11 | ## Unplanned maintenance 12 | 13 | Unplanned outages may come at any time, due to software/hardware errors or any other circumstance that requires a quick change on a 14 | system to restore its operational state. We will communicate unplanned maintenances as soon as possible, keeping in mind that the 15 | first priority is to restore service. 16 | 17 | ## Planned maintenance 18 | 19 | Planned maintenance includes any change that requires service downtime, but can be scheduled. We define two maintenance windows for 20 | our systems: 21 | 22 | - The first Tuesday of each month. 23 | - The third Tuesday of each month. 24 | 25 | Having a maintenance window does not necessarily mean all systems will be stopped. If a system requires downtime during one of these 26 | windows, we will notify it at least 24 hours in advance. Communications will be sent to **dev@lists.rdoproject.org**, 27 | **users@lists.rdoproject.org**, and other lists if appropriate. 28 | -------------------------------------------------------------------------------- /source/install/setting-up-memcached.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Setting-up-memcached 3 | authors: kashyap 4 | --- 5 | 6 | ## Setting up memcached for HA 7 | 8 | Install memcached on both nodes (rdo-memcache1|rdo-memcache2): 9 | 10 | yum install -y memcached 11 | 12 | Configure `pacemaker`. (Note: that fence xvm is specifically for VMs, not for baremetal): 13 | 14 | chkconfig pacemaker on 15 | pcs cluster setup --name rdo-memcache rdo-memcache1 rdo-memcache2 16 | pcs cluster start 17 | 18 | sleep 30 19 | 20 | pcs stonith create memcache1-fence fence_xvm multicast_address=225.0.0.7 pcmk_host_list=rdo-memcache1 21 | 22 | pcs stonith create memcache2-fence fence_xvm multicast_address=225.0.0.8 pcmk_host_list=rdo-memcache2 23 | 24 | pcs resource create memcached lsb:memcached --clone 25 | -------------------------------------------------------------------------------- /source/install/uninstalling-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Uninstalling RDO 3 | authors: dneary, kashyap, larsks, rbowen 4 | --- 5 | 6 | # Uninstalling RDO 7 | 8 | There is no automated uninstall process for RDO (or OpenStack in general) because OpenStack consists of multiple services, (possibly) running across multiple systems. At this time there is no way to identify all of the various parts, locate them, and safely uninstall them. 9 | 10 | Since OpenStack installations are almost certain to be deployed on dedicated systems (or VMs), the most reasonable way to "uninstall" RDO is to reinstall the base OS and start fresh. 11 | -------------------------------------------------------------------------------- /source/install/upgrading-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Upgrading RDO 3 | authors: kkula 4 | --- 5 | 6 | # Manual upgrades of RDO 7 | 8 | RDO project currently doesn't validate manual deployments. There are suggested to use deployment tools like Tripleo, where upgrade procedure is supported and described in the [documentation](https://docs.openstack.org/tripleo-docs/latest/upgrade/index.html). 9 | 10 | 11 | [Upstream instructions](https://docs.openstack.org/operations-guide/ops-upgrades.html) to manual upgrade may be helpful, however some adjustments might be needed. 12 | 13 | 14 | For operating TripleO-based OpenStack environments, see the [TripleO documentation](https://docs.openstack.org/developer/tripleo-docs/). 15 | 16 | -------------------------------------------------------------------------------- /source/javascripts/_bootstrap-includes.js: -------------------------------------------------------------------------------- 1 | // Change /// to //= to enable an include 2 | 3 | //= require bootstrap/affix 4 | //= require bootstrap/alert 5 | //= require bootstrap/button 6 | //= require bootstrap/carousel 7 | //= require bootstrap/collapse 8 | //= require bootstrap/dropdown 9 | //= require bootstrap/tab 10 | //= require bootstrap/transition 11 | //= require bootstrap/scrollspy 12 | //= require bootstrap/modal 13 | //= require bootstrap/tooltip 14 | //= require bootstrap/popover 15 | -------------------------------------------------------------------------------- /source/javascripts/admin.js: -------------------------------------------------------------------------------- 1 | //= require jquery 2 | //= require _bootstrap-includes 3 | //= require_tree ./vendor 4 | -------------------------------------------------------------------------------- /source/javascripts/application.js: -------------------------------------------------------------------------------- 1 | //= require jquery 2 | //= require moment 3 | //= require fullcalendar 4 | //= require_tree ./vendor 5 | //= require_tree ./lib 6 | 7 | /* Turn off parts of bootstrap that you do not need in 8 | * _bootstrap-includes.js */ 9 | //= require _bootstrap-includes 10 | 11 | //= require moment 12 | //= require bootstrap-sortable 13 | -------------------------------------------------------------------------------- /source/javascripts/lib/_copy_custom_libs_here.js: -------------------------------------------------------------------------------- 1 | // Place custom JS libraries in this directory 2 | -------------------------------------------------------------------------------- /source/javascripts/vendor/noconsole.js.coffee: -------------------------------------------------------------------------------- 1 | # Avoid `console` errors in browsers that lack a console. 2 | unless window.console and console.log 3 | (-> 4 | noop = -> 5 | 6 | methods = ["assert", "clear", "count", "debug", "dir", "dirxml", "error", "exception", "group", "groupCollapsed", "groupEnd", "info", "log", "markTimeline", "profile", "profileEnd", "markTimeline", "table", "time", "timeEnd", "timeStamp", "trace", "warn"] 7 | length = methods.length 8 | console = window.console = {} 9 | console[methods[length]] = noop while length-- 10 | )() 11 | -------------------------------------------------------------------------------- /source/layouts/_blog_pagination.haml: -------------------------------------------------------------------------------- 1 | :ruby 2 | # To use this partial, you must have `pageable: true` in your page's 3 | # frontmatter, and reference this partial like so, passing locals: 4 | # 5 | # = partial :blog_pagination, locals: locals 6 | 7 | 8 | - if defined? prev_page or defined? next_page 9 | 10 | - if num_pages > 1 11 | 12 | %ul.pagination 13 | 14 | - if prev_page 15 | %li 16 | - if prev_page 17 | =link_to "Newer", prev_page.url 18 | 19 | - (page_number - 4 .. page_number + 4).select{|i| i > 0 && i <= num_pages}.each do |i| 20 | 21 | - if i == page_number 22 | %li.active 23 | %span= i 24 | 25 | - else 26 | %li 27 | - p = nil 28 | - (i ... page_number).each do p = p ? p.metadata[:locals]['prev_page'] : prev_page; end 29 | - (page_number ... i).each do p = p ? p.metadata[:locals]['next_page'] : next_page; end 30 | =link_to "#{i}", (p && p.url) 31 | 32 | - if next_page 33 | %li 34 | =link_to "Older", next_page.url 35 | -------------------------------------------------------------------------------- /source/layouts/_blog_posts.haml: -------------------------------------------------------------------------------- 1 | :ruby 2 | # To use this partial, you must reference this partial like so, 3 | # passing locals: 4 | # 5 | # = partial :blog_posts, locals: locals 6 | 7 | summarize ||= summarize 8 | 9 | %section.articles 10 | 11 | - page_articles.reject {|a| !a.published? }.each do |article| 12 | = partial :blog_post, locals: {article: article, summarize: summarize} 13 | 14 | = partial :blog_pagination, locals: locals 15 | -------------------------------------------------------------------------------- /source/layouts/_footer.haml: -------------------------------------------------------------------------------- 1 | %footer#footer.text-center 2 | 3 | %hr.visible-print 4 | 5 | = partial :footer_custom 6 | 7 | - if data.site.footer_links 8 | %ul.footer-nav-list 9 | - data.site.footer_links.each do |name, url| 10 | - if url 11 | %li= link_to name.strip, url.strip, target: "_blank" 12 | - else 13 | %li= name.strip 14 | 15 | =# data.site.founding_year 16 | - founding = data.site.founding_year 17 | - year_string = if founding && founding.to_i < Time.now.year 18 | - founding.to_s + '–' + Time.now.year.to_s 19 | - else 20 | - Time.now.year.to_s 21 | 22 | .copyright 23 | = data.site.copyright || "© #{year_string} #{data.site.owner || data.site.name}" 24 | %span.legal= link_to 'Legal & Privacy', '/legal/' 25 | 26 | - if data.site.gerrit_url 27 | .edit-this-page 28 | - icon = '' 29 | - gerrit_url = "#{data.site.gerrit_url}" 30 | = link_to "#{icon}Edit this page on Gerrit", gerrit_url, {target: '_blank'} 31 | 32 | .last-modified 33 | - modified_time = `git log --pretty=format:%ai #{current_page.source_file}`.split(/\n/).first rescue nil 34 | 35 | - if modified_time 36 | Page last modified 37 | = Time.parse(modified_time).utc.strftime('%a %-d %b %Y %H:%M %Z') 38 | -------------------------------------------------------------------------------- /source/layouts/_footer_custom.haml: -------------------------------------------------------------------------------- 1 | .footer-rdo 2 | :markdown 3 | Docs 4 | : [Download](/install/packstack) 5 | : [Common questions](/rdo/faq) 6 | : [Troubleshooting](/troubleshooting/) 7 | : [About RDO](/rdo/) 8 | {:.} 9 | 10 | Use RDO 11 | : [Packstack](/install/packstack) 12 | : [TripleO](/tripleo/) 13 | : [Releases](/rdo/release-cadence) 14 | : [Trunk builds](http://trunk.rdoproject.org/) 15 | {:.} 16 | 17 | Community 18 | : [Participate](/contribute/) 19 | : [Browse open issues](https://issues.redhat.com/issues/?filter=12430650) 20 | : [Report a problem](https://issues.redhat.com/projects/RDO/issues) 21 | {:.} 22 | 23 | Support 24 | : [Red Hat OpenStack Platform](https://access.redhat.com/products/red-hat-openstack-platform/) 25 | : [Contact us](/contribute/mailing-lists/) 26 | {:.} 27 | -------------------------------------------------------------------------------- /source/layouts/_header.haml: -------------------------------------------------------------------------------- 1 | :ruby 2 | logo = data.site.logo 3 | 4 | def graphic_exists file 5 | sitemap.find_resource_by_path("images/#{file}") 6 | end 7 | 8 | def make_logo trySVG = false, file = data.site.logo 9 | if graphic_exists file 10 | isSVG = file[/.svg$/] ? 'is-svg' : 'not-svg' 11 | image_tag file, id: "logo", class: "logo #{trySVG ? isSVG : ''}", alt: data.site.name 12 | end 13 | end 14 | 15 | %header#branding.masthead.hidden-print(role="banner") 16 | 17 | %section.hgroup 18 | %h1 19 | ~ link_to "/" do 20 | 21 | - if logo 22 | 23 | - if logo.match /.svg$/ and graphic_exists logo 24 | 25 | - fallback = logo.gsub /.svg$/, '.png' 26 | ~ make_logo 'svg' 27 | 28 | - elsif 29 | 30 | ~ make_logo 31 | 32 | - else 33 | 34 | ~ data.site.name 35 | 36 | - if data.site.subhead 37 | %h2#site-title 38 | = data.site.subhead 39 | 40 | #access 41 | = partial :nav, locals: { source: "navigation", nav_class: "nav-pills" } 42 | -------------------------------------------------------------------------------- /source/layouts/_navbar_static_top.haml: -------------------------------------------------------------------------------- 1 | -# This is a plain, static bootstrap navbar written in haml. 2 | -# By default it is inverted and goes on the top of the page. 3 | .navbar.navbar-inverse.navbar-static-top 4 | .container 5 | .navbar-header 6 | %button.navbar-toggle( type="button" data-toggle="collapse" data-target=".navbar-collapse" ) 7 | %span.icon-bar 8 | %span.icon-bar 9 | %span.icon-bar 10 | %a.navbar-brand( href="/" title="Home" ) Home 11 | .navbar-collapse.collapse 12 | %ul.nav.navbar-nav 13 | %li 14 | %a( href="/blog/" ) Blog 15 | %li 16 | %a( href="/documentation/" ) Documentation 17 | %li.dropdown 18 | %a.dropdown-toggle( href="#help" title="help" data-toggle="dropdown" ) 19 | Help 20 | %b.caret 21 | %ul.dropdown-menu 22 | %li 23 | %a( href="http://middlemanapp.com/" ) Middleman 24 | %li 25 | %a( href="http://getbootstrap.com" ) Bootstrap 26 | %li 27 | %a( href="http://haml.info/" ) Haml 28 | 29 | -------------------------------------------------------------------------------- /source/layouts/admin.html.haml: -------------------------------------------------------------------------------- 1 | ~ wrap_layout :basic do 2 | 3 | - content_for :head do 4 | = javascript_include_tag 'application' 5 | = javascript_include_tag 'admin' 6 | = stylesheet_link_tag "application" 7 | = stylesheet_link_tag "print", media: "print" 8 | = stylesheet_link_tag "lib/admin" 9 | = stylesheet_link_tag "vendor/lepture-editor.css" 10 | 11 | = yield 12 | -------------------------------------------------------------------------------- /source/layouts/docs.html.haml: -------------------------------------------------------------------------------- 1 | - wrap_layout :layout do 2 | .row 3 | 4 | .col-sm-3.hidden-print 5 | 6 | = partial "nav", locals: { source: "docs", nav_class: "nav-vertical docbrowser", header: "h2.foo" } 7 | 8 | .col-sm-9 9 | 10 | %h2= current_page.data.title 11 | 12 | = yield 13 | -------------------------------------------------------------------------------- /source/layouts/layout.html.haml: -------------------------------------------------------------------------------- 1 | ~ wrap_layout :basic do 2 | 3 | - unless current_page.data.hide_header || request['params']['contentonly'] 4 | = partial "header" 5 | 6 | %section#page-wrap.page-wrap 7 | 8 | %section#page.page 9 | %section#content.content{class: current_page.data.no_container ? '' : 'container' } 10 | -# Show a warning for those using < IE6 or lower 11 | /[if lt IE 7] 12 |

You are using an outdated browser. 13 | Upgrade your browser today or 14 | install Google Chrome Frame to better experience this site.

15 | 16 | -# Render actual page content 17 | = yield 18 | 19 | - unless data.page.hide_footer || request['params']['contentonly'] 20 | = partial "footer" 21 | -------------------------------------------------------------------------------- /source/layouts/page.html.haml: -------------------------------------------------------------------------------- 1 | layout.html.haml -------------------------------------------------------------------------------- /source/layouts/post.html.haml: -------------------------------------------------------------------------------- 1 | ~ wrap_layout :layout do 2 | 3 | %section.blog-post-page.row 4 | 5 | .col-md-10.col-md-offset-1 6 | 7 | - blog_post = defined? current_page.date 8 | 9 | - if blog_post 10 | = partial :blog_post, locals: {article: current_page} 11 | 12 | %section#blog-comments 13 | 14 | - else 15 | = yield 16 | -------------------------------------------------------------------------------- /source/layouts/pullheadings.haml: -------------------------------------------------------------------------------- 1 | - content_for :tail do 2 | :coffee 3 | $ -> 4 | # Emulate MediaWiki's mw-headline class for visual effects on the front page 5 | $('h2').wrapInner('') 6 | 7 | ~ wrap_layout :layout do 8 | 9 | %section#bodyContent 10 | .bg-boxes.bg-boxes-single 11 | .row 12 | .block-heading 13 | = yield 14 | -------------------------------------------------------------------------------- /source/layouts/toc.haml: -------------------------------------------------------------------------------- 1 | -# This is a convoluted way to add a Table of Contents w/o messing w/ Markdown 2 | -# The ToC is added directly before the first H2 3 | 4 | - is_markdown = current_page.source_file.match(/.(md|markdown|mdown)$/) 5 | 6 | ~ wrap_layout :layout do 7 | 8 | - if is_markdown 9 | - content = File.read(current_page.source_file).split(/^---$/)[2] 10 | = markdown_to_html content.to_s.sub(/^## /, "\n1. tic\n{:toc}\n\n\\0") 11 | - else 12 | = yield 13 | -------------------------------------------------------------------------------- /source/legal/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Legal 3 | category: legal 4 | --- 5 | 6 | # Legal 7 | 8 | {:.no_toc} 9 | 10 | ## Copyright 11 | 12 | Except where otherwise indicated, all submissions to this site (including wiki page edits, forum posts and comments) are licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported license](http://creativecommons.org/licenses/by/3.0/) 13 | 14 | ## Trademarks 15 | 16 | Red Hat and the Shadowman logo are trademarks of Red Hat, Inc., registered in the United States and other countries. The OpenStack Word Mark, OpenStack Logo, and OpenStack Distribution Logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. All other trademarks are the property of their respective owners. 17 | 18 | ## Privacy policy 19 | 20 | At Red Hat, your privacy is important to us. By joining the RDO community, you will be giving us some personal information, including your name and an email address. For members of the RDO community, as of 25 May 2018, we are committed to a community specific [privacy policy](/legal/privacy/) compliant with the [General Data Projection Regulation](https://en.wikipedia.org/wiki/General_Data_Protection_Regulation). 21 | 22 | ## Terms of use 23 | 24 | Contributors to this site are responsible for the contributions they make. By contributing to the site, you agree not to post any illegal material, to respect the copyrights of others, and to take responsibility for any content posted from your account. For more information, please consult the extended [terms of use](/legal/terms-of-use/). 25 | 26 | 27 | -------------------------------------------------------------------------------- /source/legal/legal.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Legal 3 | category: legal 4 | --- 5 | 6 | # Legal 7 | 8 | {:.no_toc} 9 | 10 | ## Copyright 11 | 12 | Except where otherwise indicated, all submissions to this site (including wiki page edits, forum posts and comments) are licensed under the [Creative Commons Attribution-ShareAlike 3.0 Unported license](http://creativecommons.org/licenses/by/3.0/) 13 | 14 | ## Trademarks 15 | 16 | Red Hat and the Shadowman logo are trademarks of Red Hat, Inc., registered in the United States and other countries. The OpenStack Word Mark, OpenStack Logo, and OpenStack Distribution Logo are either registered trademarks/service marks or trademarks/service marks of the OpenStack Foundation, in the United States and other countries and are used with the OpenStack Foundation's permission. All other trademarks are the property of their respective owners. 17 | 18 | ## Privacy policy 19 | 20 | At Red Hat, your privacy is important to us. By joining the RDO community, you will be giving us some personal information, including your name and an email address. For members of the RDO community, we are committed to the [Red Hat privacy policy](http://www.redhat.com/footer/privacy-policy.html). 21 | 22 | ## Terms of use 23 | 24 | Contributors to this site are responsible for the contributions they make. By contributing to the site, you agree not to post any illegal material, to respect the copyrights of others, and to take responsibility for any content posted from your account. For more information, please consult the extended [terms of use](/legal/terms-of-use/). 25 | 26 | 27 | -------------------------------------------------------------------------------- /source/networking/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Networking 3 | authors: rbowen 4 | --- 5 | 6 | # Networking 7 | 8 | [← Docs](/documentation/) 9 | 10 | ## Useful resources 11 | 12 | * [Network troubleshooting](/troubleshooting/networking/) 13 | 14 | -------------------------------------------------------------------------------- /source/newsletter/2013.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletter Archive - 2013 3 | --- 4 | 5 | # Newsletter Archive - 2013 6 | 7 | We send out a monthly [newsletter](/newsletter) covering anything of interest to the RDO Community. 8 | 9 | You can sign up to receive the newsletter [on the mailing list page](http://www.redhat.com/mailman/listinfo/rdo-newsletter). 10 | 11 | * [December 2013](https://www.redhat.com/archives/rdo-newsletter/2013-December/msg00000.html) 12 | * [November 2013](https://www.redhat.com/archives/rdo-newsletter/2013-November/msg00000.html) 13 | * [October 2013](https://www.redhat.com/archives/rdo-newsletter/2013-October/msg00000.html) 14 | * [September 2013](https://www.redhat.com/archives/rdo-newsletter/2013-September/msg00000.html) 15 | * [August 2013](https://www.redhat.com/archives/rdo-newsletter/2013-August/msg00000.html) 16 | * [July 2013](https://www.redhat.com/archives/rdo-newsletter/2013-July/msg00000.html) 17 | -------------------------------------------------------------------------------- /source/newsletter/2014.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletter Archive - 2014 3 | --- 4 | 5 | # Newsletter Archive - 2014 6 | 7 | We send out a monthly [newsletter](/newsletter) covering anything of interest to the RDO Community. 8 | 9 | You can sign up to receive the newsletter [on the mailing list page](http://www.redhat.com/mailman/listinfo/rdo-newsletter). 10 | 11 | * [December 2014](/newsletter/2014-december) 12 | * [November 2014](/newsletter/2014-november) 13 | * [October 2014](/newsletter/2014-october) 14 | * [September 2014](/newsletter/2014-september) 15 | * [August 2014](/newsletter/2014-august) 16 | * [July 2014](/newsletter/2014-july) 17 | * [June 2014](/newsletter/2014-june) 18 | * [May 2014](http://rdoproject.org/Newsletter/2014-May) 19 | * [April 2014](https://www.redhat.com/archives/rdo-newsletter/2014-April/msg00000.html) 20 | * [March 2014](https://www.redhat.com/archives/rdo-newsletter/2014-March/msg00000.html) 21 | * [February 2014](https://www.redhat.com/archives/rdo-newsletter/2014-February/msg00000.html) 22 | 23 | ## Earlier 24 | 25 | * [2013](/newsletter/2013) 26 | -------------------------------------------------------------------------------- /source/newsletter/2015/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletter Archive - 2015 3 | --- 4 | 5 | # Newsletter Archive - 2015 6 | 7 | We send out a monthly [newsletter](/newsletter) covering anything of interest to the RDO Community. 8 | 9 | You can sign up to receive the newsletter [on the mailing list page](http://www.redhat.com/mailman/listinfo/rdo-newsletter). 10 | 11 | ## 2015 12 | 13 | * [December 2015](/newsletter/2015/december) 14 | * [November 2015](/newsletter/2015/november) 15 | * [October 2015](/newsletter/2015/october) 16 | * [September 2015](/newsletter/2015/september) 17 | * [August 2015](/newsletter/2015/august) 18 | * [July 2015](/newsletter/2015/july) 19 | * [June 2015](/newsletter/2015/june) 20 | * [May 2015](/newsletter/2015/may) 21 | * [April 2015](/newsletter/2015/april) 22 | * [March 2015](/newsletter/2015/march) 23 | * [February 2015](/newsletter/2015/february) 24 | * [January 2015](/newsletters/2015/january) 25 | 26 | ## Earlier 27 | 28 | * [2014](/newsletter/2014) 29 | * [2013](/newsletter/2013) 30 | 31 | -------------------------------------------------------------------------------- /source/newsletter/2016/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Newsletter Archive - 2016 3 | --- 4 | 5 | # Newsletter Archive - 2016 6 | 7 | We send out a monthly [newsletter](/newsletter) covering anything of interest to the RDO Community. 8 | 9 | You can sign up to receive the newsletter [on the mailing list page](http://www.redhat.com/mailman/listinfo/rdo-newsletter). 10 | 11 | * [December 2016](/newsletter/2016/december) 12 | * [November 2016](/newsletter/2016/november) 13 | * [October 2016](/newsletter/2016/october) 14 | * [September 2016](/newsletter/2016/september) 15 | * [August 2016](/newsletter/2016/august) 16 | * [July 2016](/newsletter/2016/july) 17 | * [June 2016](/newsletter/2016/june) 18 | * [May 2016](/newsletter/2016/may) 19 | * [April 2016](/newsletter/2016/april) 20 | * [March 2016](/newsletter/2016/march) 21 | * [February 2016](/newsletter/2016/february) 22 | * [January 2016](/newsletter/2016/january) 23 | 24 | ## Earlier 25 | 26 | * [2015](/newsletter/2015) 27 | * [2014](/newsletter/2014) 28 | * [2013](/newsletter/2013) 29 | 30 | -------------------------------------------------------------------------------- /source/newsletter/newsletterthanks.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: NewsletterThanks 3 | authors: rbowen 4 | --- 5 | 6 | # Newsletter Thanks 7 | 8 | Thanks. Your feedback helps us make the newsletter better. If you want to send a more detailed response, please drop me a note at rbowen@redhat.com letting us know what's useful and what isn't. 9 | 10 | --Rich 11 | -------------------------------------------------------------------------------- /source/rdo/centos.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: CentOS 3 | authors: rbowen 4 | --- 5 | 6 | # CentOS 7 | 8 | RDO is the best OpenStack distribution for [CentOS](http://centos.org/), 9 | because it is built and tested on CentOS, with the help of the CentOS 10 | community. This work is facilitated via the [CentOS Cloud 11 | SIG](https://wiki.centos.org/SpecialInterestGroup/Cloud). 12 | 13 | The Cloud SIG has weekly meetings, every Thursday at [15:00 14 | UTC](https://www.google.com/search?q=15%3A00+UTC). 15 | 16 | The transcript from the most recent meeting may be found 17 | [here](https://www.centos.org/minutes/2015/november/centos-devel.2015-11-12-15.10.log.html). 18 | 19 | ## RDO on CentOS 20 | 21 | To install RDO on CentOS: 22 | 23 | Ensure you have a fully updated CentOS Linux 7/x86_64 machine, and run: 24 | 25 | sudo yum install centos-release-openstack-liberty 26 | sudo yum install openstack-packstack 27 | packstack --allinone 28 | 29 | ## Cloud Images 30 | 31 | If you want to run CentOS as a guest on your OpenStack cloud, you can 32 | find CentOS cloud images at the following locations: 33 | 34 | * [CentOS 7 qcow images](http://cloud.centos.org/centos/7/images/) 35 | * [CentOS 6 qcow images](http://wiki.centos.org/Cloud/OpenNebula) 36 | -------------------------------------------------------------------------------- /source/rdo/ducks.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ducks 3 | --- 4 | 5 | ![](/images/ducks/all_ducks.jpg) 6 | 7 | # Ducks 8 | 9 | In Paris, at the OpenStack Summit in 2014, eNovance were giving away 10 | ducks as their booth swag. When eNovance joined the Red Hat family, RDO 11 | decided to continue this tradition, and has done ducks each OpenStack 12 | Summit since. 13 | 14 | Here's a gallery of ducks from years past. (Please share your duck 15 | images if you have them!) 16 | 17 | There's a [blog post](/blog/2015/10/ducks/) explaining the significance 18 | of ducks. 19 | 20 | 21 | ## 2014, Paris 22 | 23 | ![](/images/ducks/enovance_duck.jpg) 24 | 25 | ## 2015, Vancouver 26 | 27 | *I don't think we did ducks in Vancouver. Anybody remember?* 28 | 29 | ## 2015, Tokyo 30 | 31 | ![](/images/ducks/tokyo_duck.jpg) 32 | 33 | ## 2016, Austin 34 | 35 | ![](/images/ducks/austin_duck.jpg) 36 | 37 | ## 2016, Barcelona 38 | 39 | ![](/images/ducks/barcelona_duck.jpg) 40 | 41 | ## 2017, Boston 42 | 43 | ![](/images/ducks/boston_duck.jpg) 44 | 45 | ## 2017, Sydney 46 | 47 | ![](/images/ducks/sydney_duck.jpg) 48 | 49 | ## 2018, Vancouver 50 | 51 | ![](/images/ducks/vancouver_duck.jpg) 52 | 53 | ## 2018, Berlin 54 | 55 | ![](/images/ducks/berlin_duck.jpg) 56 | 57 | ## 2019, Denver 58 | 59 | ![](/images/ducks/denver_duck.jpg) 60 | 61 | ## 2019, Shanghai 62 | 63 | ... Coming Soon! 64 | 65 | -------------------------------------------------------------------------------- /source/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /source/storage/Cinder/using-dell-equallogic-for-cinder-with-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using Dell EqualLogic for Cinder with RDO 3 | authors: tshefi 4 | --- 5 | 6 | # Using Dell EqualLogic for Cinder with RDO 7 | 8 | ## Configuring Cinder 9 | 10 | On the RDO node, configure the Cinder configuration file. The default configuration file has commented out sections for Ceph, which you can uncomment and configure. 11 | 12 | 1. As root, edit the `/etc/cinder/cinder.conf` file. 13 | 14 | 2. Add the volume driver. 15 | 16 |     volume_driver = cinder.volume.drivers.eqlx.DellEQLSanISCSIDriver 17 | 18 | 3. Add EqualLogic's SSH ip: `san_ip = X.Y.Z.W`. 19 | 20 | 4. Add EqualLogic's SSH user: `san_login = SSHuser`. 21 | 22 | 5. Add EqualLogic's SSH password: `san_password = SSHPassword`. 23 | 24 | 6. Add EqualLogic's default pool name: `eqlx_pool = default`. 25 | 26 | * Note your default pool name may vary. 27 | 28 | 7. Add EqualLogic's group name: `eqlx_group_name = PS6000-group`. 29 | 30 | * Note your group name may vary. 31 | 32 | 8. Save changes to the configuration file. 33 | 34 | 9. Restart Cinder, #openstack-service restart cinder 35 | 36 | Further details and options can be found at: [1](http://docs.openstack.org/trunk/config-reference/content/dell-equallogic-driver.html) 37 | -------------------------------------------------------------------------------- /source/storage/Cinder/using-nfs-for-cinder-with-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using NFS for Cinder with RDO 3 | authors: yrabl 4 | --- 5 | 6 | # Using NFS for Cinder with RDO 7 | 8 | * Set the NFS share in Packstack: 9 | 10 |   # packstack --cinder-backend=nfs --cinder-nfs-mounts=:/ 11 | 12 | * Create the directory on which the shares will be mounted: 13 | 14 |   # mkdir -p /var/lib/cinder/mnt 15 | 16 | * Make the Cinder user the owner of the directory: 17 | 18 |   # chown -v cinder.cinder /var/lib/cinder/mnt 19 | 20 | * Configure the SELINUX on the compute nodes to allow access from the instances to the shares: 21 | 22 |   # /usr/sbin/setsebool -P virt_use_nfs on 23 | 24 | * Restart all the Cinder related services: 25 | 26 | # for i in $(systemctl list-unit-files | awk ' /cinder/ { print $1 } ' ); do systemctl restart $i; done 27 | -------------------------------------------------------------------------------- /source/storage/Cinder/using-thinlvm-for-cinder-with-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using ThinLVM for Cinder with RDO Liberty 3 | authors: coolsvap 4 | --- 5 | 6 | # Using ThinLVM for Cinder with RDO 7 | 8 | The default backend driver configured for Cinder is LVM. It does support thin provisioning but such a feature is not enabled by default. Thin provisioning allows to overcommit the storage space. Since the Liberty release, enabling thin provisioning should be as simple as: 9 | 10 |  # openstack-config --set /etc/cinder/cinder.conf DEFAULT lvm_type thin 11 |  # service openstack-cinder-volume restart 12 | -------------------------------------------------------------------------------- /source/storage/Glance/using-ceph-for-glance-with-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using Ceph for Glance with RDO 3 | authors: tshefi 4 | --- 5 | 6 | # Using Ceph for Glance with RDO 7 | 8 | ## Configuring Glance 9 | 10 | On the RDO node, configure the Glance API configuration file. The default configuration file has commented out sections for Ceph, which you can uncomment and configure. 11 | 12 | 1. As `root`, edit the `/etc/glance/glance-api.conf` file. 13 | 14 | 2. Change `default_store=file` to `default_store=rbd`. 15 | 16 | 3. Enable `rbd_store_user` and set the user name to `images` (corresponds to user `client.images`). 17 | 18 | 4. Enable `rbd_store_pool` and set the pool name to `images` (corresponds to the pool `images`). 19 | 20 | 5. Enable `show_image_direct_url` and set the value to `True`. 21 | 22 | 6. Enable `rbd_store_ceph_conf` and leave the default Ceph configuration file path unchanged. 23 | 24 | 7. Enable `rbd_store_chunk_size` and set the value to `8`. 25 | 26 | When you are done, the configuration (without comments) should look something like this: 27 | 28 |    default_store=rbd 29 |    rbd_store_user=images 30 |    rbd_store_pool=images 31 |    show_image_direct_url=True 32 |    rbd_store_ceph_conf=/etc/ceph/ceph.conf 33 |    rbd_store_chunk_size=8 34 | 35 | Restart glance to ensure that the configuration changes take effect. 36 | 37 |    sudo service openstack-glance-api restart 38 | -------------------------------------------------------------------------------- /source/storage/Glance/using-swift-for-glance-with-rdo.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Using Swift for Glance with RDO Liberty 3 | authors: coolsvap 4 | --- 5 | 6 | # Using Swift for Glance with RDO 7 | 8 | The default backend driver configured for Glance is the local filesystem but it supports a set of alternative backends, including Swift. If you want to store the Glance images on Swift, a few post-install configuration steps are needed: 9 | ` # openstack-config --set /etc/glance/glance-api.conf DEFAULT default_store swift` 10 | ` # openstack-config --set /etc/glance/glance-api.conf DEFAULT swift_store_auth_address http://$KEYSTONE_HOST:5000/v2.0/` 11 | ` # openstack-config --set /etc/glance/glance-api.conf DEFAULT swift_store_user services:glance` 12 | ` # openstack-config --set /etc/glance/glance-api.conf DEFAULT swift_store_key $SERVICE_PASSWORD` 13 | ` # openstack-config --set /etc/glance/glance-api.conf DEFAULT swift_store_create_container_on_put True` 14 | 15 | **NOTE**: you should replace $KEYSTONE_HOST with the IP address of the node running Keystone and $SERVICE_PASSWORD with the password assigned to the "glance" user. If you installed using packstack, that is in your answer file, search for `CONFIG_GLANCE_KS_PW` 16 | 17 | You will also need to assign the "ResellerAdmin" role to the "glance" user or it won't be able to create containers. 18 | 19 |  # keystone user-role-add --tenant_id=$UUID_SERVICES_TENANT --user=$UUID_GLANCE_USER --role=$UUID_ResellerAdmin_ROLE 20 | 21 | Feel free to create the "ResellerAdmin" role first if it's not found and lastly restart the needed services: 22 | 23 |  # service openstack-glance-api restart 24 | -------------------------------------------------------------------------------- /source/storage/Swift/Liberty/using-swift-for-glance-with-rdo-liberty.html.md: -------------------------------------------------------------------------------- 1 | ../../Glance/Liberty/using-swift-for-glance-with-rdo-liberty.html.md -------------------------------------------------------------------------------- /source/stylesheets/_application-custom.css.sass: -------------------------------------------------------------------------------- 1 | /**/ 2 | -------------------------------------------------------------------------------- /source/stylesheets/_bootstrap-includes.sass: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.0.0 3 | * 4 | * Copyright 2013 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world by @mdo and @fat. 9 | 10 | // Core variables and mixins 11 | @import bootstrap/variables 12 | @import bootstrap/mixins 13 | 14 | // Reset 15 | @import bootstrap/normalize 16 | //@import bootstrap/print 17 | 18 | // Core CSS 19 | @import bootstrap/scaffolding 20 | @import bootstrap/type 21 | @import bootstrap/code 22 | @import bootstrap/grid 23 | @import bootstrap/tables 24 | @import bootstrap/forms 25 | @import bootstrap/buttons 26 | 27 | // Components 28 | //@import bootstrap/component-animations 29 | //@import bootstrap/glyphicons 30 | //@import bootstrap/dropdowns 31 | @import bootstrap/button-groups 32 | @import bootstrap/input-groups 33 | @import bootstrap/navs 34 | @import bootstrap/navbar 35 | //@import bootstrap/breadcrumbs 36 | @import bootstrap/pagination 37 | //@import bootstrap/pager 38 | //@import bootstrap/labels 39 | //@import bootstrap/badges 40 | //@import bootstrap/jumbotron 41 | //@import bootstrap/thumbnails 42 | @import bootstrap/alerts 43 | //@import bootstrap/progress-bars 44 | //@import bootstrap/media 45 | //@import bootstrap/list-group 46 | //@import bootstrap/panels 47 | //@import bootstrap/wells 48 | @import bootstrap/close 49 | 50 | // Components w/ JavaScript 51 | @import bootstrap/modals 52 | @import bootstrap/tooltip 53 | //@import bootstrap/popovers 54 | //@import bootstrap/carousel 55 | 56 | // Utility classes 57 | @import bootstrap/utilities 58 | @import bootstrap/responsive-utilities 59 | -------------------------------------------------------------------------------- /source/stylesheets/_fonts.css: -------------------------------------------------------------------------------- 1 | @import url(fonts/fonts.css); 2 | -------------------------------------------------------------------------------- /source/stylesheets/application.css.sass: -------------------------------------------------------------------------------- 1 | // Various variables to customize bootstrap 2 | // Uncomment a line and change its value to change the look of your site 3 | @import bootstrap-custom 4 | 5 | // You can uncomment parts of bootstrap that you don't use 6 | // in _bootstrap-includes.sass, generated from: 7 | // sass-convert -F scss -T sass {bootstrap-sass}/vendor/assets/stylesheets/bootstrap/bootstrap.scss 8 | @import bootstrap-includes 9 | 10 | @import bootstrap-sortable 11 | 12 | // Custom mixins 13 | @import lib/mixin/grayscale.sass 14 | @import lib/mixin/responsive-image.sass 15 | 16 | //@import vendor/normalize.css 17 | @import fonts/fonts.css 18 | @import vendor/solarized-light.sass 19 | 20 | @import lib/target-enhancements.sass 21 | @import lib/scrollbar-on.sass 22 | //@import lib/juvia-comments.sass 23 | 24 | @import lib/site.sass 25 | @import lib/markdown.sass 26 | @import lib/blog.sass 27 | @import lib/search.sass 28 | @import lib/quicklinks.sass 29 | @import lib/events.sass 30 | @import lib/cal-widget.sass 31 | @import lib/toc-md.sass 32 | 33 | @import lib/stickyfooter.sass 34 | @import lib/svg-fallback.sass 35 | 36 | @import font-awesome 37 | 38 | @import lib/theme.sass 39 | @import lib/theme/footer.sass 40 | @import lib/screen.sass 41 | -------------------------------------------------------------------------------- /source/stylesheets/fonts/fonts.css: -------------------------------------------------------------------------------- 1 | /* Place your font info and files here */ 2 | -------------------------------------------------------------------------------- /source/stylesheets/images/audio-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/audio-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/external-link-ltr-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/external-link-ltr-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/file-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/lock-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/lock-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/mail-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/news-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/news-icon.png -------------------------------------------------------------------------------- /source/stylesheets/images/talk-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/stylesheets/images/talk-icon.png -------------------------------------------------------------------------------- /source/stylesheets/lib/blog.css.sass: -------------------------------------------------------------------------------- 1 | @import ../bootstrap-custom 2 | 3 | // blog post metadata (dates etc) styling 4 | .blog 5 | .post_info 6 | font-size: 80% 7 | color: rgba(black, 0.4) 8 | -------------------------------------------------------------------------------- /source/stylesheets/lib/docbrowser.sass: -------------------------------------------------------------------------------- 1 | @import ../bootstrap-custom 2 | 3 | .nav.docbrowser 4 | border-radius: 6px 5 | overflow: hidden 6 | 7 | li 8 | $nav-padding-x: 20px 9 | $nav-padding-y: 10px 10 | $selected-bar: 5px 11 | padding-right: 2ex 12 | 13 | a 14 | padding: $nav-padding-y $nav-padding-x 15 | 16 | &:hover 17 | background-color: rgba($component-active-bg, 0.1) 18 | 19 | &.active 20 | a 21 | background-color: rgba($component-active-bg, 0.2) 22 | padding-right: $nav-padding-x - $selected-bar 23 | border-right: $selected-bar solid rgba($component-active-bg, 0.3) 24 | 25 | &.disabled 26 | font-size: 12pt 27 | 28 | a 29 | cursor: default !important 30 | 31 | &:not(:first-child) 32 | padding-top: 1em 33 | -------------------------------------------------------------------------------- /source/stylesheets/lib/markdown.sass: -------------------------------------------------------------------------------- 1 | @import ../bootstrap-custom 2 | 3 | // Special stylings for markdown 4 | .source-md, 5 | .source-markdown, 6 | .source-mdown 7 | 8 | // Pull in Bootstrap's table SASS and apply it to markdown files 9 | table 10 | @extend .table 11 | @extend .table-bordered 12 | @extend .table-striped 13 | //@extend .table-responsive 14 | -------------------------------------------------------------------------------- /source/stylesheets/lib/mixin/grayscale.sass: -------------------------------------------------------------------------------- 1 | %grayscale 2 | filter: url("data:image/svg+xml;utf8,#grayscale") // Firefox 10+, Firefox on Android 3 | filter: gray // IE6-9 4 | -webkit-filter: grayscale(100%) // Chrome 19+, Safari 6+, Safari 6+ iOS 5 | 6 | %greyscale 7 | @extend %grayscale 8 | -------------------------------------------------------------------------------- /source/stylesheets/lib/mixin/responsive-image.sass: -------------------------------------------------------------------------------- 1 | %responsive-image 2 | max-width: 100% 3 | height: auto 4 | -------------------------------------------------------------------------------- /source/stylesheets/lib/quicklinks.sass: -------------------------------------------------------------------------------- 1 | /* Quicklinks 2 | 3 | #quicklinks 4 | margin: 4em 0 2em 5 | padding: 0 0 2em 6 | overflow: hidden 7 | 8 | ul, li 9 | display: inline 10 | list-style: none 11 | padding: 0 12 | margin: 0 13 | a 14 | -moz-box-sizing: border-box 15 | box-sizing: border-box 16 | float: left 17 | //font-size: 86% 18 | min-width: 33% 19 | padding: 0.5ex 0 0.5ex 2ex 20 | br 21 | display: none 22 | p 23 | display: inline 24 | margin: 0 25 | 26 | .top a, a.top 27 | clear: both 28 | display: block 29 | padding: 2em 1em 2em 0 30 | font-size: 86% 31 | 32 | .top a 33 | padding-top: 1em 34 | &:before 35 | content: "\25b4" 36 | padding-right: 0.5ex 37 | text-decoration: none !important 38 | 39 | a.top:before 40 | content: "\25b4" 41 | padding-right: 0.5ex 42 | text-decoration: none !important 43 | -------------------------------------------------------------------------------- /source/stylesheets/lib/scrollbar-on.sass: -------------------------------------------------------------------------------- 1 | /* Always show the vertical scrollbar, reducing jumps between pages 2 | html 3 | overflow-y: scroll 4 | -------------------------------------------------------------------------------- /source/stylesheets/lib/search.sass: -------------------------------------------------------------------------------- 1 | .search-page 2 | 3 | .search-form 4 | //@extend .row 5 | 6 | .search-input 7 | //@extend .col-md-10 8 | 9 | .similar 10 | padding: 1ex 0 2ex 11 | color: #999 12 | 13 | .progress-container 14 | position: absolute 15 | left: 0 16 | right: 0 17 | text-align: center 18 | 19 | .spinner 20 | font-size: 6em 21 | margin: 1em auto 22 | color: rgba(black, 0.25) 23 | 24 | .articles 25 | margin: 0 26 | 27 | article.post 28 | padding: 1.5em 1em 29 | margin: 0 -1em 30 | 31 | &.highlight 32 | background: rgba(yellow, 0.125) 33 | outline: 1px solid rgba(orange, 0.25) 34 | border-radius: 6px 35 | 36 | h2 37 | @extend h3 38 | padding: 0 39 | margin: 0 40 | 41 | .date 42 | padding: 0 0 0.5ex 43 | 44 | .post-content 45 | margin: 0.5ex 0 46 | 47 | .post-meta 48 | color: #999 49 | margin: 1ex 0 0 50 | 51 | .date + .url:before 52 | display: inline-block 53 | content: "—" 54 | margin: 0.5ex 55 | color: #ccc 56 | text-decoration: none 57 | 58 | .url 59 | opacity: 0.8 60 | 61 | .hidden 62 | display: none 63 | 64 | #results-none 65 | text-align: center 66 | padding: 2em 0 67 | -------------------------------------------------------------------------------- /source/stylesheets/lib/site.sass: -------------------------------------------------------------------------------- 1 | header.masthead 2 | text-align: center 3 | 4 | nav 5 | //max-width: 50% 6 | //margin: 0 auto 7 | 8 | body > footer 9 | padding: 1rem 1rem 2rem 10 | 11 | #footer 12 | .edit-this-page 13 | display: inline 14 | padding: 0 3em 15 | 16 | .icon 17 | font-size: 16px 18 | vertical-align: middle 19 | margin: 0 0.75ex 2px 0 20 | opacity: 0.8 21 | transition: 300ms all 22 | 23 | a:hover 24 | .icon 25 | opacity: 1 -------------------------------------------------------------------------------- /source/stylesheets/lib/stickyfooter.sass: -------------------------------------------------------------------------------- 1 | body 2 | display: flex 3 | min-height: 100vh 4 | flex-direction: column 5 | 6 | #page-wrap 7 | flex: 1 8 | -------------------------------------------------------------------------------- /source/stylesheets/lib/svg-fallback.sass: -------------------------------------------------------------------------------- 1 | html.svg .not-svg, 2 | html.no-svg .is-svg 3 | display: none 4 | -------------------------------------------------------------------------------- /source/stylesheets/lib/target-enhancements.sass: -------------------------------------------------------------------------------- 1 | @media screen 2 | $highlight-color: mix(yellow, white, 50) 3 | $target-offset: 3em 4 | 5 | @keyframes highlight 6 | 0% 7 | background-color: white 8 | 5% 9 | background-color: $highlight-color 10 | 10% 11 | background-color: $highlight-color 12 | 20% 13 | background-color: mix($highlight-color, white, 25) 14 | 25% 15 | background-color: $highlight-color 16 | 70% 17 | background-color: $highlight-color 18 | 100% 19 | background-color: white 20 | 21 | *:target 22 | position: relative 23 | z-index: 100 24 | 25 | &:before, 26 | &:after 27 | content: '' 28 | display: block 29 | pointer-events: none 30 | 31 | &:before 32 | height: $target-offset 33 | margin: -$target-offset 0 0 34 | 35 | &:after 36 | animation: highlight 6s ease 37 | position: absolute 38 | top: calc(#{$target-offset} - 0.25em) 39 | right: -0.5em 40 | bottom: -0.25em 41 | left: -0.5em 42 | z-index: -1 43 | -------------------------------------------------------------------------------- /source/stylesheets/lib/theme/footer.sass: -------------------------------------------------------------------------------- 1 | #footer 2 | width: 100% 3 | max-width: 88em 4 | margin: 0 auto 5 | padding: 40px 2em 6 | color: #ccc 7 | 8 | .copyright 9 | float: left 10 | 11 | .edit-this-page, 12 | .legal 13 | padding: 0 2ex 14 | 15 | a 16 | opacity: 1 17 | color: mix(#337ab7, #fff, 60) 18 | 19 | &:hover 20 | opacity: 1 21 | color: mix(#337ab7, #fff, 30) 22 | 23 | 24 | .footer-nav-list 25 | line-height: 20px 26 | float: right 27 | position: relative 28 | 29 | &, li 30 | padding: 0 !important 31 | margin: 0 !important 32 | 33 | li 34 | padding-right: 30px !important 35 | 36 | &:after 37 | //content: url(/images/red-hat-shadowman-small.svg) 38 | content: url(/images/newredhat.png) 39 | height: 20px 40 | width: 20px 41 | vertical-align: middle 42 | position: absolute 43 | right: 10 44 | 45 | .last-modified 46 | display: none 47 | 48 | 49 | .footer-rdo 50 | text-align: left 51 | overflow: hidden 52 | //max-width: 80em 53 | margin: 0 auto 54 | 55 | dl 56 | width: 25% 57 | min-width: 24ex 58 | float: left 59 | padding: 0 0 4ex 60 | min-height: 10em 61 | 62 | dt 63 | text-transform: uppercase 64 | font-weight: bold 65 | color: #fff 66 | 67 | dd 68 | a 69 | color: #999 70 | 71 | &:hover 72 | color: #eee 73 | -------------------------------------------------------------------------------- /source/stylesheets/lib/toc-md.sass: -------------------------------------------------------------------------------- 1 | #markdown-toc 2 | color: #999 3 | margin: 2ex 0 4 | padding: 0 5 | columns: 50ex 6 | -moz-columns: 50ex 7 | 8 | ol ol 9 | padding: 0 0 0 3ex 10 | 11 | > li 12 | list-style: none 13 | 14 | > a 15 | display: none 16 | 17 | > ol 18 | margin: 0 19 | 20 | > ol > li 21 | overflow: hidden 22 | padding: 0 0 2ex 2ex 23 | text-indent: -2ex 24 | position: relative 25 | list-style-position: inside 26 | 27 | > ol 28 | padding-top: 0.5ex 29 | 30 | > a 31 | font-weight: bold 32 | font-size: 120% 33 | 34 | ol ol li 35 | list-style-position: outside 36 | text-indent: 0 37 | list-style-type: lower-latin 38 | padding-bottom: 1ex 39 | 40 | ol ol ol li 41 | list-style-type: lower-roman 42 | padding-bottom: 0 43 | 44 | ol ol ol ol li 45 | list-style-type: upper-roman 46 | 47 | ol ol ol ol ol li 48 | list-style-type: upper-latin 49 | -------------------------------------------------------------------------------- /source/stylesheets/print.css.sass: -------------------------------------------------------------------------------- 1 | @import bootstrap-custom 2 | 3 | @import bootstrap/mixins 4 | @import bootstrap/variables 5 | @import bootstrap/normalize 6 | 7 | @import bootstrap/print 8 | @import bootstrap/responsive-utilities 9 | -------------------------------------------------------------------------------- /source/testday/pike/workarounds1.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Pike Test Day Workarounds 3 | --- 4 | 5 | # Workarounds, Pike Test Day 1 6 | 7 | If you discover a way to work around a known problem, please document it 8 | here, so that others may benefit from your experience. 9 | 10 | [Test Day Details](/testday/pike/milestone1) 11 | 12 | ## All 13 | 14 | ## TripleO 15 | 16 | ## Packstack 17 | -------------------------------------------------------------------------------- /source/testday/pike/workarounds2.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Ocata Test Day Workarounds 3 | --- 4 | 5 | # Workarounds, Pike Test Day 2 6 | 7 | If you discover a way to work around a known problem, please document it 8 | here, so that others may benefit from your experience. 9 | 10 | * [Test Day Details](/testday/pike/milestone2) 11 | 12 | ## All 13 | 14 | ## TripleO 15 | 16 | ## Packstack 17 | 18 | ## Upstream Documentation 19 | 20 | -------------------------------------------------------------------------------- /source/testday/pike/workarounds3.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Ocata Test Day Workarounds 3 | --- 4 | 5 | # Workarounds, Pike Test Day 3 6 | 7 | If you discover a way to work around a known problem, please document it 8 | here, so that others may benefit from your experience. 9 | 10 | * [Test Day Details](/testday/pike/milestone3) 11 | 12 | ## All 13 | 14 | ## TripleO 15 | 16 | ## Packstack 17 | 18 | ## Upstream Documentation 19 | 20 | -------------------------------------------------------------------------------- /source/testday/tests/ceilometer/h/unitsrateofchangeconversion.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: UnitsRateOfChangeConversion 3 | authors: eglynn 4 | --- 5 | 6 | # Units Rate Of Change Conversion 7 | 8 | {:.no_toc} 9 | 10 | ## Transformer for unit scaling and rate-of-change conversion 11 | 12 | Upstream [blueprint](https://blueprints.launchpad.net/ceilometer/+spec/transformer-unit). 13 | 14 | ## Prerequisites 15 | 16 | Install `packstack --allinone`, then spin up an instance in the usual way. 17 | 18 | ## Step 1. 19 | 20 | Ensure the old cpu_util pollster is no longer loaded: 21 | 22 |  sudo grep cpu_util /usr/lib/python2.?/site-packages/ceilometer-2013*.egg-info/entry_points.txt 23 |  # (no output expected) 24 | 25 | whereas the primary cpu pollster is still loaded: 26 | 27 |  sudo grep '\`` /usr/lib/python2.?/site-packages/ceilometer-2013*.egg-info/entry_points.txt 28 | 29 | ## Step 2. 30 | 31 | Ensure that the cpu and cpu_util meters can be configured with independent cadences: 32 | 33 |  sudo sed -i '/^ *name: cpu_pipeline$/ { n ; s/interval: 600$/interval: 60/ }' /etc/ceilometer/pipeline.yaml 34 |  sudo service openstack-ceilometer-compute restart 35 | 36 |  sleep 300 37 | 38 |  ceilometer sample-list -m cpu 39 |  ceilometer sample-list -m cpu_util 40 | 41 | Confirm that the over the most recent time period, the cpu_util is being reported approximately at a ratio of 10:1 in frequency as compared to the cpu meter. 42 | 43 | -------------------------------------------------------------------------------- /source/testday/tests/post-installation-tests.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Post Installation Tests 3 | authors: dron, rbowen 4 | --- 5 | 6 | # Post Installation Tests 7 | 8 | ## After installation, run the following on your setup: 9 | 10 | setting up: 11 | 12 | 1. log into Horizon 13 | 2. create a new project called RedHat and set a high numbers quota 14 | 3. create a new project user with admin rights called Pinky Brain 15 | 4. log out 16 | 17 | Admin in tenant: 18 | 19 | 1. log in to Project RedHat using Pinky Brain user 20 | 2. create a new Image called qcow_image 21 | 3. create the following user's as members: 22 | 23 | * Peter PP 24 | * Homer HH 25 | * Francine FF 26 | * Jeff JJ 27 | * Tom TT 28 | * Daniel DD 29 | 30 | 1. create a private network called PB 31 | 2. launch 6 instances from the created image called 'TV' 32 | 3. create a new volume from an image called 'image-volume' 33 | 4. create a new empty volume called 'blank-volume' 34 | 5. create a snapshot from both volumes 35 | 6. create a backup for both volumes 36 | 7. launch an instance from the 'image-volume' 37 | 8. attach the empty volume to an instance 38 | 39 | Member of tenant: 40 | 41 | 1. log in to horizon using Peter Griffin's user 42 | -------------------------------------------------------------------------------- /source/testday/tests/storage/cinder.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Cinder Test 3 | authors: gfidente, yrabl, snecklifter 4 | --- 5 | 6 | # Cinder Test 7 | 8 | The general idea for the Cinder's test is to test the actions of the component in different environments and with different back ends. Cinder should be able to do the following actions with each back end and in every topology: 9 | 10 | * Create a volume - for every type try different sizes (1 - ~100 G). 11 | - Simple creation. 12 | - From an image. 13 | - From a snapshot. 14 | - Copy of another volume. 15 | * Delete a volume. 16 | * Create a snapshot. 17 | - A volume in the status of "available". 18 | - A volume in "in-use" status. 19 | * Delete a snapshot. 20 | * Upload the volume to an image. 21 | * Backup the volume. 22 | * Boot an instance from a "bootable" volume. 23 | * Boot an instance with a volume that is not "bootable". 24 | * Attach a volume to a working instance: 25 | - The instance has booted from an image. 26 | - The instance has booted from a volume. 27 | * Detach a volume from an instance. 28 | -------------------------------------------------------------------------------- /source/testday/tests/storage/glance.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Glance 3 | authors: gfidente, tshefi 4 | --- 5 | 6 | # Glance 7 | 8 | ## January 2014 Test Day 9 | 10 | Glance testing should include image manipulation commands below, tested on different deployment scenarios\\back-ends. 11 | 12 | * Create images: 13 | - using image from file. 14 | - using image from http. 15 | * Upload different types: 16 | - Using different disk formats (iso,qcow,vdi,vmdk..). 17 | - Using different containers types (bare,ovf,..). 18 | * Delete image. 19 | * Image details: 20 | - list images. 21 | - show specific detail of an image. 22 | * Image-update, change image parameters check that it updated. 23 | * Use images: 24 | - Boot instance from image, using nova boot from image, to test a bootable image. 25 | - Test several instances for different operating systems (Linux\\Windows..). 26 | - Make image from instance. 27 | * Create image from volume. 28 | * Create volume from image. 29 | * Image share\\unshare\\show permissions. 30 | * Check multi project image access\\permissions. 31 | 32 | For command help: glance --help \\ glance -help image-create 33 | -------------------------------------------------------------------------------- /source/troubleshooting/index.html.haml: -------------------------------------------------------------------------------- 1 | --- 2 | title: Troubleshooting 3 | category: documentation 4 | authors: dneary, jasonbrooks, msolberg, rbowen 5 | --- 6 | 7 | :markdown 8 | # Troubleshooting 9 | 10 | Every piece of software as complex as OpenStack has some pitfalls in its usage. We will use this page to collect tips and tricks related to installation and configuration issues, and issues which people run into during the lifetime of their OpenStack deployment. 11 | 12 | * [Getting Started](/documentation/getting-started/) 13 | * [Troubleshooting networking](/troubleshooting/networking/) 14 | * [SELinux issues](/documentation/selinux-issues/) 15 | * [Uninstalling RDO](/install/uninstalling-rdo/) 16 | * [Keystone integration with Red Hat IDM/FreeIPA](/documentation/keystone-integration-with-idm/) 17 | * [qpidd/AMQP troubleshooting](/troubleshooting/qpid-errors/) 18 | 19 | .ask-solutions 20 | :markdown 21 | ## Solutions from Ask.RDOproject.org 22 | 23 | The following list is the top 20 common issues with answers using the 24 | RDO tag, direct from the OpenStack Q&A forum. 25 | 26 | If you cannot find the answer you need above or below, 27 | [browse all RDO Q&A](http://ask.rdoproject.org/), 28 | [all general OpenStack questions](https://ask.openstack.org/), or 29 | [ask a new question](https://ask.openstack.org/en/questions/ask/?tags=RDO). 30 | 31 | 32 | -------------------------------------------------------------------------------- /source/troubleshooting/qpid-errors.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Qpid errors 3 | authors: rbowen 4 | --- 5 | 6 | # Qpid errors 7 | 8 | ## Config file errors 9 | 10 | If you see something like the following message in your system log when the qpidd service attempts to start: 11 | 12 | Jul 22 15:39:08 localhost qpidd[8631]: 2013-07-22 15:39:08 [Broker] critical Unexpected error: Error in configuration file /etc/qpidd.conf: Bad argument: |cluster-mechanism=DIGEST-MD5 ANONYMOUS| 13 | 14 | Replace 'cluster-mechanism' with 'ha-mechanism' in /etc/qpidd.conf then restart the qpidd service, or reboot. 15 | 16 | ## sasldb errors 17 | 18 | As discussed in [forum thread](http://rdoproject.org/forum/discussion/293/error-on-openstack-status#Item_5|this), the qpid user database may become corrupted. This may be evidenced by error messages such as: 19 | 20 | qpidd: unable to open Berkeley db /var/lib/qpidd/qpidd.sasldb: No such file or directory 21 | 22 | You can recreate the sasldb file using the following command: 23 | 24 | saslpasswd2 -f /var/lib/qpidd/qpidd.sasldb -u QPID guest 25 | 26 | Provide the password at the command line (usually 'guest'), and the file will be created. You should further ensure that /etc/cinder/cinder.conf references the correct username and password corresponding with this file. Then restart qpidd: 27 | 28 | service qpidd restart 29 | 30 | You can verify the presence of users accounts in that file with: 31 | 32 | sasldblistusers2 -f /var/lib/qpidd/qpidd.sasldb 33 | -------------------------------------------------------------------------------- /source/use/bookmarks.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: RDO Bookmarks 3 | --- 4 | 5 | # RDO/OpenStack Cheatsheet Bookmarks 6 | 7 | We've created a number of cheatsheet bookmarks covering common tasks. 8 | You're welcome to print these for your meetups and other events. Or, if 9 | you'd like for us to send you some, please contact 10 | rain@redhat.com at least two weeks before your event 11 | with the number that you require, and a shipping address. 12 | 13 | - [RDO/OpenStack command line cheatsheet](rdo_bookmark.pdf) 14 | - [Deploying with TripleO](01-tripleo-cheatsheet-deploying-tripleo.pdf) 15 | -------------------------------------------------------------------------------- /source/use/bookmarks/01-tripleo-cheatsheet-deploying-tripleo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/use/bookmarks/01-tripleo-cheatsheet-deploying-tripleo.pdf -------------------------------------------------------------------------------- /source/use/bookmarks/openstack_runs_on_redhat-portrait-A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/use/bookmarks/openstack_runs_on_redhat-portrait-A4.pdf -------------------------------------------------------------------------------- /source/use/bookmarks/rdo_bookmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/use/bookmarks/rdo_bookmark.pdf -------------------------------------------------------------------------------- /source/use/bookmarks/redhat_knows_openstack-portrait-A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/use/bookmarks/redhat_knows_openstack-portrait-A4.pdf -------------------------------------------------------------------------------- /source/use/bookmarks/redhat_works_with_openstack-portrait-A4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-openstack/website/4d25dca7bf623ba92019a1c56538f75aa9f67d21/source/use/bookmarks/redhat_works_with_openstack-portrait-A4.pdf -------------------------------------------------------------------------------- /source/what/index.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: What we do 3 | --- 4 | 5 | # RDO: What we do 6 | 7 | RDO is an effort to package upstream OpenStack, and make it useful for 8 | users of Red Hat Enterprise Linux and CentOS. This involves a lot of 9 | moving parts. 10 | 11 | Here's what we do, and how you can do it with us. 12 | 13 | ## High level view 14 | 15 | TODO: Intro paragraph 16 | 17 | * [10,000 foot view of the RDO delivery pipeline](/what/pipeline) 18 | * [Overview of available RDO repos](/what/repos) 19 | 20 | ## Details 21 | 22 | TODO: Intro paragraph 23 | 24 | * [Workflow during the cycle](/what/workflow) 25 | * [Overview and infrastructure](/what/workflow-overview) 26 | * [DLRN: what it is, what we use it for](/what/dlrn) 27 | * [RDO Trunk repos](/what/trunk-repos) 28 | * [Promotion pipeline](/what/promotion-pipeline) 29 | * [I want a new package in RDO, now what?](/what/new-package) 30 | * [Workflow after the cycle](/what/release) (once an OpenStack release is launched) 31 | * [Overview and infrastructure](/what/release-overview) 32 | 33 | 34 | -------------------------------------------------------------------------------- /source/what/release-overview.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Release workflow overview and infrastructure 3 | --- 4 | 5 | # Release workflow: Overview and infrastructure 6 | 7 | Once an OpenStack release is created, we use a different workflow to maintain the GA packages. 8 | 9 | - Packages are built as part of the [CentOS Cloud SIG](https://wiki.centos.org/SpecialInterestGroup/Cloud), signed and distributed via the [CentOS repositories](http://mirror.centos.org/centos/7/cloud/). 10 | - When a project releases a new version on a stable branch, an automated process will propose a new version of the package in the appropriate stable release of the distgit repository. 11 | - The package will then be built and uploaded to the [testing repository](/what/repos#Testing). 12 | - Once the package has passed the required CI jobs, it will be moved to the [GA repository](/what/repos#GA). 13 | 14 | ## Infrastructure 15 | 16 | The following pieces of infrastructure are used for GA packages: 17 | 18 | - The [CentOS Community Build System](https://cbs.centos.org) is used to build the packages 19 | - The CentOS distributed infrastructure is used to distribute the [testing](https://buildlogs.centos.org/centos/7/cloud/) and [GA](http://mirror.centos.org/centos/7/cloud/) repositories 20 | - [review.rdoproject.org](https://review.rdoproject.org) is still used to review the changes to our distgit repositories. 21 | - [Our distgit repositories](https://github.com/rdo-packages) contain one repository for each project built by RDO, where the spec files are located. 22 | 23 | ---- 24 | 25 | [← Release workflow](/what/release) | 26 | [↑ TOC](/what) 27 | -------------------------------------------------------------------------------- /source/what/release.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Workflow after an upstream release 3 | --- 4 | 5 | # Workflow after an upstream release 6 | 7 | Once a release has happened upstream, we have a separate workflow to 8 | package and test that release. 9 | 10 | For our workflow during the development cycle, see [this 11 | doc](/what/workflow). 12 | 13 | TODO Intro paragraph here? 14 | 15 | * [Overview and infrastructure](/what/release-overview) 16 | 17 | ---- 18 | 19 | [← In-cycle workflow](/what/workflow) | 20 | [→ Release workflow overview](/what/release-overview) | 21 | [↑ TOC](/what) 22 | 23 | -------------------------------------------------------------------------------- /source/what/workflow.html.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Workflow during development cycle 3 | --- 4 | 5 | # Workflow during the development cycle 6 | 7 | While an upstream development cycle is in process, we package up what 8 | happens each day, using the following workflow. TODO 9 | 10 | For what we do once a release happens upstream, see [this 11 | doc](/what/release/). 12 | 13 | * [Overview and infrastructure](/what/workflow-overview) 14 | * [DLRN: what it is, what we use it for](/what/dlrn) 15 | * [RDO Trunk repos](/what/trunk-repos) 16 | * [Promotion pipeline](/what/promotion-pipeline) 17 | * [I want a new package in RDO, now what?](/what/new-package) 18 | 19 | ---- 20 | 21 | [← Available Repos](/what/repos) | 22 | [→ Workflow overview](/what/workflow-overview) | 23 | [↑ TOC](/what) 24 | --------------------------------------------------------------------------------