mirror of https://github.com/easzlab/kubeasz.git
72 lines
2.2 KiB
YAML
72 lines
2.2 KiB
YAML
---
|
|
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: monitoring-grafana
|
|
namespace: kube-system
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: grafana
|
|
template:
|
|
metadata:
|
|
labels:
|
|
task: monitoring
|
|
k8s-app: grafana
|
|
spec:
|
|
containers:
|
|
- name: grafana
|
|
#image: gcr.io/google_containers/heapster-grafana-amd64:v4.2.0
|
|
image: mirrorgooglecontainers/heapster-grafana-amd64:v4.4.3
|
|
ports:
|
|
- containerPort: 3000
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /var
|
|
name: grafana-storage
|
|
env:
|
|
- name: INFLUXDB_HOST
|
|
value: monitoring-influxdb
|
|
- name: GF_SERVER_HTTP_PORT
|
|
value: "3000"
|
|
# The following env variables are required to make Grafana accessible via
|
|
# the kubernetes api-server proxy. On production clusters, we recommend
|
|
# removing these env variables, setup auth for grafana, and expose the grafana
|
|
# service using a LoadBalancer or a public IP.
|
|
- name: GF_AUTH_BASIC_ENABLED
|
|
value: "false"
|
|
- name: GF_AUTH_ANONYMOUS_ENABLED
|
|
value: "true"
|
|
- name: GF_AUTH_ANONYMOUS_ORG_ROLE
|
|
value: Admin
|
|
- name: GF_SERVER_ROOT_URL
|
|
# If you're only using the API Server proxy, set this value instead:
|
|
value: /api/v1/namespaces/kube-system/services/monitoring-grafana/proxy/
|
|
#value: /
|
|
volumes:
|
|
- name: grafana-storage
|
|
emptyDir: {}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
labels:
|
|
# For use as a Cluster add-on (https://github.com/kubernetes/kubernetes/tree/master/cluster/addons)
|
|
# If you are NOT using this as an addon, you should comment out this line.
|
|
kubernetes.io/cluster-service: 'true'
|
|
kubernetes.io/name: monitoring-grafana
|
|
name: monitoring-grafana
|
|
namespace: kube-system
|
|
spec:
|
|
# In a production setup, we recommend accessing Grafana through an external Loadbalancer
|
|
# or through a public IP.
|
|
# type: LoadBalancer
|
|
# You could also use NodePort to expose the service at a randomly-generated port
|
|
# type: NodePort
|
|
ports:
|
|
- port: 80
|
|
targetPort: 3000
|
|
selector:
|
|
k8s-app: grafana
|