Files
containers/bitnami/mysqld-exporter/test.yaml
2019-07-22 14:54:24 +00:00

39 lines
752 B
YAML

## This is test deployment for Kubernetes platforms.
## This is _not_ intended to be used in production.
##
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
app: test-mysqld-exporter
name: test-mysqld-exporter
spec:
replicas: 1
selector:
matchLabels:
app: test-mysqld-exporter
template:
metadata:
labels:
app: test-mysqld-exporter
spec:
containers:
- image: bitnami/mysqld-exporter
name: mysqld-exporter
---
apiVersion: v1
kind: Service
metadata:
labels:
app: test-mysqld-exporter
name: test-mysqld-exporter
spec:
ports:
- port: 9104
protocol: TCP
targetPort: 9104
selector:
app: test-mysqld-exporter
sessionAffinity: None
type: ClusterIP