Skip to content

Instantly share code, notes, and snippets.

View dymurray's full-sized avatar

Dylan Murray dymurray

  • Red Hat
  • Raleigh, NC
View GitHub Profile
Title: ACCURACY OF THREE-GYRO GUNSIGHT CALIBRATION FOR CALIBER 0.50 GUNFIRE,, ID: AD0000042
Title: ACCURACY OF THREE-GYRO ROCKETSIGHT CALIBRATION FOR 2.75 INCH FFAR,, ID: AD0000043
Title: DEVELOPMENT OF A FUNCTIONAL KNOWLEDGE TEST BATTERY FOR THE MEASUREMENT OF PROFICIENCY OF RADAR MECHANICS, ID: AD0000141
Title: DEVELOPMENT PROGRAM FOR AN AUTOMATIC PILOT FOR HIGH PERFORMANCE AIRCRAFT., ID: AD0000288
Title: THE ELECTRICAL STABILITY OF HIGH CURRENT ARCS IN AIR AND IN CONTROLLED GASEOUS MIXTURES, ID: AD0001765
Title: THE USE OF PRACTICAL PERFORMANCE TESTS IN THE MEASUREMENT OF SHIPBOARD PERFORMANCE OF ENLISTED NAVAL PERSONNEL, ID: AD0003318
Title: THE INFLUENCE OF EDDY CURRENTS UPON THE PERFORMANCE OF A-C AND D-C CONTROLLED MAGNETIC AMPLIFIERS, ID: AD0004052
Title: A COAXIAL MAGIC-T, ID: AD0004104
Title: THE MILITARY ROLE OF INFRARED DETECTION. VOLUME 1. GENERAL EVALUATION, ID: AD0004716
Title: STATUS OF WORK FEBRUARY 1, 1952, ID: AD0005194
{
"services": [
{
"name": "rhscl-postgresql-apb",
"id": "8a049637-8c70-4434-993c-a15c3d310513",
"description": "SCL PostgreSQL apb implementation",
"tags": [
"databases",
"postgresql"
],
{
"services": [
{
"name": "etherpad-apb",
"id": "6f180cb4-30d4-4a8a-975e-e91ca7ed2ed9",
"description": "Note taking web application",
"bindable": true,
"metadata": {
"dependencies": [
"docker.io/mariadb:latest",
apiVersion: servicecatalog.k8s.io/v1alpha1
bindable: false
brokerName: ansible-service-broker
description: This APB deploys RocketChat backed by MongoDB
externalID: dc2189ac-0e42-4523-a8c2-0a9b9ba51d05
externalMetadata:
dependencies:
- rocket.chat:latest
- mongo:3.2
displayName: RocketChat (APB)
apiVersion: v1
items:
- apiVersion: servicecatalog.k8s.io/v1alpha1
bindable: true
brokerName: ansible-service-broker
description: Note taking web application
externalID: 6f180cb4-30d4-4a8a-975e-e91ca7ed2ed9
externalMetadata:
dependencies:
- docker.io/mariadb:latest
FROM centos:7
RUN useradd -ms /bin/bash lounge
WORKDIR /home/lounge
RUN yum -y install gcc-c++ make
RUN curl -sL https://rpm.nodesource.com/setup_6.x | bash -
RUN yum -y install nodejs git
RUN git clone https://github.com/thelounge/lounge
WORKDIR /home/lounge/lounge
FROM centos:latest
MAINTAINER Vessel Maintainers
ENV USER_NAME=www-data \
USER_UID=1001 \
BASE_DIR=/home/www-data
ENV HOME=${BASE_DIR}
RUN curl https://copr.fedorainfracloud.org/coprs/g/ansible-service-broker/ansible-service-broker-latest/repo/epel-7/group_ansible-service-broker-ansible-service-broker-latest-epel-7.repo -o /etc/yum.repos.d/asb.repo
#!/bin/bash
# Example for the Docker Hub V2 API
# Returns all images and tags associated with a Docker Hub organization account.
# Requires 'jq': https://stedolan.github.io/jq/
# set username, password, and organization
# NOTE: We're expecting to break the dependency upon this script soon.
- hosts: localhost
tasks:
- name: "Generate keycloak auth token"
uri:
url: "http://localhost:8545"
method: POST
body: "{\"jsonrpc\":\"2.0\",\"method\":\"eth_accounts\",\"params\":[],\"id\":1}"
validate_certs: no
register: response
until: response.status == 200
#!/bin/sh
for repo in rhscl-postgresql-apb mediawiki123-apb jenkins-apb manageiq-apb wordpress-ha-apb thelounge-apb rocketchat-apb rhscl-mariadb-apb rds-postgres-apb pyzip-demo-apb pyzip-demo-db-apb nginx-apb hello-world-db-apb hello-world-apb hastebin-apb etherpad-apb rhscl-mysql-apb; do
cd $repo && git add . && git commit -m "Bug 1498185 - Move version label onto APB spec"; cd ..
done