Skip to content

Instantly share code, notes, and snippets.

View markvoelker's full-sized avatar

Mark T. Voelker markvoelker

View GitHub Profile

Keybase proof

I hereby claim:

  • I am markvoelker on github.
  • I am markvoelker (https://keybase.io/markvoelker) on keybase.
  • I have a public key whose fingerprint is AC6C A215 7D5B E746 B97A 4D21 B509 2D45 8637 B09B

To claim this, I am signing this object:

@markvoelker
markvoelker / gist:e6837425995710d685723ba2e87e6d1e
Created August 15, 2016 20:34
Interop challenge results reporting (strawman)
1.) Your name: __________
2.) Your email: __________
3.) Name and version (if applicable) of the product you tested: ____________
4.) Version of OpenStack the product uses: ___________
5.) Link to RefStack results for this product: ___________________
6.) Workload 1: Terraform/Docker Swarm
A.) Did the workload run successfully? ______
B.) If not, did you encounter any end-user visible error messages? Please copy/paste them here and provide any context you think would help us understand what happened. __________
C.) Were you able to determine why the workload failed on this product? If so, please describe. Examples: the product is missing a feature that the workload assumes is available, the product limits an action by policy that the workload requires, the workload assumes a particular image type or processor architecture, etc. __________________
D.) (optional) In your estimation, how hard would it be to modify this workload to get it running on this product? Can you describe what would need to
@markvoelker
markvoelker / screenshot.png
Last active November 19, 2015 03:58
Non-OpenStack Content Leaking into Planet
There seems to be some non-OpenStack content from Citrix leaking into
planet.openstack.org lately. I think it's probably not intentional...it
appears that maybe blogs from a former employee (or two?) are somehow now
feeding general Citrix blog content back to Planet? Perhaps due to some
change on Citrix's blog site? I notice that John Garbutt's name and photo
are appearing before the articles. John is a former Citrix employee who
left over two and a half years ago, but his old Citrix blog still has an
entry in planet.ini:
https://github.com/openstack/openstack-planet/blob/master/planet.ini#L193-L196
@markvoelker
markvoelker / gist:09ecf36c3b38b333b692
Last active August 29, 2015 14:26
scoring script help output
mvoelker-mbpro:working_materials mvoelker$ ./tabulate_scores.py -h
usage: tabulate_scores.py [-h] [-j JSON_FILE_NAME] [-s SCORE_FILE_NAME]
[-t TEXT_OUTFILE_NAME] [-c CSV_OUTFILE_NAME]
Tabulate capability scores and write them to files.
This utility script tabulates scores from a DefCore scoring
worksheet based on the weights from a given Guideline JSON file.
It writes the scores in three formats:
@markvoelker
markvoelker / gist:cb218e9e9ba646005ae0
Last active August 29, 2015 14:26
scoring script console output
mvoelker-mbpro:working_materials mvoelker$ ./tabulate_scores.py
network-floating-ips-associate: 83
network-floating-ips-create: 83
network-floating-ips-update: 83
network-floating-ips-delete: 83
network-l2-create: 91
network-l2-delete: 91
network-l2-external: 0
network-l2-list: 91
network-l2-port: 91
@markvoelker
markvoelker / test_prad.sh
Last active August 29, 2015 14:04
test_prad
#!/bin/bash
cd /root
git clone -b icehouse https://github.com/pkilambi/puppet_openstack_builder
cd puppet_openstack_builder
cd install-scripts
sed -i 's/icehouse\/snapshots\/i\.0 main/icehouse-proposed main/g' cisco.install.sh
cd /root/puppet_openstack_builder/data/hiera_data/vendor
sed -i "s/pocket: '\/snapshots\/i.0'/pocket: '-proposed'/" cisco_coi_common.yaml
cd /root/puppet_openstack_builder/install-scripts
apt-get install -y puppet
@markvoelker
markvoelker / use_proposed_icehouse.sh
Last active August 29, 2015 14:03
use_proposed_icehouse.sh
#!/bin/bash
cd /root
git clone -b icehouse https://github.com/CiscoSystems/puppet_openstack_builder
cd puppet_openstack_builder
cd install-scripts
sed -i 's/icehouse\/snapshots\/i\.0 main/icehouse-proposed main/g' cisco.install.sh
cd /root/puppet_openstack_builder/data/hiera_data/vendor
sed -i "s/pocket: '\/snapshots\/i.0'/pocket: '-proposed'/" cisco_coi_common.yaml
cd /root/puppet_openstack_builder/install-scripts
@markvoelker
markvoelker / installme.sh
Last active August 29, 2015 13:57
Early i.0 install hackery
#!/bin/bash
wget http://openstack-repo.cisco.com/openstack/APT-GPG-KEY-Cisco
cat APT-GPG-KEY-Cisco|apt-key add -
cat > /etc/apt/sources.list.d/cisco-openstack-mirror_icehouse.list<<EOF
# cisco-openstack-mirror_icehouse
deb http://openstack-repo.cisco.com/openstack/cisco icehouse-proposed main
deb-src http://openstack-repo.cisco.com/openstack/cisco icehouse-proposed main
EOF
apt-get update
apt-get install puppet -y
@markvoelker
markvoelker / use_proposed.sh
Last active August 29, 2015 13:56
Use -proposed
#!/bin/bash
cd /root
git clone -b coi-development https://github.com/CiscoSystems/puppet_openstack_builder
cd puppet_openstack_builder
cd install-scripts
sed -i 's/havana main/havana-proposed main/g' cisco.install.sh
cd /root/puppet_openstack_builder/data/hiera_data/vendor
sed -i "s/pocket: ''/pocket: '-proposed'/" cisco_coi_common.yaml
cd /root/puppet_openstack_builder/install-scripts
@markvoelker
markvoelker / installme.sh
Last active August 29, 2015 13:56
Test coi pull
#!/bin/bash
wget http://openstack-repo.cisco.com/openstack/APT-GPG-KEY-Cisco
cat APT-GPG-KEY-Cisco|apt-key add -
cat > /etc/apt/sources.list.d/cisco-openstack-mirror_icehouse.list<<EOF
# cisco-openstack-mirror_icehouse
deb http://openstack-repo.cisco.com/openstack/cisco icehouse-proposed main
deb-src http://openstack-repo.cisco.com/openstack/cisco icehouse-proposed main
EOF
apt-get update
apt-get install puppet -y