Important
These benchmark results are outdated.
Check out our blog post for the latest benchmark results.
- c5.xlarge AWS instance: 4 CPUs, 8 GB RAM
| .terraform/ | |
| *.pem | |
| *.tf | |
| *.tfstate | |
| *.yaml | |
| *.backup | |
| istio-*/ | |
| cert-manager-*/ | |
| *.swp | |
| env |
Important
These benchmark results are outdated.
Check out our blog post for the latest benchmark results.
| #!/usr/bin/env bash | |
| # Example: | |
| # ./find-ecr-image.sh foo/bar mytag | |
| if [[ $# -lt 2 ]]; then | |
| echo "Usage: $( basename $0 ) <repository-name> <image-tag>" | |
| exit 1 | |
| fi | |
| IMAGE_META="$( aws ecr describe-images --repository-name=$1 --image-ids=imageTag=$2 2> /dev/null )" |
| Some Jenkinsfile examples |
This text is the section about OS X Yosemite (which also works for macOS Sierra) from https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/#mac-os-x
The last time i visited this link it was dead (403), so I cloned it here from the latest snapshot in Archive.org's Wayback Machine https://web.archive.org/web/20170523131633/https://docs.basho.com/riak/kv/2.1.4/using/performance/open-files-limit/
| #!groovy | |
| import groovy.json.JsonOutput | |
| import groovy.json.JsonSlurper | |
| def label = "mypod-${UUID.randomUUID().toString()}" | |
| podTemplate(label: label, yaml: """ | |
| spec: | |
| containers: | |
| - name: mvn | |
| image: maven:3.3.9-jdk-8 |
| #!/bin/bash | |
| name=$RANDOM | |
| url='http://localhost:9093/api/v1/alerts' | |
| echo "firing up alert $name" | |
| # change url o | |
| curl -XPOST $url -d "[{ | |
| \"status\": \"firing\", |
| #!/bin/bash -xe | |
| ################################################################################## | |
| function usage(){ | |
| echo "usage: $(basename $0) /path/to/jenkins_home jenkins.tar.gz" | |
| } | |
| function error_exit | |
| { |
| AMS1 | Amsterdam, The Netherlands | Europe | |
| AMS50 | Amsterdam, The Netherlands | Europe | |
| ARN1 | Stockholm, Sweden | Europe | |
| ATL50 | Atlanta, Georgia | United States | |
| ATL52 | Atlanta, Georgia | United States | |
| BOM2 | Mumbai, India | India | |
| BOM51 | Mumbai, India | India | |
| CDG3 | Paris, France | Europe | |
| CDG50 | Paris, France | Europe | |
| DEL51 | Paris, France | Europe |
| DROP FUNCTION IF EXISTS `slugify`; | |
| DELIMITER ;; | |
| CREATE DEFINER=`gaincity`@`localhost` | |
| FUNCTION `slugify`(dirty_string varchar(200)) | |
| RETURNS varchar(200) CHARSET latin1 | |
| DETERMINISTIC | |
| BEGIN | |
| DECLARE x, y , z Int; | |
| Declare temp_string, new_string VarChar(200); | |
| Declare is_allowed Bool; |