Skip to content

Instantly share code, notes, and snippets.

View edbighead's full-sized avatar
🏊‍♂️
pools are perfect for holding water

Ed Laur edbighead

🏊‍♂️
pools are perfect for holding water
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<svg fill="none" viewBox="0 0 800 400" width="800" height="400" xmlns="http://www.w3.org/2000/svg">
<foreignObject width="100%" height="100%">
<div xmlns="http://www.w3.org/1999/xhtml">
<style>
@keyframes rotate {
0% {
transform: rotate(3deg);
}
100% {
transform: rotate(-3deg);
apiVersion: v1
kind: Pod
metadata:
name: busybox
namespace: argo-events
spec:
containers:
- name: busybox
image: busybox:1.28
command:
[bitbucket]
repo=repo1,repo2
users=user1,user2
url=https://your.bitbucket.com
owner=REPOOWNER
[branch]
name=master
[pattern]
import requests
import os
import argparse
import configparser
config = configparser.ConfigParser()
config.read('config.ini')
repoList = config['bitbucket']['repo'].split(",")
usersList = config['bitbucket']['users'].split(",")
branch = config['branch']['name']