Skip to content

Commit ddbe40e

Browse files
Reverting the namespace rename knative-monitoring (#486)
1 parent 56c3a0d commit ddbe40e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

install/Knative-with-OpenShift.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,9 @@ accounts istio will use:
144144
oc adm policy add-scc-to-user anyuid -z build-controller -n knative-build
145145
oc adm policy add-scc-to-user anyuid -z controller -n knative-serving
146146
oc adm policy add-scc-to-user anyuid -z autoscaler -n knative-serving
147-
oc adm policy add-scc-to-user anyuid -z kube-state-metrics -n knative-monitoring
148-
oc adm policy add-scc-to-user anyuid -z node-exporter -n knative-monitoring
149-
oc adm policy add-scc-to-user anyuid -z prometheus-system -n knative-monitoring
147+
oc adm policy add-scc-to-user anyuid -z kube-state-metrics -n monitoring
148+
oc adm policy add-scc-to-user anyuid -z node-exporter -n monitoring
149+
oc adm policy add-scc-to-user anyuid -z prometheus-system -n monitoring
150150
oc adm policy add-cluster-role-to-user cluster-admin -z build-controller -n knative-build
151151
oc adm policy add-cluster-role-to-user cluster-admin -z controller -n knative-serving
152152
```

install/scripts/knative-with-openshift.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ header_text "Setting up security policy for knative"
7878
oc adm policy add-scc-to-user anyuid -z build-controller -n knative-build
7979
oc adm policy add-scc-to-user anyuid -z controller -n knative-serving
8080
oc adm policy add-scc-to-user anyuid -z autoscaler -n knative-serving
81-
oc adm policy add-scc-to-user anyuid -z kube-state-metrics -n knative-monitoring
82-
oc adm policy add-scc-to-user anyuid -z node-exporter -n knative-monitoring
83-
oc adm policy add-scc-to-user anyuid -z prometheus-system -n knative-monitoring
81+
oc adm policy add-scc-to-user anyuid -z kube-state-metrics -n monitoring
82+
oc adm policy add-scc-to-user anyuid -z node-exporter -n monitoring
83+
oc adm policy add-scc-to-user anyuid -z prometheus-system -n monitoring
8484
oc adm policy add-cluster-role-to-user cluster-admin -z build-controller -n knative-build
8585
oc adm policy add-cluster-role-to-user cluster-admin -z controller -n knative-serving
8686

serving/accessing-logs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ start a local proxy with the following command:
1616
the Kibana UI is exposed only within the cluster.
1717

1818
* Navigate to the
19-
[Kibana UI](http://localhost:8001/api/v1/namespaces/knative-monitoring/services/kibana-logging/proxy/app/kibana).
19+
[Kibana UI](http://localhost:8001/api/v1/namespaces/monitoring/services/kibana-logging/proxy/app/kibana).
2020
*It might take a couple of minutes for the proxy to work*.
2121

2222
The Discover tab of the Kibana UI looks like this:

serving/installing-logging-metrics-traces.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ To configure and setup monitoring:
5151
reported `Running` or `Completed`:
5252

5353
```shell
54-
kubectl get pods --namespace knative-monitoring --watch
54+
kubectl get pods --namespace monitoring --watch
5555
```
5656

5757
```
@@ -90,7 +90,7 @@ for request traces.
9090
reasons, the Kibana UI is exposed only within the cluster.
9191

9292
- Navigate to the
93-
[Kibana UI](http://localhost:8001/api/v1/namespaces/knative-monitoring/services/kibana-logging/proxy/app/kibana).
93+
[Kibana UI](http://localhost:8001/api/v1/namespaces/monitoring/services/kibana-logging/proxy/app/kibana).
9494
_It might take a couple of minutes for the proxy to work_.
9595

9696
- Within the "Configure an index pattern" page, enter `logstash-*` to
@@ -135,7 +135,7 @@ To configure and setup monitoring:
135135
reported `Running` or `Completed`:
136136
137137
```shell
138-
kubectl get pods --namespace knative-monitoring --watch
138+
kubectl get pods --namespace monitoring --watch
139139
```
140140
141141
```

serving/samples/telemetry-go/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using the default installation.
1313
installed.
1414
2. Check if Knative monitoring components are installed:
1515
```
16-
kubectl get pods --namespace knative-monitoring
16+
kubectl get pods --namespace monitoring
1717
```
1818
* If pods aren't found, install [Knative monitoring component](../../installing-logging-metrics-traces.md).
1919
3. Install [Docker](https://docs.docker.com/get-started/#prepare-your-docker-environment).

serving/setting-up-a-logging-plugin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ is in process to get rid of the sidecar. The steps to configure are:
4343
1. Replace `logging.fluentd-sidecar-output-config` flag in
4444
[config-observability](https://github.com/knative/serving/blob/master/config/config-observability.yaml) with the
4545
desired output configuration. **NOTE**: The Fluentd DaemonSet is in
46-
`knative-monitoring` namespace while the Fluentd sidecar is in the namespace same with
46+
`monitoring` namespace while the Fluentd sidecar is in the namespace same with
4747
the app. There may be small differences between the configuration for DaemonSet
4848
and sidecar even though the desired backends are the same.
4949
1. Replace `logging.fluentd-sidecar-image` flag in

0 commit comments

Comments
 (0)