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
package utils | |
import ( | |
"sync" | |
) | |
// BoundedWaitGroup implements a sized WaitGroup | |
type BoundedWaitGroup struct { | |
wg sync.WaitGroup | |
ch chan struct{} |
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: v1 | |
kind: ConfigMap | |
metadata: | |
name: logstash-secrets | |
data: | |
logstash.secrets: | | |
ELASTICSEARCH_USERNAME=elasticsearch/production#username | |
ELASTICSEARCH_PASSWORD=elasticsearch/production#password | |
--- | |
apiVersion: v1 |