bitnami-containers/bitnami/grafana/test.yaml

39 lines
680 B
YAML

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