select distinct t.name , p.required , property , param_kind, param_type
from properties p , types t
where (t.name like '%PodSpec' or p.param_kind like '%PodSpec')
-- and p.param_kind like 'io%'
-- and p.required
- How can we declaritively define behaviours in a standard fashion?
- Behaviours as Gherkin .feature files
- Complex Storytelling made Possible
- Metadata to match existing tests
Requirement: A MAP
that enumerates the State Space - Definition of Done
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
# For the benefit of emacs users: -*- shell-script -*- | |
########################### | |
# xbindkeys configuration # | |
########################### | |
# | |
# Version: 1.8.6 | |
# | |
# If you edit this file, do not forget to uncomment any lines | |
# that you change. | |
# The pound(#) symbol may be used anywhere for comments. |
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
FROM gitlab/gitlab-ce:10.7.3-ce.0 | |
COPY *.patch /opt/gitlab/embedded/service/gitlab-rails/ | |
RUN apt-get update ; apt-get install -y patch | |
# Allows http urls for .gitlab-ci.yml | |
# This patch may need some work cleanly apply with recent versions | |
RUN cd /opt/gitlab/embedded/service/gitlab-rails ; \ | |
patch -p1 < ci_yaml_http.patch | |
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 | |
set -x | |
set -e | |
MASTER_NODE=$(gcloud compute instances list | grep master | awk '{print $1}') | |
if echo $1 | grep / ; then | |
REPO=$(echo $1 | awk -F/ '{print $1}') | |
KAPP=$(echo $1 | awk -F/ '{print $2}') | |
fi | |
kubectl create ns $KAPP | |
helm install $REPO/$KAPP \ |
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 -x | |
set -euo pipefail | |
echo "Building conformance image..." | |
echo | |
APT_PACKAGES="rsync" | |
# build docker image of repository | |
docker build -t "${IMAGE_NAME}:${IMAGE_TAG}" - <<EOF | |
FROM golang:1.8 |
The new docker-ce repos don't have the old versions. However the old docker-engine repos still contain versions back to 1.5.0
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F76221572C52609D
cat > /etc/apt/sources.list.d/docker.list <<EOF
deb [arch=amd64] https://apt.dockerproject.org/repo debian-jessie main
EOF