Testcase files for Kubernetes Replicator https://github.com/mittwald/kubernetes-replicator
This file contains 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
--- a/report.c.orig 2014-09-15 13:19:51.000000000 +0200 | |
+++ b/report.c 2014-09-15 13:20:02.000000000 +0200 | |
@@ -334,7 +334,7 @@ | |
snprint_addr(name, sizeof(name), addr); | |
int last = net_last(at); | |
- if(!ipinfo_no) { | |
+ if(!ipinfo_nos) { | |
char* fmtinfo = fmt_ipinfo(addr); | |
if (fmtinfo != NULL) fmtinfo = trim(fmtinfo); |
This file contains 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
--- a/keychain 2010-05-07 19:24:17.000000000 +0200 | |
+++ b/keychain 2014-09-18 16:14:29.000000000 +0200 | |
@@ -735,7 +735,7 @@ | |
start_out=`ssh-agent` | |
elif [ "$start_prog" = gpg ]; then | |
if [ -n "${timeout}" ]; then | |
- start_gpg_timeout="--default-cache-ttl `expr $timeout \* 60`" | |
+ start_gpg_timeout="--default-cache-ttl `expr $timeout \* 60` --max-cache-ttl `expr $timeout \* 60`" | |
else | |
unset start_gpg_timeout |
This file contains 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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: echoserver | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: echoserver | |
namespace: echoserver |
docker run -it --rm -v $PWD:/app renovate/renovate:24.28.4 bash -c "cd /app && renovate-config-validator"
Validating renovate.json
Validating config.js
OK
docker run -it --rm -v $PWD:/app renovate/renovate:24.32.2 bash -c "cd /app && renovate-config-validator"
This file contains 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
# creates a silence in alertmanager that starts `now` and lasts for 10 minutes | |
- hosts: localhost | |
gather_facts: yes | |
tasks: | |
- set_fact: | |
start_datetime: "{{ ''| local_time_iso8601 }}" | |
future_datetime: "{{ ''|local_time_iso8601 | add_time_iso8601(minutes=10) }}" | |
- debug: | |
var: future_datetime |