mirror of https://github.com/knative/docs.git
Fix broken formatting in Installing guide (#4917)
* Task1 done “Installing Istio without sidecar injection(Recommended default installation)” added a space before the opening parenthesis. * Task 2 Correct formatting uses the opening tip tag (!!! tip), followed by a new line, and then 4 spaces before the tip text. * Task 4 Task fixed: https://knative.dev/docs/install/uninstall/#uninstalling-optional-serving-extensions Broken numbering in the "TLS with cert-manager" tab. To fix, check for the correct indentation of the code snippet (8 spaces). * Task 5 Task fixed: https://knative.dev/docs/install/uninstall/#uninstalling-optional-eventing-extensions broken numbering in Apace Kafka sink tab. To fix, check for the correct indentation of the code snippet (8 spaces). * Task 3 Task fixed: https://knative.dev/docs/install/upgrade/upgrade-installation-with-operator/#rollback-to-an-earlier-version tab formatting is broken. To fix, indent the lines 126-146 and 150-170 by an extra 4 spaces. * changed the spacing according to the suggestion Co-authored-by: Samia Nneji <snneji@vmware.com> Co-authored-by: Samia Nneji <snneji@vmware.com>
This commit is contained in:
parent
670d4c3c33
commit
a1dcbc66f1
|
@ -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
|
||||
|
||||
|
|
|
@ -123,9 +123,9 @@ 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
|
||||
|
@ -138,7 +138,7 @@ To rollback to a previous version of Knative Serving:
|
|||
```
|
||||
Where `<previous-version>` 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 <filename>.yaml
|
||||
|
@ -147,9 +147,9 @@ To rollback to a previous version of Knative Serving:
|
|||
|
||||
=== "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
|
||||
|
@ -162,7 +162,7 @@ To rollback to a previous version of Knative Eventing:
|
|||
```
|
||||
Where `<previous-version>` 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 <filename>.yaml
|
||||
|
|
Loading…
Reference in New Issue