Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken formatting in Installing guide #4917

Merged
merged 6 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/install/installing-istio.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
> 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.
Subhasish-Behera marked this conversation as resolved.
Show resolved Hide resolved

### Configuring DNS

Expand Down
18 changes: 9 additions & 9 deletions docs/install/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down Expand Up @@ -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") }}
```



Expand Down
68 changes: 34 additions & 34 deletions docs/install/upgrade/upgrade-installation-with-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: "<previous-version>"
```
Where `<previous-version>` 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: "<previous-version>"
```
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
```
Where `<filename>` is the name of the file you created in the previous step.
```bash
kubectl apply -f <filename>.yaml
```
Where `<filename>` 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: "<previous-version>"
```
Where `<previous-version>` 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: "<previous-version>"
```
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
```
Where `<filename>` is the name of the file you created in the previous step.
```bash
kubectl apply -f <filename>.yaml
```
Where `<filename>` is the name of the file you created in the previous step.