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
{ | |
"apiVersion": "3.1.3+cda805f", | |
"swaggerVersion": "1.2", | |
"apis": [ | |
{ | |
"path": "/streams/{streamid}/alerts/{alertId}/history", | |
"name": "AlarmCallbackHistories", | |
"description": "Manage stream alarm callback histories" | |
}, | |
{ |
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 | |
# This script generates random names. Inspired by https://github.com/moby/moby/blob/master/pkg/namesgenerator/names-generator.go | |
namesleftpart[0]="admiring" | |
namesleftpart[1]="adoring" | |
namesleftpart[2]="affectionate" | |
namesleftpart[3]="agitated" | |
namesleftpart[4]="amazing" | |
namesleftpart[5]="angry" | |
namesleftpart[6]="awesome" |
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
terraform { | |
required_providers { | |
coder = { | |
source = "coder/coder" | |
version = "~> 0.3.1" | |
} | |
docker = { | |
source = "kreuzwerker/docker" | |
version = "2.16.0" | |
} |
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
--- | |
stages: | |
- tpl_test | |
- tpl_sync | |
integration_tests: | |
stage: tpl_test | |
image: | |
name: ubuntu:20.04 |