Is it possible for prometheus / operator to monitor and collect metrics from different namespaces? If so what should I change to get this behaviour?
# Default Namespace
## Operator
## Prometheus
## Example app
# Monitoring Namespace
kubectl create namespace monitoring
## Operator
kubectl --namespace monitoring create -f example/rbac/prometheus-operator/prometheus-operator-service-account.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus-operator/prometheus-operator-cluster-role.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus-operator/prometheus-operator-cluster-role-binding.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus-operator/prometheus-operator-deployment.yaml
## Prometheus
kubectl --namespace monitoring create -f example/rbac/prometheus/prometheus-service-account.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus/prometheus-cluster-role.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus/prometheus-cluster-role-binding.yaml
kubectl --namespace monitoring create -f example/rbac/prometheus/prometheus.yaml
## Example app
kubectl create -f example/user-guides/getting-started/example-app-deployment.yaml
kubectl create -f example/user-guides/getting-started/example-app-service-monitor.yaml
kubectl create -f example/user-guides/getting-started/example-app-service.yaml