mirror of
https://github.com/bitnami/containers.git
synced 2026-03-17 14:57:40 +08:00
39 lines
752 B
YAML
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-apache-exporter
|
|
name: test-apache-exporter
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: test-apache-exporter
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: test-apache-exporter
|
|
spec:
|
|
containers:
|
|
- image: bitnami/apache-exporter
|
|
name: apache-exporter
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
app: test-apache-exporter
|
|
name: test-apache-exporter
|
|
spec:
|
|
ports:
|
|
- port: 9117
|
|
protocol: TCP
|
|
targetPort: 9117
|
|
selector:
|
|
app: test-apache-exporter
|
|
sessionAffinity: None
|
|
type: ClusterIP
|