Created
October 31, 2022 08:11
-
-
Save zulhfreelancer/2832e557b46936523b653f3088eed214 to your computer and use it in GitHub Desktop.
Dummy / fake Prometheus exporter for Kubernetes testing
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: Namespace | |
metadata: | |
name: dummy-exporter | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: dummy-exporter | |
name: dummy-exporter | |
namespace: dummy-exporter | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: dummy-exporter | |
template: | |
metadata: | |
labels: | |
app: dummy-exporter | |
spec: | |
containers: | |
- image: kobtea/dummy_exporter:latest | |
imagePullPolicy: Always | |
name: dummy-exporter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment