Skip to content

Instantly share code, notes, and snippets.

View riuvshin's full-sized avatar
🏠
Working from home

Roman I. riuvshin

🏠
Working from home
View GitHub Profile
@riuvshin
riuvshin / bwg.go
Created March 18, 2019 14:27 — forked from maorfr/bwg.go
package utils
import (
"sync"
)
// BoundedWaitGroup implements a sized WaitGroup
type BoundedWaitGroup struct {
wg sync.WaitGroup
ch chan struct{}
@riuvshin
riuvshin / example-app.yaml
Created July 17, 2018 14:57 — forked from tylerjl/example-app.yaml
Example kubernetes-vault with vaultenv config
apiVersion: v1
kind: ConfigMap
metadata:
name: logstash-secrets
data:
logstash.secrets: |
ELASTICSEARCH_USERNAME=elasticsearch/production#username
ELASTICSEARCH_PASSWORD=elasticsearch/production#password
---
apiVersion: v1