diff --git a/docs/install/installing-istio.md b/docs/install/installing-istio.md index 30f1ea1093..3aa05bce22 100644 --- a/docs/install/installing-istio.md +++ b/docs/install/installing-istio.md @@ -35,7 +35,7 @@ cover a few useful Istio configurations and their benefits. You can install Istio with or without a service mesh: -- [Installing Istio without sidecar injection](#installing-istio-without-sidecar-injection)(Recommended +- [Installing Istio without sidecar injection](#installing-istio-without-sidecar-injection) (Recommended default installation) - [Installing Istio with sidecar injection](#installing-istio-with-sidecar-injection) @@ -159,9 +159,9 @@ all of the pods show a `STATUS` of `Running` or `Completed`: ```bash kubectl get pods --namespace istio-system ``` - -> Tip: You can append the `--watch` flag to the `kubectl get` commands to view -> the pod status in realtime. You use `CTRL + C` to exit watch mode. +!!! tip + You can append the `--watch` flag to the `kubectl get` commands to view + the pod status in realtime. You use `CTRL + C` to exit watch mode. ### Configuring DNS diff --git a/docs/install/uninstall.md b/docs/install/uninstall.md index f04fc51196..49b7e46f62 100644 --- a/docs/install/uninstall.md +++ b/docs/install/uninstall.md @@ -31,9 +31,9 @@ Uninstall any Serving extensions you have installed by performing the steps in t 1. Uninstall the component that integrates Knative with cert-manager: - ```bash - kubectl delete -f {{ artifact( repo="net-certmanager", file="release.yaml") }} - ``` + ```bash + kubectl delete -f {{ artifact( repo="net-certmanager", file="release.yaml") }} + ``` 1. Optional: if you no longer need cert-manager, uninstall it by following the steps in the [cert-manager documentation](https://cert-manager.io/docs/installation/uninstall/kubernetes/). @@ -133,15 +133,15 @@ Uninstall any Eventing extensions you have installed by following the relevant p 1. Uninstall the Kafka Sink data plane: - ```bash - kubectl delete -f {{ artifact(org="knative-sandbox", repo="eventing-kafka-broker", file="eventing-kafka-sink.yaml") }} - ``` + ```bash + kubectl delete -f {{ artifact(org="knative-sandbox", repo="eventing-kafka-broker", file="eventing-kafka-sink.yaml") }} + ``` 1. Uninstall the Kafka controller: - ```bash - kubectl delete -f {{ artifact(org="knative-sandbox", repo="eventing-kafka-broker", file="eventing-kafka-controller.yaml") }} - ``` + ```bash + kubectl delete -f {{ artifact(org="knative-sandbox", repo="eventing-kafka-broker", file="eventing-kafka-controller.yaml") }} + ``` diff --git a/docs/install/upgrade/upgrade-installation-with-operator.md b/docs/install/upgrade/upgrade-installation-with-operator.md index df612f42e4..081f79c31c 100644 --- a/docs/install/upgrade/upgrade-installation-with-operator.md +++ b/docs/install/upgrade/upgrade-installation-with-operator.md @@ -123,48 +123,48 @@ If the upgrade fails, you can rollback to restore your Knative to the previous v === "Knative Serving" -To rollback to a previous version of Knative Serving: + To rollback to a previous version of Knative Serving: -1. Create a YAML file containing the following: + 1. Create a YAML file containing the following: - ```yaml - apiVersion: operator.knative.dev/v1alpha1 - kind: KnativeServing - metadata: - name: knative-serving - namespace: knative-serving - spec: - version: "" - ``` - Where `` is the Knative version that you want to downgrade to. + ```yaml + apiVersion: operator.knative.dev/v1alpha1 + kind: KnativeServing + metadata: + name: knative-serving + namespace: knative-serving + spec: + version: "" + ``` + Where `` is the Knative version that you want to downgrade to. -1. Apply the YAML file by running the command: + 1. Apply the YAML file by running the command: - ```bash - kubectl apply -f .yaml - ``` - Where `` is the name of the file you created in the previous step. + ```bash + kubectl apply -f .yaml + ``` + Where `` is the name of the file you created in the previous step. === "Knative Eventing" -To rollback to a previous version of Knative Eventing: + To rollback to a previous version of Knative Eventing: -1. Create a YAML file containing the following: + 1. Create a YAML file containing the following: - ```yaml - apiVersion: operator.knative.dev/v1alpha1 - kind: KnativeEventing - metadata: - name: knative-eventing - namespace: knative-eventing - spec: - version: "" - ``` - Where `` is the Knative version that you want to downgrade to. + ```yaml + apiVersion: operator.knative.dev/v1alpha1 + kind: KnativeEventing + metadata: + name: knative-eventing + namespace: knative-eventing + spec: + version: "" + ``` + Where `` is the Knative version that you want to downgrade to. -1. Apply the YAML file by running the command: + 1. Apply the YAML file by running the command: - ```bash - kubectl apply -f .yaml - ``` - Where `` is the name of the file you created in the previous step. + ```bash + kubectl apply -f .yaml + ``` + Where `` is the name of the file you created in the previous step.