Merge "[k8s-fedora-atomic] Use ClusterIP for prometheus service"

This commit is contained in:
Zuul 2019-03-01 02:36:49 +00:00 committed by Gerrit Code Review
commit e256f87d1a
2 changed files with 9 additions and 4 deletions

View File

@ -197,12 +197,11 @@ metadata:
spec:
selector:
app: prometheus
type: NodePort
type: ClusterIP
ports:
- name: prometheus
protocol: TCP
port: 9090
nodePort: 30900
---
apiVersion: extensions/v1beta1
kind: Deployment
@ -307,11 +306,10 @@ metadata:
name: grafana
namespace: prometheus-monitoring
spec:
type: "NodePort"
type: ClusterIP
ports:
- port: 3000
targetPort: 3000
nodePort: 30603
selector:
grafana: "true"
---

View File

@ -0,0 +1,7 @@
---
features:
- |
Use ClusterIP as the default Prometheus service type, because the NodePort
type service has the requirement that extra security group rule is properly
configured. Kubernetes cluster administrator could still change the service
type after the cluster creation.