Last active
October 6, 2017 20:14
-
-
Save dmsimard/7ffc4a4291104e66cb52759a4053216c to your computer and use it in GitHub Desktop.
This script retrieves the list of repositories from a GitHub organization
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script retrieves the list of repositories from a GitHub organization | |
# dmsimard @ redhat.com | |
org=$1 | |
per_page=${2:-100} | |
# What kind of URL to retrieve | |
url="clone_url" # https:// | |
# url="git_url" # git:// | |
# url="ssh_url" # ssh:// | |
# Get the amount of pages for the results | |
pages=$(curl -i -s "https://api.github.com/orgs/${org}/repos?per_page=${per_page}" |awk -F= '/rel="last"/ {rc = 1; print $6=int($6)}; END { exit !rc }' || echo 1) | |
echo "${pages} page(s) of ${per_page} result(s) to retrieve for https://github.com/${org}..." | |
# Parse and print results for each page | |
results="" | |
for page in $(seq 1 ${pages}) | |
do | |
echo -n '.' | |
result=$(curl -s "https://api.github.com/orgs/${org}/repos?per_page=${per_page}&page=${page}" | jq -r --arg url "${url}" '.[] | .[$url]') | |
results="${results}\n${result}" | |
done | |
echo | |
echo -e "${results}" | sort |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 page(s) of 100 result(s) to retrieve for https://github.com/openstack... | |
................ | |
https://github.com/openstack/adjutant.git | |
https://github.com/openstack/adjutant-ui.git | |
https://github.com/openstack/aeromancer.git | |
https://github.com/openstack/ailuropoda.git | |
https://github.com/openstack/alexandria.git | |
https://github.com/openstack/almanach.git | |
https://github.com/openstack/anchor.git | |
https://github.com/openstack/ansible-hardening.git | |
https://github.com/openstack/ansible-role-ara.git | |
https://github.com/openstack/ansible-role-bindep.git | |
https://github.com/openstack/ansible-role-cloud-launcher.git | |
https://github.com/openstack/ansible-role-diskimage-builder.git | |
https://github.com/openstack/ansible-role-fedmsg.git | |
https://github.com/openstack/ansible-role-jenkins.git | |
https://github.com/openstack/ansible-role-jenkins-job-builder.git | |
https://github.com/openstack/ansible-role-jenkins-plugins.git | |
https://github.com/openstack/ansible-role-logrotate.git | |
https://github.com/openstack/ansible-role-nginx.git | |
https://github.com/openstack/ansible-role-nodepool.git | |
https://github.com/openstack/swauth.git | |
https://github.com/openstack/ansible-role-shade.git | |
https://github.com/openstack/ansible-role-ssh.git | |
https://github.com/openstack/broadview-collector.git | |
https://github.com/openstack/ansible-role-sudoers.git | |
https://github.com/openstack/ansible-role-virtualenv.git | |
https://github.com/openstack/ansible-role-zookeeper.git | |
https://github.com/openstack/ansible-role-zuul.git | |
https://github.com/openstack/anvil.git | |
https://github.com/openstack/aodh.git | |
https://github.com/openstack/api-site.git | |
https://github.com/openstack/api-wg.git | |
https://github.com/openstack/app-catalog-common.git | |
https://github.com/openstack/app-catalog.git | |
https://github.com/openstack/app-catalog-ui.git | |
https://github.com/openstack/ara.git | |
https://github.com/openstack/arch-wg.git | |
https://github.com/openstack/astara-appliance.git | |
https://github.com/openstack/astara.git | |
https://github.com/openstack/astara-horizon.git | |
https://github.com/openstack/astara-neutron.git | |
https://github.com/openstack/automaton.git | |
https://github.com/openstack/bandit.git | |
https://github.com/openstack/bansho.git | |
https://github.com/openstack/barbican.git | |
https://github.com/openstack/barbican-specs.git | |
https://github.com/openstack/barbican-tempest-plugin.git | |
https://github.com/openstack/bareon-allocator.git | |
https://github.com/openstack/bareon-api.git | |
https://github.com/openstack/bareon.git | |
https://github.com/openstack/bareon-image-elements.git | |
https://github.com/openstack/bareon-ironic.git | |
https://github.com/openstack/bareon-specs.git | |
https://github.com/openstack/bifrost.git | |
https://github.com/openstack/bilean.git | |
https://github.com/openstack/blazar-dashboard.git | |
https://github.com/openstack/blazar.git | |
https://github.com/openstack/blazar-nova.git | |
https://github.com/openstack/boartty.git | |
https://github.com/openstack/broadview-lib.git | |
https://github.com/openstack/broadview-ui.git | |
https://github.com/openstack/browbeat.git | |
https://github.com/openstack/castellan.git | |
https://github.com/openstack/castellan-ui.git | |
https://github.com/openstack/cathead.git | |
https://github.com/openstack/ceilometer.git | |
https://github.com/openstack/ceilometermiddleware.git | |
https://github.com/openstack/ceilometer-powervm.git | |
https://github.com/openstack/ceilometer-zvm.git | |
https://github.com/openstack/cerberus-dashboard.git | |
https://github.com/openstack/cerberus.git | |
https://github.com/openstack/charm-6wind-virtual-accelerator.git | |
https://github.com/openstack/charm-aodh.git | |
https://github.com/openstack/charm-barbican.git | |
https://github.com/openstack/charm-barbican-softhsm.git | |
https://github.com/openstack/charm-ceilometer-agent.git | |
https://github.com/openstack/charm-ceilometer.git | |
https://github.com/openstack/charm-ceph-fs.git | |
https://github.com/openstack/charm-ceph.git | |
https://github.com/openstack/charm-ceph-mon.git | |
https://github.com/openstack/charm-ceph-osd.git | |
https://github.com/openstack/charm-ceph-proxy.git | |
https://github.com/openstack/charm-ceph-radosgw.git | |
https://github.com/openstack/charm-cinder-backup.git | |
https://github.com/openstack/charm-cinder-ceph.git | |
https://github.com/openstack/charm-cinder.git | |
https://github.com/openstack/charm-cloudkitty.git | |
https://github.com/openstack/charm-deployment-guide.git | |
https://github.com/openstack/charm-designate-bind.git | |
https://github.com/openstack/charm-designate.git | |
https://github.com/openstack/charm-glance.git | |
https://github.com/openstack/charm-glusterfs.git | |
https://github.com/openstack/charm-gnocchi.git | |
https://github.com/openstack/charm-guide.git | |
https://github.com/openstack/charm-hacluster.git | |
https://github.com/openstack/charm-heat.git | |
https://github.com/openstack/charm-interface-barbican-hsm.git | |
https://github.com/openstack/charm-interface-bind-rndc.git | |
https://github.com/openstack/charm-interface-ceph-client.git | |
https://github.com/openstack/charm-interface-ceph-mds.git | |
https://github.com/openstack/charm-interface-gnocchi.git | |
https://github.com/openstack/charm-interface-hacluster.git | |
https://github.com/openstack/charm-interface-keystone-admin.git | |
https://github.com/openstack/charm-interface-keystone-credentials.git | |
https://github.com/openstack/charm-interface-keystone-domain-backend.git | |
https://github.com/openstack/charm-interface-keystone.git | |
https://github.com/openstack/charm-interface-manila-plugin.git | |
https://github.com/openstack/charm-interface-mysql-shared.git | |
https://github.com/openstack/charm-interface-neutron-plugin-api-subordinate.git | |
https://github.com/openstack/charm-interface-neutron-plugin.git | |
https://github.com/openstack/charm-interface-odl-controller-api.git | |
https://github.com/openstack/charm-interface-openstack-ha.git | |
https://github.com/openstack/charm-interface-ovsdb-manager.git | |
https://github.com/openstack/charm-interface-rabbitmq.git | |
https://github.com/openstack/charm-interface-service-control.git | |
https://github.com/openstack/charm-keystone.git | |
https://github.com/openstack/charm-keystone-ldap.git | |
https://github.com/openstack/charm-layer-ceph-base.git | |
https://github.com/openstack/charm-layer-openstack-api.git | |
https://github.com/openstack/charm-layer-openstack.git | |
https://github.com/openstack/charm-layer-openstack-principle.git | |
https://github.com/openstack/charm-lxd.git | |
https://github.com/openstack/charm-manila-generic.git | |
https://github.com/openstack/charm-manila.git | |
https://github.com/openstack/charm-manila-glusterfs.git | |
https://github.com/openstack/charm-mistral.git | |
https://github.com/openstack/charm-murano.git | |
https://github.com/openstack/charm-neutron-api.git | |
https://github.com/openstack/charm-neutron-api-odl.git | |
https://github.com/openstack/charm-neutron-api-plumgrid.git | |
https://github.com/openstack/charm-neutron-gateway.git | |
https://github.com/openstack/charm-neutron-openvswitch.git | |
https://github.com/openstack/charm-nova-cloud-controller.git | |
https://github.com/openstack/charm-nova-compute.git | |
https://github.com/openstack/charm-nova-compute-proxy.git | |
https://github.com/openstack/charm-odl-controller.git | |
https://github.com/openstack/charm-openstack-dashboard.git | |
https://github.com/openstack/charm-openvswitch-odl.git | |
https://github.com/openstack/charm-percona-cluster.git | |
https://github.com/openstack/charm-plumgrid-director.git | |
https://github.com/openstack/charm-plumgrid-edge.git | |
https://github.com/openstack/charm-plumgrid-gateway.git | |
https://github.com/openstack/charm-rabbitmq-server.git | |
https://github.com/openstack/charms.ceph.git | |
https://github.com/openstack/charms.openstack.git | |
https://github.com/openstack/charm-specs.git | |
https://github.com/openstack/charm-swift-proxy.git | |
https://github.com/openstack/charm-swift-storage.git | |
https://github.com/openstack/charm-tempest.git | |
https://github.com/openstack/charm-trove.git | |
https://github.com/openstack/ci-cd-pipeline-app-murano.git | |
https://github.com/openstack/cinder-fusioncompute.git | |
https://github.com/openstack/cinder.git | |
https://github.com/openstack/cinder-specs.git | |
https://github.com/openstack/cisco-ironic-contrib.git | |
https://github.com/openstack/cliff.git | |
https://github.com/openstack/cl-openstack-client.git | |
https://github.com/openstack/cloudbase-init.git | |
https://github.com/openstack/cloudcafe.git | |
https://github.com/openstack/clouddocs-maven-plugin.git | |
https://github.com/openstack/cloud-init.git | |
https://github.com/openstack/cloudkitty-dashboard.git | |
https://github.com/openstack/cloudkitty.git | |
https://github.com/openstack/cloudkitty-specs.git | |
https://github.com/openstack/cloudpulse.git | |
https://github.com/openstack/cloudroast.git | |
https://github.com/openstack/cloudv-ostf-adapter.git | |
https://github.com/openstack/cognitive.git | |
https://github.com/openstack/collectd-ceilometer-plugin.git | |
https://github.com/openstack/compass-adapters.git | |
https://github.com/openstack/compass-core.git | |
https://github.com/openstack/compass-install.git | |
https://github.com/openstack/compass-specs.git | |
https://github.com/openstack/compass-web.git | |
https://github.com/openstack/compute-hyperv.git | |
https://github.com/openstack/congress-dashboard.git | |
https://github.com/openstack/congress.git | |
https://github.com/openstack/congress-specs.git | |
https://github.com/openstack/conveyor.git | |
https://github.com/openstack/cookbook-openstack-application-catalog.git | |
https://github.com/openstack/cookbook-openstack-bare-metal.git | |
https://github.com/openstack/cookbook-openstack-block-storage.git | |
https://github.com/openstack/cookbook-openstack-client.git | |
https://github.com/openstack/cookbook-openstack-common.git | |
https://github.com/openstack/cookbook-openstack-compute.git | |
https://github.com/openstack/cookbook-openstack-dashboard.git | |
https://github.com/openstack/cookbook-openstack-database.git | |
https://github.com/openstack/cookbook-openstack-data-processing.git | |
https://github.com/openstack/cookbook-openstack-identity.git | |
https://github.com/openstack/cookbook-openstack-image.git | |
https://github.com/openstack/cookbook-openstack-integration-test.git | |
https://github.com/openstack/cookbook-openstack-network.git | |
https://github.com/openstack/cookbook-openstack-object-storage.git | |
https://github.com/openstack/cookbook-openstack-ops-database.git | |
https://github.com/openstack/cookbook-openstack-ops-messaging.git | |
https://github.com/openstack/cookbook-openstack-orchestration.git | |
https://github.com/openstack/cookbook-openstack-telemetry.git | |
https://github.com/openstack/coreos-image-builder.git | |
https://github.com/openstack/coupler.git | |
https://github.com/openstack/coverage2sql.git | |
https://github.com/openstack/craton-dashboard.git | |
https://github.com/openstack/craton.git | |
https://github.com/openstack/cue-dashboard.git | |
https://github.com/openstack/cue.git | |
https://github.com/openstack/cursive.git | |
https://github.com/openstack/cyborg.git | |
https://github.com/openstack/daisycloud-core.git | |
https://github.com/openstack/dash-stack.git | |
https://github.com/openstack/deb-alembic.git | |
https://github.com/openstack/deb-aodh.git | |
https://github.com/openstack/deb-auto-backports.git | |
https://github.com/openstack/deb-bandit.git | |
https://github.com/openstack/deb-barbican.git | |
https://github.com/openstack/deb-ceilometer.git | |
https://github.com/openstack/deb-ceilometermiddleware.git | |
https://github.com/openstack/deb-cinder.git | |
https://github.com/openstack/deb-congress.git | |
https://github.com/openstack/deb-designate-dashboard.git | |
https://github.com/openstack/deb-designate.git | |
https://github.com/openstack/deb-fonts-materialdesignicons-webfont.git | |
https://github.com/openstack/deb-fonts-roboto-fontface.git | |
https://github.com/openstack/deb-git-review.git | |
https://github.com/openstack/deb-glance.git | |
https://github.com/openstack/deb-glare.git | |
https://github.com/openstack/devstack-plugin-libvirt-qemu.git | |
https://github.com/openstack/deb-gnocchi.git | |
https://github.com/openstack/deb-heat-cfntools.git | |
https://github.com/openstack/deb-heat.git | |
https://github.com/openstack/deb-horizon.git | |
https://github.com/openstack/deb-ironic.git | |
https://github.com/openstack/deb-ironic-inspector.git | |
https://github.com/openstack/deb-ironic-ui.git | |
https://github.com/openstack/deb-kazoo.git | |
https://github.com/openstack/deb-keystone.git | |
https://github.com/openstack/deb-liberasurecode.git | |
https://github.com/openstack/deb-libisal.git | |
https://github.com/openstack/deb-magnum.git | |
https://github.com/openstack/deb-manila.git | |
https://github.com/openstack/deb-manila-ui.git | |
https://github.com/openstack/deb-migrate.git | |
https://github.com/openstack/deb-mistral.git | |
https://github.com/openstack/deb-msgpack-python.git | |
https://github.com/openstack/deb-murano-agent.git | |
https://github.com/openstack/deb-murano-dashboard.git | |
https://github.com/openstack/deb-murano.git | |
https://github.com/openstack/deb-networking-arista.git | |
https://github.com/openstack/deb-networking-cisco.git | |
https://github.com/openstack/deb-networking-hyperv.git | |
https://github.com/openstack/deb-networking-l2gw.git | |
https://github.com/openstack/deb-networking-midonet.git | |
https://github.com/openstack/deb-networking-mlnx.git | |
https://github.com/openstack/deb-networking-nec.git | |
https://github.com/openstack/deb-networking-odl.git | |
https://github.com/openstack/deb-networking-ovn.git | |
https://github.com/openstack/deb-neutron-fwaas.git | |
https://github.com/openstack/deb-neutron.git | |
https://github.com/openstack/deb-neutron-lbaas.git | |
https://github.com/openstack/deb-neutron-taas.git | |
https://github.com/openstack/deb-neutron-vpnaas.git | |
https://github.com/openstack/deb-nodepool.git | |
https://github.com/openstack/deb-nova.git | |
https://github.com/openstack/deb-novnc.git | |
https://github.com/openstack/deb-openstack-doc-tools.git | |
https://github.com/openstack/deb-openstack-meta-packages.git | |
https://github.com/openstack/deb-openstack-nose.git | |
https://github.com/openstack/deb-openstack-pkg-tools.git | |
https://github.com/openstack/deb-openstack-trove.git | |
https://github.com/openstack/deb-os-apply-config.git | |
https://github.com/openstack/deb-os-brick.git | |
https://github.com/openstack/deb-os-client-config.git | |
https://github.com/openstack/deb-os-cloud-config.git | |
https://github.com/openstack/deb-os-collect-config.git | |
https://github.com/openstack/deb-oslo.cache.git | |
https://github.com/openstack/deb-oslo.concurrency.git | |
https://github.com/openstack/deb-oslo.config.git | |
https://github.com/openstack/deb-oslo.context.git | |
https://github.com/openstack/deb-oslo.db.git | |
https://github.com/openstack/deb-oslo.i18n.git | |
https://github.com/openstack/deb-oslo.log.git | |
https://github.com/openstack/deb-oslo.messaging.git | |
https://github.com/openstack/deb-oslo.middleware.git | |
https://github.com/openstack/deb-oslo.policy.git | |
https://github.com/openstack/deb-oslo.privsep.git | |
https://github.com/openstack/deb-oslo.reports.git | |
https://github.com/openstack/deb-oslo.rootwrap.git | |
https://github.com/openstack/deb-oslo.serialization.git | |
https://github.com/openstack/deb-oslo.service.git | |
https://github.com/openstack/deb-oslosphinx.git | |
https://github.com/openstack/deb-oslotest.git | |
https://github.com/openstack/deb-oslo.utils.git | |
https://github.com/openstack/deb-oslo.versionedobjects.git | |
https://github.com/openstack/deb-oslo.vmware.git | |
https://github.com/openstack/deb-os-net-config.git | |
https://github.com/openstack/deb-os-refresh-config.git | |
https://github.com/openstack/deb-os-testr.git | |
https://github.com/openstack/deb-os-vif.git | |
https://github.com/openstack/deb-os-win.git | |
https://github.com/openstack/deb-python-aioeventlet.git | |
https://github.com/openstack/deb-python-aodhclient.git | |
https://github.com/openstack/deb-python-autobahn.git | |
https://github.com/openstack/deb-python-automaton.git | |
https://github.com/openstack/deb-python-barbicanclient.git | |
https://github.com/openstack/deb-python-bashate.git | |
https://github.com/openstack/deb-python-cassandra-driver.git | |
https://github.com/openstack/deb-python-castellan.git | |
https://github.com/openstack/deb-python-ceilometerclient.git | |
https://github.com/openstack/deb-python-ceilometermiddleware.git | |
https://github.com/openstack/deb-python-cinderclient.git | |
https://github.com/openstack/deb-python-cliff.git | |
https://github.com/openstack/deb-python-coffin.git | |
https://github.com/openstack/deb-python-colander.git | |
https://github.com/openstack/deb-python-concurrent.futures.git | |
https://github.com/openstack/deb-python-congressclient.git | |
https://github.com/openstack/deb-python-cotyledon.git | |
https://github.com/openstack/deb-python-couleur.git | |
https://github.com/openstack/deb-python-crank.git | |
https://github.com/openstack/deb-python-croniter.git | |
https://github.com/openstack/deb-python-csscompressor.git | |
https://github.com/openstack/deb-python-cursive.git | |
https://github.com/openstack/deb-python-daemonize.git | |
https://github.com/openstack/deb-python-dcos.git | |
https://github.com/openstack/deb-python-ddt.git | |
https://github.com/openstack/deb-python-debtcollector.git | |
https://github.com/openstack/deb-python-designateclient.git | |
https://github.com/openstack/deb-python-dib-utils.git | |
https://github.com/openstack/deb-python-diskimage-builder.git | |
https://github.com/openstack/deb-python-django-appconf.git | |
https://github.com/openstack/deb-python-django-babel.git | |
https://github.com/openstack/deb-python-django-bootstrap-form.git | |
https://github.com/openstack/deb-python-django-compressor.git | |
https://github.com/openstack/deb-python-django-discover-runner.git | |
https://github.com/openstack/deb-python-django-formtools.git | |
https://github.com/openstack/deb-python-django-openstack-auth.git | |
https://github.com/openstack/deb-python-django-overextends.git | |
https://github.com/openstack/deb-python-django-pyscss.git | |
https://github.com/openstack/deb-python-doc8.git | |
https://github.com/openstack/deb-python-dogpile.cache.git | |
https://github.com/openstack/deb-python-dogpile.core.git | |
https://github.com/openstack/deb-python-editor.git | |
https://github.com/openstack/deb-python-eventlet.git | |
https://github.com/openstack/deb-python-extras.git | |
https://github.com/openstack/deb-python-falcon.git | |
https://github.com/openstack/deb-python-fasteners.git | |
https://github.com/openstack/deb-python-fixtures.git | |
https://github.com/openstack/deb-python-frozendict.git | |
https://github.com/openstack/deb-python-fuelclient.git | |
https://github.com/openstack/deb-python-funcsigs.git | |
https://github.com/openstack/deb-python-functools32.git | |
https://github.com/openstack/deb-python-futurist.git | |
https://github.com/openstack/deb-python-gabbi.git | |
https://github.com/openstack/deb-python-glanceclient.git | |
https://github.com/openstack/deb-python-glance-store.git | |
https://github.com/openstack/deb-python-gnocchiclient.git | |
https://github.com/openstack/deb-python-greenio.git | |
https://github.com/openstack/deb-python-hacking.git | |
https://github.com/openstack/deb-python-happybase.git | |
https://github.com/openstack/deb-python-heatclient.git | |
https://github.com/openstack/deb-python-hplefthandclient.git | |
https://github.com/openstack/deb-python-httpretty.git | |
https://github.com/openstack/deb-python-ironicclient.git | |
https://github.com/openstack/deb-python-ironic-inspector-client.git | |
https://github.com/openstack/deb-python-ironic-lib.git | |
https://github.com/openstack/deb-python-jingo.git | |
https://github.com/openstack/deb-python-json-patch.git | |
https://github.com/openstack/deb-python-jsonpath-rw-ext.git | |
https://github.com/openstack/deb-python-jsonpath-rw.git | |
https://github.com/openstack/deb-python-json-pointer.git | |
https://github.com/openstack/deb-python-jsonrpclib.git | |
https://github.com/openstack/deb-python-jsonschema.git | |
https://github.com/openstack/deb-python-k8sclient.git | |
https://github.com/openstack/deb-python-kafka.git | |
https://github.com/openstack/deb-python-keystoneauth1.git | |
https://github.com/openstack/deb-python-keystoneclient.git | |
https://github.com/openstack/deb-python-keystonemiddleware.git | |
https://github.com/openstack/deb-python-kmip.git | |
https://github.com/openstack/deb-python-ldappool.git | |
https://github.com/openstack/deb-python-lesscpy.git | |
https://github.com/openstack/deb-python-linecache2.git | |
https://github.com/openstack/deb-python-magnumclient.git | |
https://github.com/openstack/deb-python-manilaclient.git | |
https://github.com/openstack/deb-python-memcache.git | |
https://github.com/openstack/deb-python-microversion-parse.git | |
https://github.com/openstack/deb-python-misaka.git | |
https://github.com/openstack/deb-python-mistralclient.git | |
https://github.com/openstack/deb-python-monascaclient.git | |
https://github.com/openstack/deb-python-monotonic.git | |
https://github.com/openstack/deb-python-mox3.git | |
https://github.com/openstack/deb-python-multi-key-dict.git | |
https://github.com/openstack/deb-python-muranoclient.git | |
https://github.com/openstack/deb-python-neutronclient.git | |
https://github.com/openstack/deb-python-neutron-lib.git | |
https://github.com/openstack/deb-python-nose-exclude.git | |
https://github.com/openstack/deb-python-nosehtmloutput.git | |
https://github.com/openstack/deb-python-nose-parameterized.git | |
https://github.com/openstack/deb-python-nose-timer.git | |
https://github.com/openstack/deb-python-novaclient.git | |
https://github.com/openstack/deb-python-oauth2client.git | |
https://github.com/openstack/deb-python-openstackclient.git | |
https://github.com/openstack/deb-python-openstackdocstheme.git | |
https://github.com/openstack/deb-python-openstacksdk.git | |
https://github.com/openstack/deb-python-os-api-ref.git | |
https://github.com/openstack/deb-python-os-apply-config.git | |
https://github.com/openstack/deb-python-os-brick.git | |
https://github.com/openstack/deb-python-osc-lib.git | |
https://github.com/openstack/deb-python-os-client-config.git | |
https://github.com/openstack/deb-python-os-cloud-config.git | |
https://github.com/openstack/deb-python-os-collect-config.git | |
https://github.com/openstack/deb-python-oslo.cache.git | |
https://github.com/openstack/deb-python-oslo.concurrency.git | |
https://github.com/openstack/deb-python-oslo.config.git | |
https://github.com/openstack/deb-python-oslo.context.git | |
https://github.com/openstack/deb-python-oslo.db.git | |
https://github.com/openstack/deb-python-oslo.i18n.git | |
https://github.com/openstack/deb-python-oslo.log.git | |
https://github.com/openstack/deb-python-oslo.messaging.git | |
https://github.com/openstack/deb-python-oslo.middleware.git | |
https://github.com/openstack/deb-python-oslo.policy.git | |
https://github.com/openstack/deb-python-oslo.privsep.git | |
https://github.com/openstack/deb-python-oslo.reports.git | |
https://github.com/openstack/deb-python-oslo.rootwrap.git | |
https://github.com/openstack/deb-python-oslo.serialization.git | |
https://github.com/openstack/deb-python-oslo.service.git | |
https://github.com/openstack/deb-python-oslotest.git | |
https://github.com/openstack/deb-python-oslo.utils.git | |
https://github.com/openstack/deb-python-oslo.versionedobjects.git | |
https://github.com/openstack/deb-python-oslo.vmware.git | |
https://github.com/openstack/deb-python-os-net-config.git | |
https://github.com/openstack/deb-python-osprofiler.git | |
https://github.com/openstack/deb-python-os-refresh-config.git | |
https://github.com/openstack/deb-python-os-testr.git | |
https://github.com/openstack/deb-python-os-vif.git | |
https://github.com/openstack/deb-python-os-win.git | |
https://github.com/openstack/deb-python-pager.git | |
https://github.com/openstack/deb-python-pbr.git | |
https://github.com/openstack/deb-python-pecan.git | |
https://github.com/openstack/deb-python-pika-pool.git | |
https://github.com/openstack/deb-python-pint.git | |
https://github.com/openstack/deb-python-positional.git | |
https://github.com/openstack/deb-python-proliantutils.git | |
https://github.com/openstack/deb-python-pulp.git | |
https://github.com/openstack/deb-python-pycadf.git | |
https://github.com/openstack/deb-python-pydot-ng.git | |
https://github.com/openstack/deb-python-pydotplus.git | |
https://github.com/openstack/deb-python-pyeclib.git | |
https://github.com/openstack/deb-python-pyghmi.git | |
https://github.com/openstack/deb-python-pygit2.git | |
https://github.com/openstack/deb-python-pykmip.git | |
https://github.com/openstack/deb-python-pyldap.git | |
https://github.com/openstack/deb-python-pymemcache.git | |
https://github.com/openstack/deb-python-pymysql.git | |
https://github.com/openstack/deb-python-pyngus.git | |
https://github.com/openstack/deb-python-pysaml2.git | |
https://github.com/openstack/deb-python-pytimeparse.git | |
https://github.com/openstack/deb-python-pyvmomi.git | |
https://github.com/openstack/deb-python-quantumclient.git | |
https://github.com/openstack/deb-python-rcssmin.git | |
https://github.com/openstack/deb-python-rednose.git | |
https://github.com/openstack/deb-python-reno.git | |
https://github.com/openstack/deb-python-requestbuilder.git | |
https://github.com/openstack/deb-python-requestsexceptions.git | |
https://github.com/openstack/deb-python-requests-kerberos.git | |
https://github.com/openstack/deb-python-requests-mock.git | |
https://github.com/openstack/deb-python-requests-unixsocket.git | |
https://github.com/openstack/deb-python-retrying.git | |
https://github.com/openstack/deb-python-rfc3986.git | |
https://github.com/openstack/deb-python-rjsmin.git | |
https://github.com/openstack/deb-python-rtslib-fb.git | |
https://github.com/openstack/deb-python-saharaclient.git | |
https://github.com/openstack/deb-python-savannaclient.git | |
https://github.com/openstack/deb-python-scciclient.git | |
https://github.com/openstack/deb-python-seamicroclient.git | |
https://github.com/openstack/deb-python-semantic-version.git | |
https://github.com/openstack/deb-python-semver.git | |
https://github.com/openstack/deb-python-senlinclient.git | |
https://github.com/openstack/deb-python-shotgun.git | |
https://github.com/openstack/deb-python-sqlalchemy-utils.git | |
https://github.com/openstack/deb-python-steadymark.git | |
https://github.com/openstack/deb-python-swiftclient.git | |
https://github.com/openstack/deb-python-tackerclient.git | |
https://github.com/openstack/deb-python-taskflow.git | |
https://github.com/openstack/deb-python-tempest-lib.git | |
https://github.com/openstack/deb-python-testtools.git | |
https://github.com/openstack/deb-python-toml.git | |
https://github.com/openstack/deb-python-tooz.git | |
https://github.com/openstack/deb-python-tosca-parser.git | |
https://github.com/openstack/deb-python-traceback2.git | |
https://github.com/openstack/deb-python-trollius.git | |
https://github.com/openstack/deb-python-troveclient.git | |
https://github.com/openstack/deb-python-tuskarclient.git | |
https://github.com/openstack/deb-python-txaio.git | |
https://github.com/openstack/deb-python-warlock.git | |
https://github.com/openstack/deb-python-watcherclient.git | |
https://github.com/openstack/deb-python-weakrefmethod.git | |
https://github.com/openstack/deb-python-websocket-client.git | |
https://github.com/openstack/deb-python-wrapt.git | |
https://github.com/openstack/deb-python-wsgi-intercept.git | |
https://github.com/openstack/deb-python-wsme.git | |
https://github.com/openstack/deb-python-xstatic-angular-bootstrap.git | |
https://github.com/openstack/deb-python-xstatic-angular-cookies.git | |
https://github.com/openstack/deb-python-xstatic-angular-fileupload.git | |
https://github.com/openstack/deb-python-xstatic-angular-gettext.git | |
https://github.com/openstack/deb-python-xstatic-angular.git | |
https://github.com/openstack/deb-python-xstatic-angular-lrdragndrop.git | |
https://github.com/openstack/deb-python-xstatic-angular-mock.git | |
https://github.com/openstack/deb-python-xstatic-angular-schema-form.git | |
https://github.com/openstack/deb-python-xstatic-bootstrap-datepicker.git | |
https://github.com/openstack/deb-python-xstatic-bootstrap-scss.git | |
https://github.com/openstack/deb-python-xstatic-bootswatch.git | |
https://github.com/openstack/deb-python-xstatic-d3.git | |
https://github.com/openstack/deb-python-xstatic-font-awesome.git | |
https://github.com/openstack/deb-python-xstatic.git | |
https://github.com/openstack/deb-python-xstatic-hogan.git | |
https://github.com/openstack/deb-python-xstatic-jasmine.git | |
https://github.com/openstack/deb-python-xstatic-jquery.bootstrap.wizard.git | |
https://github.com/openstack/deb-python-xstatic-jquery.git | |
https://github.com/openstack/deb-python-xstatic-jquery-migrate.git | |
https://github.com/openstack/deb-python-xstatic-jquery.quicksearch.git | |
https://github.com/openstack/deb-python-xstatic-jquery.tablesorter.git | |
https://github.com/openstack/deb-python-xstatic-jquery-ui.git | |
https://github.com/openstack/deb-python-xstatic-jsencrypt.git | |
https://github.com/openstack/deb-python-xstatic-magic-search.git | |
https://github.com/openstack/deb-python-xstatic-mdi.git | |
https://github.com/openstack/deb-python-xstatic-objectpath.git | |
https://github.com/openstack/deb-python-xstatic-qunit.git | |
https://github.com/openstack/deb-python-xstatic-rickshaw.git | |
https://github.com/openstack/deb-python-xstatic-roboto-fontface.git | |
https://github.com/openstack/deb-python-xstatic-smart-table.git | |
https://github.com/openstack/deb-python-xstatic-spin.git | |
https://github.com/openstack/deb-python-xstatic-term.js.git | |
https://github.com/openstack/deb-python-xstatic-tv4.git | |
https://github.com/openstack/deb-python-xvfbwrapper.git | |
https://github.com/openstack/deb-python-yaql.git | |
https://github.com/openstack/deb-python-zaqarclient.git | |
https://github.com/openstack/deb-rally.git | |
https://github.com/openstack/deb-ryu.git | |
https://github.com/openstack/deb-sahara-dashboard.git | |
https://github.com/openstack/deb-sahara.git | |
https://github.com/openstack/deb-senlin-dashboard.git | |
https://github.com/openstack/deb-senlin.git | |
https://github.com/openstack/deb-spice-html5.git | |
https://github.com/openstack/deb-stevedore.git | |
https://github.com/openstack/deb-subunit.git | |
https://github.com/openstack/deb-swauth.git | |
https://github.com/openstack/deb-swift-bench.git | |
https://github.com/openstack/deb-swift.git | |
https://github.com/openstack/deb-swift-plugin-s3.git | |
https://github.com/openstack/debtcollector.git | |
https://github.com/openstack/deb-tempest.git | |
https://github.com/openstack/deb-testresources.git | |
https://github.com/openstack/deb-trove-dashboard.git | |
https://github.com/openstack/deb-trove.git | |
https://github.com/openstack/deb-watcher.git | |
https://github.com/openstack/deb-websockify.git | |
https://github.com/openstack/deb-zaqar.git | |
https://github.com/openstack/deb-zaqar-ui.git | |
https://github.com/openstack/delimiter.git | |
https://github.com/openstack/designate-dashboard.git | |
https://github.com/openstack/designate.git | |
https://github.com/openstack/designate-msdnsagent.git | |
https://github.com/openstack/designate-specs.git | |
https://github.com/openstack/designate-tempest-plugin.git | |
https://github.com/openstack/development-proposals.git | |
https://github.com/openstack/devstack-plugin-additional-pkg-repos.git | |
https://github.com/openstack/devstack-plugin-amqp1.git | |
https://github.com/openstack/devstack-plugin-bdd.git | |
https://github.com/openstack/devstack-plugin-ceph.git | |
https://github.com/openstack/devstack-plugin-container.git | |
https://github.com/openstack/devstack-plugin-glusterfs.git | |
https://github.com/openstack/devstack-plugin-hdfs.git | |
https://github.com/openstack/devstack-plugin-kafka.git | |
https://github.com/openstack/devstack-plugin-mariadb.git | |
https://github.com/openstack/devstack-plugin-nfs.git | |
https://github.com/openstack/devstack-plugin-pika.git | |
https://github.com/openstack/devstack-plugin-sheepdog.git | |
https://github.com/openstack/devstack-plugin-tar-installer.git | |
https://github.com/openstack/devstack-plugin-vmax.git | |
https://github.com/openstack/devstack-plugin-zmq.git | |
https://github.com/openstack/devstack-tools.git | |
https://github.com/openstack/dib-utils.git | |
https://github.com/openstack/diskimage-builder.git | |
https://github.com/openstack/distil.git | |
https://github.com/openstack/distil-ui.git | |
https://github.com/openstack/django_openstack_auth.git | |
https://github.com/openstack/django-openstack-auth-kerberos.git | |
https://github.com/openstack/doc8.git | |
https://github.com/openstack/docker-machine-openstack.git | |
https://github.com/openstack/docs-specs.git | |
https://github.com/openstack/downpour.git | |
https://github.com/openstack/dox.git | |
https://github.com/openstack/dragonflow.git | |
https://github.com/openstack/drbd-devstack.git | |
https://github.com/openstack/driverlog.git | |
https://github.com/openstack/ec2-api.git | |
https://github.com/openstack/ec2-driver.git | |
https://github.com/openstack/ekko.git | |
https://github.com/openstack/election.git | |
https://github.com/openstack/enterprise-wg.git | |
https://github.com/openstack/entropy.git | |
https://github.com/openstack/eslint-config-openstack.git | |
https://github.com/openstack/evoque-dashboard.git | |
https://github.com/openstack/evoque.git | |
https://github.com/openstack/faafo.git | |
https://github.com/openstack/fairy-slipper.git | |
https://github.com/openstack/flame.git | |
https://github.com/openstack/foxnut.git | |
https://github.com/openstack/freezer-api.git | |
https://github.com/openstack/freezer-dr.git | |
https://github.com/openstack/freezer.git | |
https://github.com/openstack/freezer-specs.git | |
https://github.com/openstack/freezer-tempest-plugin.git | |
https://github.com/openstack/freezer-web-ui.git | |
https://github.com/openstack/fuel-agent.git | |
https://github.com/openstack/fuel-astute.git | |
https://github.com/openstack/fuel-ccp-ceph.git | |
https://github.com/openstack/fuel-ccp-ci-config.git | |
https://github.com/openstack/fuel-ccp-cinder.git | |
https://github.com/openstack/fuel-ccp-debian-base.git | |
https://github.com/openstack/fuel-ccp-elasticsearch.git | |
https://github.com/openstack/fuel-ccp-entrypoint.git | |
https://github.com/openstack/fuel-ccp-etcd.git | |
https://github.com/openstack/fuel-ccp-galera.git | |
https://github.com/openstack/fuel-ccp.git | |
https://github.com/openstack/fuel-ccp-glance.git | |
https://github.com/openstack/fuel-ccp-grafana.git | |
https://github.com/openstack/fuel-ccp-heat.git | |
https://github.com/openstack/fuel-ccp-horizon.git | |
https://github.com/openstack/fuel-ccp-installer.git | |
https://github.com/openstack/fuel-ccp-ironic.git | |
https://github.com/openstack/fuel-ccp-keystone.git | |
https://github.com/openstack/fuel-ccp-mariadb.git | |
https://github.com/openstack/fuel-ccp-memcached.git | |
https://github.com/openstack/fuel-ccp-murano.git | |
https://github.com/openstack/fuel-ccp-neutron.git | |
https://github.com/openstack/fuel-ccp-nginx.git | |
https://github.com/openstack/fuel-ccp-designate.git | |
https://github.com/openstack/fuel-ccp-nova.git | |
https://github.com/openstack/fuel-ccp-openstack-base.git | |
https://github.com/openstack/fuel-ccp-rabbitmq.git | |
https://github.com/openstack/fuel-ccp-rally.git | |
https://github.com/openstack/fuel-ccp-sahara.git | |
https://github.com/openstack/fuel-ccp-searchlight.git | |
https://github.com/openstack/fuel-ccp-specs.git | |
https://github.com/openstack/fuel-ccp-stacklight.git | |
https://github.com/openstack/fuel-ccp-tests.git | |
https://github.com/openstack/fuel-ccp-zmq.git | |
https://github.com/openstack/fuel-devops.git | |
https://github.com/openstack/fuel-docs.git | |
https://github.com/openstack/fuel-library.git | |
https://github.com/openstack/fuel-main.git | |
https://github.com/openstack/fuel-menu.git | |
https://github.com/openstack/fuel-mirror.git | |
https://github.com/openstack/monasca-log-api.git | |
https://github.com/openstack/fuel-nailgun-agent.git | |
https://github.com/openstack/fuel-nailgun-extension-cluster-upgrade.git | |
https://github.com/openstack/fuel-nailgun-extension-converted-serializers.git | |
https://github.com/openstack/fuel-nailgun-extension-iac.git | |
https://github.com/openstack/fuel-noop-fixtures.git | |
https://github.com/openstack/fuel-octane.git | |
https://github.com/openstack/fuel-ostf.git | |
https://github.com/openstack/fuel-plugin-6wind-virtual-accelerator.git | |
https://github.com/openstack/fuel-plugin-astara.git | |
https://github.com/openstack/fuel-plugin-availability-zones.git | |
https://github.com/openstack/fuel-plugin-bgpvpn.git | |
https://github.com/openstack/fuel-plugin-bigswitch.git | |
https://github.com/openstack/fuel-plugin-block-device.git | |
https://github.com/openstack/fuel-plugin-calamari.git | |
https://github.com/openstack/fuel-plugin-calico.git | |
https://github.com/openstack/fuel-plugin-ceilometer-redis.git | |
https://github.com/openstack/fuel-plugin-ceph-multibackend.git | |
https://github.com/openstack/fuel-plugin-ci.git | |
https://github.com/openstack/fuel-plugin-cinder-gcs.git | |
https://github.com/openstack/fuel-plugin-cinder-kaminario.git | |
https://github.com/openstack/fuel-plugin-cinder-netapp.git | |
https://github.com/openstack/fuel-plugin-cisco-aci.git | |
https://github.com/openstack/fuel-plugin-congress.git | |
https://github.com/openstack/fuel-plugin-contrail.git | |
https://github.com/openstack/fuel-plugin-datera-cinder.git | |
https://github.com/openstack/fuel-plugin-dbaas-trove.git | |
https://github.com/openstack/fuel-plugin-debug.git | |
https://github.com/openstack/fuel-plugin-designate.git | |
https://github.com/openstack/fuel-plugin-detach-database.git | |
https://github.com/openstack/fuel-plugin-detach-haproxy.git | |
https://github.com/openstack/fuel-plugin-detach-horizon.git | |
https://github.com/openstack/fuel-plugin-detach-keystone.git | |
https://github.com/openstack/fuel-plugin-detach-netnode.git | |
https://github.com/openstack/fuel-plugin-detach-rabbitmq.git | |
https://github.com/openstack/fuel-plugin-detach-swift.git | |
https://github.com/openstack/fuel-plugin-dns-updater.git | |
https://github.com/openstack/fuel-plugin-sensu.git | |
https://github.com/openstack/fuel-plugin-dynatrace.git | |
https://github.com/openstack/fuel-plugin-elasticsearch-kibana.git | |
https://github.com/openstack/fuel-plugin-emailnotifyd.git | |
https://github.com/openstack/fuel-plugin-external-emc.git | |
https://github.com/openstack/fuel-plugin-external-glusterfs.git | |
https://github.com/openstack/fuel-plugin-external-lb.git | |
https://github.com/openstack/fuel-plugin-external-zabbix.git | |
https://github.com/openstack/fuel-plugin-fortinet.git | |
https://github.com/openstack/fuel-plugin-glance-nfs.git | |
https://github.com/openstack/fuel-plugin-gluon.git | |
https://github.com/openstack/fuel-plugin-ha-fencing.git | |
https://github.com/openstack/fuel-plugin-hedvig-cinder.git | |
https://github.com/openstack/fuel-plugin-influxdb-grafana.git | |
https://github.com/openstack/fuel-plugin-inkscope.git | |
https://github.com/openstack/fuel-plugin-ironic.git | |
https://github.com/openstack/fuel-plugin-kafka.git | |
https://github.com/openstack/fuel-plugin-ldap.git | |
https://github.com/openstack/fuel-plugin-ldap-slaves.git | |
https://github.com/openstack/fuel-plugin-lma-collector.git | |
https://github.com/openstack/fuel-plugin-lma-infrastructure-alerting.git | |
https://github.com/openstack/fuel-plugin-manila.git | |
https://github.com/openstack/python-cratonclient.git | |
https://github.com/openstack/fuel-plugin-mellanox.git | |
https://github.com/openstack/fuel-plugin-midonet.git | |
https://github.com/openstack/fuel-plugin-mistral.git | |
https://github.com/openstack/fuel-plugin-murano.git | |
https://github.com/openstack/fuel-plugin-murano-networking-sfc.git | |
https://github.com/openstack/fuel-plugin-murano-tests.git | |
https://github.com/openstack/fuel-plugin-networking-sfc.git | |
https://github.com/openstack/fuel-plugin-network-node.git | |
https://github.com/openstack/fuel-plugin-neutron-fwaas.git | |
https://github.com/openstack/fuel-plugin-neutron-lbaas.git | |
https://github.com/openstack/fuel-plugin-neutron-vpnaas.git | |
https://github.com/openstack/fuel-plugin-nimblestorage-cinder.git | |
https://github.com/openstack/fuel-plugin-nitrous.git | |
https://github.com/openstack/fuel-plugin-nova-nfs.git | |
https://github.com/openstack/fuel-plugin-nsx-t.git | |
https://github.com/openstack/fuel-plugin-nsxv.git | |
https://github.com/openstack/fuel-plugin-nuage.git | |
https://github.com/openstack/fuel-plugin-onos.git | |
https://github.com/openstack/fuel-plugin-openbook.git | |
https://github.com/openstack/fuel-plugin-opendaylight.git | |
https://github.com/openstack/fuel-plugin-openstack-telemetry.git | |
https://github.com/openstack/fuel-plugin-ovs.git | |
https://github.com/openstack/fuel-plugin-plumgrid.git | |
https://github.com/openstack/fuel-plugin-purestorage-cinder.git | |
https://github.com/openstack/fuel-plugin-qemu.git | |
https://github.com/openstack/fuel-plugin-qlogic-sriov-vxlan.git | |
https://github.com/openstack/fuel-plugin-rally.git | |
https://github.com/openstack/fuel-plugin-saltstack.git | |
https://github.com/openstack/fuel-plugin-scaleio-cinder.git | |
https://github.com/openstack/fuel-plugin-scaleio.git | |
https://github.com/openstack/fuel-plugins.git | |
https://github.com/openstack/fuel-plugin-solidfire-cinder.git | |
https://github.com/openstack/fuel-plugin-swiftstack.git | |
https://github.com/openstack/fuel-plugin-tacker.git | |
https://github.com/openstack/fuel-plugin-tempest.git | |
https://github.com/openstack/fuel-plugin-tintri-cinder.git | |
https://github.com/openstack/fuel-plugin-tls.git | |
https://github.com/openstack/fuel-plugin-unity.git | |
https://github.com/openstack/fuel-plugin-vmware-dvs.git | |
https://github.com/openstack/fuel-plugin-vxlan.git | |
https://github.com/openstack/fuel-plugin-watcher.git | |
https://github.com/openstack/fuel-plugin-wstunnel.git | |
https://github.com/openstack/fuel-plugin-xenserver.git | |
https://github.com/openstack/fuel-plugin-zabbix-agents.git | |
https://github.com/openstack/fuel-plugin-zabbix-monitoring-emc.git | |
https://github.com/openstack/fuel-plugin-zabbix-monitoring-extreme-networks.git | |
https://github.com/openstack/fuel-plugin-zabbix-snmptrapd.git | |
https://github.com/openstack/fuel-qa.git | |
https://github.com/openstack/fuel-specs.git | |
https://github.com/openstack/fuel-stats.git | |
https://github.com/openstack/fuel-ui.git | |
https://github.com/openstack/fuel-upgrade.git | |
https://github.com/openstack/fuel-virtualbox.git | |
https://github.com/openstack/fuel-web.git | |
https://github.com/openstack/futurist.git | |
https://github.com/openstack/fuxi.git | |
https://github.com/openstack/fuxi-golang.git | |
https://github.com/openstack/fuxi-kubernetes.git | |
https://github.com/openstack/gantt.git | |
https://github.com/openstack/gce-api.git | |
https://github.com/openstack/gerrit-dash-creator.git | |
https://github.com/openstack/gertty.git | |
https://github.com/openstack/giftwrap.git | |
https://github.com/openstack/git-repo-manifests.git | |
https://github.com/openstack/git-upstream.git | |
https://github.com/openstack/glance.git | |
https://github.com/openstack/glance-specs.git | |
https://github.com/openstack/glance_store.git | |
https://github.com/openstack/glare.git | |
https://github.com/openstack/openstack-ansible-ceph_client.git | |
https://github.com/openstack/glare-specs.git | |
https://github.com/openstack/gluon.git | |
https://github.com/openstack/gnocchi.git | |
https://github.com/openstack/golang-client.git | |
https://github.com/openstack/golang-commons.git | |
https://github.com/openstack/gos-brick.git | |
https://github.com/openstack/governance.git | |
https://github.com/openstack/governance-uc.git | |
https://github.com/openstack/governance-website.git | |
https://github.com/openstack/group-based-policy-automation.git | |
https://github.com/openstack/group-based-policy.git | |
https://github.com/openstack/group-based-policy-specs.git | |
https://github.com/openstack/group-based-policy-ui.git | |
https://github.com/openstack/ha-guide.git | |
https://github.com/openstack/heat-agents.git | |
https://github.com/openstack/heat-cfntools.git | |
https://github.com/openstack/heat.git | |
https://github.com/openstack/heat-specs.git | |
https://github.com/openstack/heat-templates.git | |
https://github.com/openstack/heat-translator.git | |
https://github.com/openstack/horizon-cisco-ui.git | |
https://github.com/openstack/horizon.git | |
https://github.com/openstack/horizon-mellanox.git | |
https://github.com/openstack/hurricane.git | |
https://github.com/openstack/i18n.git | |
https://github.com/openstack/i18n-specs.git | |
https://github.com/openstack/inception.git | |
https://github.com/openstack/instack.git | |
https://github.com/openstack/instack-undercloud.git | |
https://github.com/openstack/installguide-cookiecutter.git | |
https://github.com/openstack/intel-nfv-ci-tests.git | |
https://github.com/openstack/interop.git | |
https://github.com/openstack/interop-workloads.git | |
https://github.com/openstack/iotronic.git | |
https://github.com/openstack/iotronic-lightning-rod.git | |
https://github.com/openstack/iotronic-ui.git | |
https://github.com/openstack/ipa-example-hardware-managers.git | |
https://github.com/openstack/ironic.git | |
https://github.com/openstack/ironic-inspector.git | |
https://github.com/openstack/ironic-inspector-specs.git | |
https://github.com/openstack/ironic-inspector-tempest-plugin.git | |
https://github.com/openstack/ironic-lib.git | |
https://github.com/openstack/ironic-python-agent-builder.git | |
https://github.com/openstack/ironic-python-agent.git | |
https://github.com/openstack/ironic-specs.git | |
https://github.com/openstack/ironic-staging-drivers.git | |
https://github.com/openstack/ironic-tempest-plugin.git | |
https://github.com/openstack/ironic-ui.git | |
https://github.com/openstack/ironic-webclient.git | |
https://github.com/openstack/jacket.git | |
https://github.com/openstack/jenkins-plugins-for-murano.git | |
https://github.com/openstack/js-openstack-lib.git | |
https://github.com/openstack/k8s-cloud-provider.git | |
https://github.com/openstack/k8s-docker-suite-app-murano.git | |
https://github.com/openstack/karbor-dashboard.git | |
https://github.com/openstack/karbor.git | |
https://github.com/openstack/karma-subunit-reporter.git | |
https://github.com/openstack/keystoneauth.git | |
https://github.com/openstack/keystoneauth-saml2.git | |
https://github.com/openstack/keystone.git | |
https://github.com/openstack/keystonemiddleware.git | |
https://github.com/openstack/keystone-specs.git | |
https://github.com/openstack/keystone-tempest-plugin.git | |
https://github.com/openstack/kiloeyes.git | |
https://github.com/openstack/kingbird.git | |
https://github.com/openstack/kite.git | |
https://github.com/openstack/kloudbuster.git | |
https://github.com/openstack/kolla-ansible.git | |
https://github.com/openstack/kolla.git | |
https://github.com/openstack/tripleo-puppet-elements.git | |
https://github.com/openstack/kolla-kubernetes.git | |
https://github.com/openstack/tempest-horizon.git | |
https://github.com/openstack/kolla-mesos.git | |
https://github.com/openstack/kosmos.git | |
https://github.com/openstack/kosmos-specs.git | |
https://github.com/openstack/kuryr.git | |
https://github.com/openstack/kuryr-kubernetes.git | |
https://github.com/openstack/kuryr-libnetwork.git | |
https://github.com/openstack/kuryr-tempest-plugin.git | |
https://github.com/openstack/kwapi.git | |
https://github.com/openstack/ldappool.git | |
https://github.com/openstack/liberasurecode.git | |
https://github.com/openstack/loci-cinder.git | |
https://github.com/openstack/loci-designate.git | |
https://github.com/openstack/loci.git | |
https://github.com/openstack/loci-glance.git | |
https://github.com/openstack/loci-heat.git | |
https://github.com/openstack/loci-horizon.git | |
https://github.com/openstack/loci-ironic.git | |
https://github.com/openstack/loci-keystone.git | |
https://github.com/openstack/loci-murano.git | |
https://github.com/openstack/loci-neutron.git | |
https://github.com/openstack/loci-nova.git | |
https://github.com/openstack/loci-requirements.git | |
https://github.com/openstack/loci-swift.git | |
https://github.com/openstack/loci-trove.git | |
https://github.com/openstack/magnetodb.git | |
https://github.com/openstack/magnetodb-specs.git | |
https://github.com/openstack/magnum.git | |
https://github.com/openstack/magnum-specs.git | |
https://github.com/openstack/magnum-ui.git | |
https://github.com/openstack/manila.git | |
https://github.com/openstack/manila-image-elements.git | |
https://github.com/openstack/manila-specs.git | |
https://github.com/openstack/manila-test-image.git | |
https://github.com/openstack/manila-ui.git | |
https://github.com/openstack/marshal.git | |
https://github.com/openstack/masakari.git | |
https://github.com/openstack/masakari-monitors.git | |
https://github.com/openstack/masakari-specs.git | |
https://github.com/openstack/meghdwar.git | |
https://github.com/openstack/merlin.git | |
https://github.com/openstack/meteos.git | |
https://github.com/openstack/meteos-ui.git | |
https://github.com/openstack/microversion-parse.git | |
https://github.com/openstack/mistral-dashboard.git | |
https://github.com/openstack/mistral-extra.git | |
https://github.com/openstack/mistral.git | |
https://github.com/openstack/mistral-lib.git | |
https://github.com/openstack/mistral-specs.git | |
https://github.com/openstack/mitmstack.git | |
https://github.com/openstack/mixmatch.git | |
https://github.com/openstack/mogan.git | |
https://github.com/openstack/mogan-specs.git | |
https://github.com/openstack/mogan-ui.git | |
https://github.com/openstack/molteniron.git | |
https://github.com/openstack/monasca-agent.git | |
https://github.com/openstack/monasca-analytics.git | |
https://github.com/openstack/monasca-api.git | |
https://github.com/openstack/monasca-ceilometer.git | |
https://github.com/openstack/monasca-common.git | |
https://github.com/openstack/monasca-events-api.git | |
https://github.com/openstack/monasca-grafana-datasource.git | |
https://github.com/openstack/monasca-kibana-plugin.git | |
https://github.com/openstack/monasca-notification.git | |
https://github.com/openstack/monasca-persister.git | |
https://github.com/openstack/monasca-specs.git | |
https://github.com/openstack/monasca-statsd.git | |
https://github.com/openstack/monasca-thresh.git | |
https://github.com/openstack/monasca-transform.git | |
https://github.com/openstack/monasca-ui.git | |
https://github.com/openstack/monasca-vagrant.git | |
https://github.com/openstack/monitoring-for-openstack.git | |
https://github.com/openstack/monitorstack.git | |
https://github.com/openstack/mors.git | |
https://github.com/openstack/mox3.git | |
https://github.com/openstack/murano-agent.git | |
https://github.com/openstack/murano-apps.git | |
https://github.com/openstack/murano-dashboard.git | |
https://github.com/openstack/murano-deployment.git | |
https://github.com/openstack/murano.git | |
https://github.com/openstack/murano-pkg-check.git | |
https://github.com/openstack/murano-plugin-networking-sfc.git | |
https://github.com/openstack/murano-specs.git | |
https://github.com/openstack/murano-tempest-plugin.git | |
https://github.com/openstack/namos.git | |
https://github.com/openstack/nemesis.git | |
https://github.com/openstack/nerd-reviewer.git | |
https://github.com/openstack/network-checker.git | |
https://github.com/openstack/networking-6wind.git | |
https://github.com/openstack/networking-ale-omniswitch.git | |
https://github.com/openstack/networking-arista.git | |
https://github.com/openstack/networking-avaya.git | |
https://github.com/openstack/networking-bagpipe.git | |
https://github.com/openstack/networking-baremetal.git | |
https://github.com/openstack/networking-bgpvpn.git | |
https://github.com/openstack/networking-bigswitch.git | |
https://github.com/openstack/networking-brocade.git | |
https://github.com/openstack/networking-calico.git | |
https://github.com/openstack/networking-cisco.git | |
https://github.com/openstack/networking-cumulus.git | |
https://github.com/openstack/networking-dpm.git | |
https://github.com/openstack/networking-edge-vpn.git | |
https://github.com/openstack/networking-extreme.git | |
https://github.com/openstack/networking-fortinet.git | |
https://github.com/openstack/networking-fujitsu.git | |
https://github.com/openstack/networking-generic-switch.git | |
https://github.com/openstack/networking-gluon.git | |
https://github.com/openstack/networking-h3c.git | |
https://github.com/openstack/networking-hpe.git | |
https://github.com/openstack/networking-huawei.git | |
https://github.com/openstack/networking-hyperv.git | |
https://github.com/openstack/networking-icc.git | |
https://github.com/openstack/networking-infoblox.git | |
https://github.com/openstack/networking-l2gw.git | |
https://github.com/openstack/networking-lagopus.git | |
https://github.com/openstack/networking-lenovo.git | |
https://github.com/openstack/networking-midonet.git | |
https://github.com/openstack/networking-mlnx.git | |
https://github.com/openstack/networking-nec.git | |
https://github.com/openstack/networking-odl.git | |
https://github.com/openstack/networking-ofagent.git | |
https://github.com/openstack/networking-onos.git | |
https://github.com/openstack/networking-opencontrail.git | |
https://github.com/openstack/networking-ovn.git | |
https://github.com/openstack/networking-ovs-dpdk.git | |
https://github.com/openstack/networking-peregrine.git | |
https://github.com/openstack/networking-plumgrid.git | |
https://github.com/openstack/networking-powervm.git | |
https://github.com/openstack/networking-sfc.git | |
https://github.com/openstack/networking-vpp.git | |
https://github.com/openstack/networking-vsphere.git | |
https://github.com/openstack/networking-zte.git | |
https://github.com/openstack/networking-zvm.git | |
https://github.com/openstack/neutron-classifier.git | |
https://github.com/openstack/neutron-dynamic-routing.git | |
https://github.com/openstack/neutron-fwaas-dashboard.git | |
https://github.com/openstack/neutron-fwaas.git | |
https://github.com/openstack/neutron.git | |
https://github.com/openstack/neutron-lbaas-dashboard.git | |
https://github.com/openstack/neutron-lbaas.git | |
https://github.com/openstack/neutron-lib.git | |
https://github.com/openstack/neutron-specs.git | |
https://github.com/openstack/neutron-tempest-plugin.git | |
https://github.com/openstack/neutron-vpnaas-dashboard.git | |
https://github.com/openstack/neutron-vpnaas.git | |
https://github.com/openstack/nfv-filters.git | |
https://github.com/openstack/nova-docker.git | |
https://github.com/openstack/nova-dpm.git | |
https://github.com/openstack/nova-fusioncompute.git | |
https://github.com/openstack/nova.git | |
https://github.com/openstack/novajoin.git | |
https://github.com/openstack/novajoin-tempest-plugin.git | |
https://github.com/openstack/nova-lxd.git | |
https://github.com/openstack/nova-mksproxy.git | |
https://github.com/openstack/nova-powervm.git | |
https://github.com/openstack/nova-solver-scheduler.git | |
https://github.com/openstack/nova-specs.git | |
https://github.com/openstack/nova-zvm-virt-driver.git | |
https://github.com/openstack/oaktree.git | |
https://github.com/openstack/oaktreemodel.git | |
https://github.com/openstack/octavia-dashboard.git | |
https://github.com/openstack/octavia.git | |
https://github.com/openstack/octavia-tempest-plugin.git | |
https://github.com/openstack/omni.git | |
https://github.com/openstack/ooi.git | |
https://github.com/openstack/opencafe.git | |
https://github.com/openstack/openstack-ansible-apt_package_pinning.git | |
https://github.com/openstack/openstack-ansible-galera_client.git | |
https://github.com/openstack/openstack-ansible-galera_server.git | |
https://github.com/openstack/openstack-ansible.git | |
https://github.com/openstack/openstack-ansible-haproxy_server.git | |
https://github.com/openstack/openstack-ansible-lxc_container_create.git | |
https://github.com/openstack/openstack-ansible-lxc_hosts.git | |
https://github.com/openstack/openstack-ansible-memcached_server.git | |
https://github.com/openstack/openstack-ansible-openstack_hosts.git | |
https://github.com/openstack/openstack-ansible-openstack_openrc.git | |
https://github.com/openstack/openstack-ansible-ops.git | |
https://github.com/openstack/openstack-ansible-os_almanach.git | |
https://github.com/openstack/openstack-ansible-os_aodh.git | |
https://github.com/openstack/openstack-ansible-os_barbican.git | |
https://github.com/openstack/openstack-ansible-os_ceilometer.git | |
https://github.com/openstack/openstack-ansible-os_cinder.git | |
https://github.com/openstack/openstack-ansible-os_cloudkitty.git | |
https://github.com/openstack/openstack-ansible-os_designate.git | |
https://github.com/openstack/openstack-ansible-os_freezer.git | |
https://github.com/openstack/openstack-ansible-os_glance.git | |
https://github.com/openstack/openstack-ansible-os_gnocchi.git | |
https://github.com/openstack/openstack-ansible-os_heat.git | |
https://github.com/openstack/openstack-ansible-os_horizon.git | |
https://github.com/openstack/openstack-ansible-os_ironic.git | |
https://github.com/openstack/openstack-ansible-os_karbor.git | |
https://github.com/openstack/openstack-ansible-os_keystone.git | |
https://github.com/openstack/openstack-ansible-os_magnum.git | |
https://github.com/openstack/openstack-ansible-os_molteniron.git | |
https://github.com/openstack/openstack-ansible-os_monasca-agent.git | |
https://github.com/openstack/openstack-ansible-os_monasca.git | |
https://github.com/openstack/openstack-ansible-os_monasca-ui.git | |
https://github.com/openstack/openstack-ansible-os_neutron.git | |
https://github.com/openstack/openstack-ansible-os_nova.git | |
https://github.com/openstack/openstack-ansible-os_octavia.git | |
https://github.com/openstack/openstack-ansible-os_rally.git | |
https://github.com/openstack/openstack-ansible-os_sahara.git | |
https://github.com/openstack/openstack-ansible-os_searchlight.git | |
https://github.com/openstack/openstack-ansible-os_swift.git | |
https://github.com/openstack/openstack-ansible-os_swift_sync.git | |
https://github.com/openstack/openstack-ansible-os_tacker.git | |
https://github.com/openstack/openstack-ansible-os_tempest.git | |
https://github.com/openstack/openstack-ansible-os_trove.git | |
https://github.com/openstack/openstack-ansible-os_watcher.git | |
https://github.com/openstack/openstack-ansible-os_zaqar.git | |
https://github.com/openstack/openstack-ansible-pip_install.git | |
https://github.com/openstack/openstack-ansible-pip_lock_down.git | |
https://github.com/openstack/openstack-ansible-plugins.git | |
https://github.com/openstack/openstack-ansible-py_from_git.git | |
https://github.com/openstack/openstack-ansible-rabbitmq_server.git | |
https://github.com/openstack/openstack-ansible-repo_build.git | |
https://github.com/openstack/openstack-ansible-repo_server.git | |
https://github.com/openstack/openstack-ansible-rsyslog_client.git | |
https://github.com/openstack/openstack-ansible-rsyslog_server.git | |
https://github.com/openstack/openstack-ansible-security.git | |
https://github.com/openstack/openstack-ansible-specs.git | |
https://github.com/openstack/openstack-ansible-tests.git | |
https://github.com/openstack/openstack-chef-repo.git | |
https://github.com/openstack/openstack-chef-specs.git | |
https://github.com/openstack/openstackclient.git | |
https://github.com/openstack/openstackdocstheme.git | |
https://github.com/openstack/openstack-doc-tools.git | |
https://github.com/openstack/openstack.git | |
https://github.com/openstack/openstack-health.git | |
https://github.com/openstack/openstack-helm-addons.git | |
https://github.com/openstack/openstack-helm.git | |
https://github.com/openstack/openstack-helm-infra.git | |
https://github.com/openstack/openstack-manuals.git | |
https://github.com/openstack/openstack-mentoring-scripts.git | |
https://github.com/openstack/openstack-planet.git | |
https://github.com/openstack/openstack-resource-agents.git | |
https://github.com/openstack/openstack-resource-agents-specs.git | |
https://github.com/openstack/openstack-salt.git | |
https://github.com/openstack/openstack-salt-specs.git | |
https://github.com/openstack/openstack-spaceport.git | |
https://github.com/openstack/openstack-specs.git | |
https://github.com/openstack/openstack-ux.git | |
https://github.com/openstack/operations-guide.git | |
https://github.com/openstack/ops-tags-team.git | |
https://github.com/openstack/ops-telecom-nfv.git | |
https://github.com/openstack/os-api-ref.git | |
https://github.com/openstack/os-apply-config.git | |
https://github.com/openstack/os-brick.git | |
https://github.com/openstack/osc-lib.git | |
https://github.com/openstack/os-client-config.git | |
https://github.com/openstack/os-cloud-config.git | |
https://github.com/openstack/os-collect-config.git | |
https://github.com/openstack/osc-placement.git | |
https://github.com/openstack/os-dpm.git | |
https://github.com/openstack/os-faults.git | |
https://github.com/openstack/oslo.cache.git | |
https://github.com/openstack/oslo.concurrency.git | |
https://github.com/openstack/oslo.config.git | |
https://github.com/openstack/oslo.context.git | |
https://github.com/openstack/oslo.db.git | |
https://github.com/openstack/os-log-merger.git | |
https://github.com/openstack/oslo.i18n.git | |
https://github.com/openstack/oslo-incubator.git | |
https://github.com/openstack/oslo.log.git | |
https://github.com/openstack/oslo.messaging.git | |
https://github.com/openstack/oslo.middleware.git | |
https://github.com/openstack/oslo.policy.git | |
https://github.com/openstack/oslo.privsep.git | |
https://github.com/openstack/oslo.reports.git | |
https://github.com/openstack/oslo.rootwrap.git | |
https://github.com/openstack/oslo.serialization.git | |
https://github.com/openstack/oslo.service.git | |
https://github.com/openstack/oslo-specs.git | |
https://github.com/openstack/oslosphinx.git | |
https://github.com/openstack/oslotest.git | |
https://github.com/openstack/oslo.tools.git | |
https://github.com/openstack/oslo.utils.git | |
https://github.com/openstack/oslo.versionedobjects.git | |
https://github.com/openstack/oslo.vmware.git | |
https://github.com/openstack/os-namos.git | |
https://github.com/openstack/os-net-config.git | |
https://github.com/openstack/osops-coda.git | |
https://github.com/openstack/osops-example-configs.git | |
https://github.com/openstack/osops-tools-contrib.git | |
https://github.com/openstack/osops-tools-generic.git | |
https://github.com/openstack/osops-tools-logging.git | |
https://github.com/openstack/osops-tools-monitoring.git | |
https://github.com/openstack/os-performance-tools.git | |
https://github.com/openstack/osprofiler.git | |
https://github.com/openstack/ospurge.git | |
https://github.com/openstack/os-refresh-config.git | |
https://github.com/openstack/ossa.git | |
https://github.com/openstack/os-service-types.git | |
https://github.com/openstack/os-testr.git | |
https://github.com/openstack/os-traits.git | |
https://github.com/openstack/os-vif.git | |
https://github.com/openstack/os-win.git | |
https://github.com/openstack/oswin-tempest-plugin.git | |
https://github.com/openstack/os-xenapi.git | |
https://github.com/openstack/ovsdbapp.git | |
https://github.com/openstack/packetary.git | |
https://github.com/openstack/packetary-specs.git | |
https://github.com/openstack/packstack.git | |
https://github.com/openstack/pandaman.git | |
https://github.com/openstack/panko.git | |
https://github.com/openstack/patrole.git | |
https://github.com/openstack/paunch.git | |
https://github.com/openstack/performa.git | |
https://github.com/openstack/performance-docs.git | |
https://github.com/openstack/picasso.git | |
https://github.com/openstack/poppy.git | |
https://github.com/openstack/poppy-ui.git | |
https://github.com/openstack/powervc-driver.git | |
https://github.com/openstack/project-navigator-data.git | |
https://github.com/openstack/project-team-guide.git | |
https://github.com/openstack/proliantutils.git | |
https://github.com/openstack/ptgbot.git | |
https://github.com/openstack/publiccloud-wg.git | |
https://github.com/openstack/puppet-aodh.git | |
https://github.com/openstack/puppet-autossh.git | |
https://github.com/openstack/puppet-barbican.git | |
https://github.com/openstack/puppet-ceilometer.git | |
https://github.com/openstack/puppet-ceph.git | |
https://github.com/openstack/puppet-cinder.git | |
https://github.com/openstack/puppet-cloudkitty.git | |
https://github.com/openstack/puppet-congress.git | |
https://github.com/openstack/puppet-designate.git | |
https://github.com/openstack/puppet-ec2api.git | |
https://github.com/openstack/puppet-freezer.git | |
https://github.com/openstack/puppet-ganesha.git | |
https://github.com/openstack/puppet-glance.git | |
https://github.com/openstack/puppet-glare.git | |
https://github.com/openstack/puppet-gnocchi.git | |
https://github.com/openstack/puppet-heat.git | |
https://github.com/openstack/puppet-horizon.git | |
https://github.com/openstack/puppet-ironic.git | |
https://github.com/openstack/puppet-keystone.git | |
https://github.com/openstack/puppet-magnum.git | |
https://github.com/openstack/puppet-manila.git | |
https://github.com/openstack/puppet-midonet.git | |
https://github.com/openstack/puppet-mistral.git | |
https://github.com/openstack/puppet-modulesync-configs.git | |
https://github.com/openstack/puppet-monasca.git | |
https://github.com/openstack/puppet-murano.git | |
https://github.com/openstack/puppet-n1k-vsm.git | |
https://github.com/openstack/puppet-neutron.git | |
https://github.com/openstack/puppet-nova.git | |
https://github.com/openstack/puppet-octavia.git | |
https://github.com/openstack/puppet-openstack-cookiecutter.git | |
https://github.com/openstack/puppet-openstack_extras.git | |
https://github.com/openstack/puppet-openstack-guide.git | |
https://github.com/openstack/puppet-openstack-integration.git | |
https://github.com/openstack/puppet-openstacklib.git | |
https://github.com/openstack/puppet-openstack-release-tools.git | |
https://github.com/openstack/puppet-openstack_spec_helper.git | |
https://github.com/openstack/puppet-openstack-specs.git | |
https://github.com/openstack/puppet-oslo.git | |
https://github.com/openstack/puppet-ovn.git | |
https://github.com/openstack/puppet-pacemaker.git | |
https://github.com/openstack/puppet-panko.git | |
https://github.com/openstack/puppet-qdr.git | |
https://github.com/openstack/puppet-rally.git | |
https://github.com/openstack/puppet-sahara.git | |
https://github.com/openstack/puppet-setproxy.git | |
https://github.com/openstack/puppet-surveil.git | |
https://github.com/openstack/puppet-swift.git | |
https://github.com/openstack/puppet-tacker.git | |
https://github.com/openstack/puppet-tempest.git | |
https://github.com/openstack/puppet-tripleo.git | |
https://github.com/openstack/puppet-trove.git | |
https://github.com/openstack/puppet-tuskar.git | |
https://github.com/openstack/puppet-vitrage.git | |
https://github.com/openstack/puppet-vswitch.git | |
https://github.com/openstack/puppet-watcher.git | |
https://github.com/openstack/puppet-zaqar.git | |
https://github.com/openstack/pycadf.git | |
https://github.com/openstack/pyeclib.git | |
https://github.com/openstack/pyghmi.git | |
https://github.com/openstack/pylockfile.git | |
https://github.com/openstack/pymod2pkg.git | |
https://github.com/openstack/python-adjutantclient.git | |
https://github.com/openstack/python-almanachclient.git | |
https://github.com/openstack/python-aodhclient.git | |
https://github.com/openstack/python-appcatalogclient.git | |
https://github.com/openstack/python-barbicanclient.git | |
https://github.com/openstack/python-bileanclient.git | |
https://github.com/openstack/python-blazarclient.git | |
https://github.com/openstack/python-brick-cinderclient-ext.git | |
https://github.com/openstack/python-ceilometerclient.git | |
https://github.com/openstack/python-cerberusclient.git | |
https://github.com/openstack/python-cinderclient.git | |
https://github.com/openstack/python-cloudkittyclient.git | |
https://github.com/openstack/python-cloudpulseclient.git | |
https://github.com/openstack/python-cognitiveclient.git | |
https://github.com/openstack/python-congressclient.git | |
https://github.com/openstack/python-cueclient.git | |
https://github.com/openstack/python-designateclient.git | |
https://github.com/openstack/python-distilclient.git | |
https://github.com/openstack/python-don.git | |
https://github.com/openstack/python-dracclient.git | |
https://github.com/openstack/python-evoqueclient.git | |
https://github.com/openstack/python-freezerclient.git | |
https://github.com/openstack/python-fuelclient.git | |
https://github.com/openstack/python-ganttclient.git | |
https://github.com/openstack/python-glanceclient.git | |
https://github.com/openstack/python-glareclient.git | |
https://github.com/openstack/python-gnocchiclient.git | |
https://github.com/openstack/python-group-based-policy-client.git | |
https://github.com/openstack/python-heatclient.git | |
https://github.com/openstack/python-hnvclient.git | |
https://github.com/openstack/python-iotronicclient.git | |
https://github.com/openstack/python-ironicclient.git | |
https://github.com/openstack/python-ironic-inspector-client.git | |
https://github.com/openstack/python-jenkins.git | |
https://github.com/openstack/python-k8sclient.git | |
https://github.com/openstack/python-karborclient.git | |
https://github.com/openstack/python-keystoneclient.git | |
https://github.com/openstack/python-keystoneclient-kerberos.git | |
https://github.com/openstack/python-kingbirdclient.git | |
https://github.com/openstack/python-kiteclient.git | |
https://github.com/openstack/python-magnetodbclient.git | |
https://github.com/openstack/python-magnumclient.git | |
https://github.com/openstack/python-manilaclient.git | |
https://github.com/openstack/python-masakariclient.git | |
https://github.com/openstack/python-meteosclient.git | |
https://github.com/openstack/python-mistralclient.git | |
https://github.com/openstack/python-moganclient.git | |
https://github.com/openstack/python-monascaclient.git | |
https://github.com/openstack/python-muranoclient.git | |
https://github.com/openstack/python-namosclient.git | |
https://github.com/openstack/python-neutronclient.git | |
https://github.com/openstack/python-neutron-pd-driver.git | |
https://github.com/openstack/python-novaclient.git | |
https://github.com/openstack/python-octaviaclient.git | |
https://github.com/openstack/python-oneviewclient.git | |
https://github.com/openstack/python-openstackclient.git | |
https://github.com/openstack/python-openstacksdk.git | |
https://github.com/openstack/python-opentsdbclient.git | |
https://github.com/openstack/python-pankoclient.git | |
https://github.com/openstack/python-picassoclient.git | |
https://github.com/openstack/python-qinlingclient.git | |
https://github.com/openstack/python-rackclient.git | |
https://github.com/openstack/python-redfish.git | |
https://github.com/openstack/python-rsdclient.git | |
https://github.com/openstack/python-saharaclient.git | |
https://github.com/openstack/python-scciclient.git | |
https://github.com/openstack/python-searchlightclient.git | |
https://github.com/openstack/python-senlinclient.git | |
https://github.com/openstack/fuel-dev-tools.git | |
https://github.com/openstack/python-solumclient.git | |
https://github.com/openstack/python-sticksclient.git | |
https://github.com/openstack/python-surveilclient.git | |
https://github.com/openstack/python-swiftclient.git | |
https://github.com/openstack/python-tackerclient.git | |
https://github.com/openstack/tacker.git | |
https://github.com/openstack/python-tricircleclient.git | |
https://github.com/openstack/python-tripleoclient.git | |
https://github.com/openstack/python-troveclient.git | |
https://github.com/openstack/python-tuskarclient.git | |
https://github.com/openstack/python-valenceclient.git | |
https://github.com/openstack/python-vitrageclient.git | |
https://github.com/openstack/python-watcherclient.git | |
https://github.com/openstack/python-wsmanclient.git | |
https://github.com/openstack/python-zaqarclient.git | |
https://github.com/openstack/python-zunclient.git | |
https://github.com/openstack/qa-specs.git | |
https://github.com/openstack/qinling.git | |
https://github.com/openstack/quark.git | |
https://github.com/openstack/rack.git | |
https://github.com/openstack/radar.git | |
https://github.com/openstack/rally.git | |
https://github.com/openstack/ramdisk-func-test.git | |
https://github.com/openstack/ranger-agent.git | |
https://github.com/openstack/ranger.git | |
https://github.com/openstack/refstack-client.git | |
https://github.com/openstack/refstack.git | |
https://github.com/openstack/release-schedule-generator.git | |
https://github.com/openstack/releases.git | |
https://github.com/openstack/release-test.git | |
https://github.com/openstack/renderspec.git | |
https://github.com/openstack/reno.git | |
https://github.com/openstack/requests-mock.git | |
https://github.com/openstack/requirements.git | |
https://github.com/openstack/rpm-packaging.git | |
https://github.com/openstack/rpm-packaging-tools.git | |
https://github.com/openstack/rsd-lib.git | |
https://github.com/openstack/rst2bash.git | |
https://github.com/openstack/sahara-ci-config.git | |
https://github.com/openstack/sahara-dashboard.git | |
https://github.com/openstack/sahara-extra.git | |
https://github.com/openstack/sahara-image-elements.git | |
https://github.com/openstack/sahara.git | |
https://github.com/openstack/sahara-specs.git | |
https://github.com/openstack/sahara-tests.git | |
https://github.com/openstack/salt-formula-ceilometer.git | |
https://github.com/openstack/salt-formula-cinder.git | |
https://github.com/openstack/salt-formula-glance.git | |
https://github.com/openstack/salt-formula-heat.git | |
https://github.com/openstack/salt-formula-horizon.git | |
https://github.com/openstack/salt-formula-keystone.git | |
https://github.com/openstack/salt-formula-kubernetes.git | |
https://github.com/openstack/salt-formula-midonet.git | |
https://github.com/openstack/salt-formula-neutron.git | |
https://github.com/openstack/salt-formula-nova.git | |
https://github.com/openstack/salt-formula-opencontrail.git | |
https://github.com/openstack/salt-formula-swift.git | |
https://github.com/openstack/scalpels.git | |
https://github.com/openstack/scientific-wg.git | |
https://github.com/openstack/searchlight.git | |
https://github.com/openstack/searchlight-specs.git | |
https://github.com/openstack/searchlight-ui.git | |
https://github.com/openstack/security-analysis.git | |
https://github.com/openstack/security-doc.git | |
https://github.com/openstack/security-specs.git | |
https://github.com/openstack/senlin-dashboard.git | |
https://github.com/openstack/senlin.git | |
https://github.com/openstack/service-types-authority.git | |
https://github.com/openstack/shaker.git | |
https://github.com/openstack/shotgun.git | |
https://github.com/openstack/shovel.git | |
https://github.com/openstack/shovel-horizon.git | |
https://github.com/openstack/snap-ceilometer.git | |
https://github.com/openstack/snap-cinder.git | |
https://github.com/openstack/snap-glance.git | |
https://github.com/openstack/snap-keystone.git | |
https://github.com/openstack/snap-neutron.git | |
https://github.com/openstack/snap-nova.git | |
https://github.com/openstack/snap-nova-hypervisor.git | |
https://github.com/openstack/snap-openstackclients.git | |
https://github.com/openstack/snap.openstack.git | |
https://github.com/openstack/snap-rally.git | |
https://github.com/openstack/snap-tempest.git | |
https://github.com/openstack/solar.git | |
https://github.com/openstack/solar-resources.git | |
https://github.com/openstack/solum-dashboard.git | |
https://github.com/openstack/solum.git | |
https://github.com/openstack/solum-infra-guestagent.git | |
https://github.com/openstack/solum-specs.git | |
https://github.com/openstack/solum-tempest-plugin.git | |
https://github.com/openstack/spanner.git | |
https://github.com/openstack/sphinx-feature-classification.git | |
https://github.com/openstack/sqlalchemy-migrate.git | |
https://github.com/openstack/stackalytics.git | |
https://github.com/openstack/stacklight-integration-tests.git | |
https://github.com/openstack/stacktach.git | |
https://github.com/openstack/stacktach-klugman.git | |
https://github.com/openstack/stacktach-notification-utils.git | |
https://github.com/openstack/stacktach-notigen.git | |
https://github.com/openstack/stacktach-quince.git | |
https://github.com/openstack/stacktach-quincy.git | |
https://github.com/openstack/stacktach-sandbox.git | |
https://github.com/openstack/stacktach-shoebox.git | |
https://github.com/openstack/stacktach-simport.git | |
https://github.com/openstack/stacktach-stackdistiller.git | |
https://github.com/openstack/stacktach-timex.git | |
https://github.com/openstack/stacktach-winchester.git | |
https://github.com/openstack/stackube.git | |
https://github.com/openstack/stackviz.git | |
https://github.com/openstack/steth.git | |
https://github.com/openstack/stevedore.git | |
https://github.com/openstack/sticks-dashboard.git | |
https://github.com/openstack/sticks.git | |
https://github.com/openstack/storlets.git | |
https://github.com/openstack/surveil.git | |
https://github.com/openstack/surveil-specs.git | |
https://github.com/openstack/sushy.git | |
https://github.com/openstack/sushy-tools.git | |
https://github.com/openstack/swift3.git | |
https://github.com/openstack/swift-bench.git | |
https://github.com/openstack/swift-ceph-backend.git | |
https://github.com/openstack/swift.git | |
https://github.com/openstack/swiftonfile.git | |
https://github.com/openstack/swiftonhpss.git | |
https://github.com/openstack/swift-specs.git | |
https://github.com/openstack/synergy-scheduler-manager.git | |
https://github.com/openstack/synergy-service.git | |
https://github.com/openstack/syntribos.git | |
https://github.com/openstack/syntribos-openstack-templates.git | |
https://github.com/openstack/syntribos-payloads.git | |
https://github.com/openstack/tacker-horizon.git | |
https://github.com/openstack/tacker-specs.git | |
https://github.com/openstack/tap-as-a-service-dashboard.git | |
https://github.com/openstack/tap-as-a-service.git | |
https://github.com/openstack/taskflow.git | |
https://github.com/openstack/tc-as-a-service.git | |
https://github.com/openstack/telcowg-usecases.git | |
https://github.com/openstack/telemetry-specs.git | |
https://github.com/openstack/tempest.git | |
https://github.com/openstack/tempest-lib.git | |
https://github.com/openstack/tempest-plugin-cookiecutter.git | |
https://github.com/openstack/tempest-tripleo-ui.git | |
https://github.com/openstack/terracotta.git | |
https://github.com/openstack/third-party-ci-tools.git | |
https://github.com/openstack/timmy.git | |
https://github.com/openstack/tooz.git | |
https://github.com/openstack/tosca-parser.git | |
https://github.com/openstack/training-guides.git | |
https://github.com/openstack/training-labs.git | |
https://github.com/openstack/transparency-policy.git | |
https://github.com/openstack/tricircle.git | |
https://github.com/openstack/trio2o.git | |
https://github.com/openstack/tripleo-common.git | |
https://github.com/openstack/tripleo-docs.git | |
https://github.com/openstack/tripleo-heat-templates.git | |
https://github.com/openstack/tripleo-image-elements.git | |
https://github.com/openstack/tripleo-incubator.git | |
https://github.com/openstack/tripleo-quickstart-extras.git | |
https://github.com/openstack/tripleo-quickstart.git | |
https://github.com/openstack/tripleo-repos.git | |
https://github.com/openstack/tripleo-specs.git | |
https://github.com/openstack/tripleo-ui.git | |
https://github.com/openstack/tripleo-upgrade.git | |
https://github.com/openstack/tripleo-validations.git | |
https://github.com/openstack/trove-dashboard.git | |
https://github.com/openstack/trove.git | |
https://github.com/openstack/trove-image-builder.git | |
https://github.com/openstack/trove-integration.git | |
https://github.com/openstack/trove-specs.git | |
https://github.com/openstack/tuning-box.git | |
https://github.com/openstack/turbo-hipster.git | |
https://github.com/openstack/tuskar.git | |
https://github.com/openstack/tuskar-ui.git | |
https://github.com/openstack/uc-recognition.git | |
https://github.com/openstack/ui-cookiecutter.git | |
https://github.com/openstack/upstream-institute-virtual-environment.git | |
https://github.com/openstack/vahana.git | |
https://github.com/openstack/valence.git | |
https://github.com/openstack/valence-specs.git | |
https://github.com/openstack/valet.git | |
https://github.com/openstack/virtualbmc.git | |
https://github.com/openstack/virtualpdu.git | |
https://github.com/openstack/vitrage-dashboard.git | |
https://github.com/openstack/vitrage.git | |
https://github.com/openstack/vitrage-specs.git | |
https://github.com/openstack/vm-bm-wg.git | |
https://github.com/openstack/vmtp.git | |
https://github.com/openstack/vmware-nsx.git | |
https://github.com/openstack/vmware-nsxlib.git | |
https://github.com/openstack/vmware-nsx-tempest-plugin.git | |
https://github.com/openstack/vmware-vspc.git | |
https://github.com/openstack/watcher-dashboard.git | |
https://github.com/openstack/watcher.git | |
https://github.com/openstack/watcher-specs.git | |
https://github.com/openstack/watcher-tempest-plugin.git | |
https://github.com/openstack/whereto.git | |
https://github.com/openstack/windmill.git | |
https://github.com/openstack/workload-ref-archs.git | |
https://github.com/openstack/wsme.git | |
https://github.com/openstack/xenapi-os-testing.git | |
https://github.com/openstack/xstatic-angular-bootstrap.git | |
https://github.com/openstack/xstatic-angular-cookies.git | |
https://github.com/openstack/xstatic-angular-fileupload.git | |
https://github.com/openstack/xstatic-angular-gettext.git | |
https://github.com/openstack/xstatic-angular.git | |
https://github.com/openstack/xstatic-angular-lrdragndrop.git | |
https://github.com/openstack/xstatic-angular-mock.git | |
https://github.com/openstack/xstatic-angular-sanitize.git | |
https://github.com/openstack/xstatic-angular-smart-table.git | |
https://github.com/openstack/xstatic-angular-ui-router.git | |
https://github.com/openstack/xstatic-bootstrap-datepicker.git | |
https://github.com/openstack/xstatic-bootstrap-scss.git | |
https://github.com/openstack/xstatic-bootswatch.git | |
https://github.com/openstack/xstatic-d3.git | |
https://github.com/openstack/xstatic-font-awesome.git | |
https://github.com/openstack/xstatic-hogan.git | |
https://github.com/openstack/xstatic-jasmine.git | |
https://github.com/openstack/xstatic-jquery.bootstrap.wizard.git | |
https://github.com/openstack/xstatic-jquery-migrate.git | |
https://github.com/openstack/xstatic-jquery.quicksearch.git | |
https://github.com/openstack/xstatic-jquery.tablesorter.git | |
https://github.com/openstack/xstatic-jsencrypt.git | |
https://github.com/openstack/xstatic-magic-search.git | |
https://github.com/openstack/xstatic-mdi.git | |
https://github.com/openstack/xstatic-qunit.git | |
https://github.com/openstack/xstatic-rickshaw.git | |
https://github.com/openstack/xstatic-roboto-fontface.git | |
https://github.com/openstack/xstatic-spin.git | |
https://github.com/openstack/yaql.git | |
https://github.com/openstack/zaqar.git | |
https://github.com/openstack/zaqar-specs.git | |
https://github.com/openstack/zaqar-tempest-plugin.git | |
https://github.com/openstack/zaqar-ui.git | |
https://github.com/openstack/zun.git | |
https://github.com/openstack/zun-tempest-plugin.git | |
https://github.com/openstack/zun-ui.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment