Skip to content

Commit

Permalink
docs(website): fixed comments
Browse files Browse the repository at this point in the history
Signed-off-by: Shipra Singh <[email protected]>
  • Loading branch information
shipsing committed Sep 19, 2024
1 parent fe9e9a5 commit 26636e2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions website/tutorial/deploying-a-kubernetes-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tags: [podman-desktop, deploying-a-kubernetes-application]

# Deploying a Kubernetes application

This tutorial covers the following end-to-end tasks you require to deploy an application in a Kubernetes cluster:
This tutorial covers the following end-to-end tasks required to deploy an application in a Kubernetes cluster:

- Set the Kubernetes context
- Creating a deployment
Expand All @@ -18,9 +18,9 @@ If you have multiple Kubernetes contexts, you must set the correct context in wh

## Before you begin

- [Installed Podman Desktop application](/docs/installation)
- [A Podman machine](/docs/podman/creating-a-podman-machine)
- A running Kubernetes cluster
- [Installed Podman Desktop application](/docs/installation).
- [A Podman machine](/docs/podman/creating-a-podman-machine).
- [A running Kubernetes cluster](/docs/kind/creating-a-kind-cluster).
- A deployment YAML configuration for use. Create a `Deployment` file using the following code, if you do not have one on your machine:

```yaml
Expand All @@ -42,7 +42,7 @@ spec:
- name: nginx-container
image: nginx:latest
ports:
- containerPort: 80
- containerPort: 8080
```
This YAML configuration creates a deployment running three NGINX pods.
Expand All @@ -60,10 +60,10 @@ spec:
ports:
- protocol: TCP
port: 80
targetPort: 9376
targetPort: 8080
```

This YAML configuration creates a new service named `my-service` with the default ClusterIP service type. The service listens for client requests on port `80` and then forwards those requests to port `9376` on the container.
This YAML configuration creates a new service named `my-service` with the default ClusterIP service type. The service listens for client requests on port `80` and then forwards those requests to port `8080` on the container.

## Setting the Kubernetes context

Expand Down
4 changes: 2 additions & 2 deletions website/tutorial/running-a-kubernetes-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ tags: [podman-desktop, running-a-kubernetes-cluster, set-up-a-cluster]

# Running a Kubernetes cluster

This tutorial covers the following end-to-end tasks you require to run a Kubernetes cluster with the help of an extension:
This tutorial covers the following end-to-end tasks required to run a Kubernetes cluster with the help of an extension:

- Installing the extension
- Installing CLI on your local machine
- Applicable on Winodws: Configure Podman on WSL
- Applicable on Windows: Configure Podman on WSL
- Creating and running a Kubernetes cluster

You can use extensions, such as Kind, MiniKube, and others to start a local Kubernetes development cluster. When you have a running Kubernetes cluster, you can easily develop and test Kubernetes applications before deploying them to production. This tutorial focuses on creating a Kubernetes cluster using the Minikube extension.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tags: [podman-desktop, running-a-pod-from-docker-file, running-a-pod-from-contai

# Running a pod using a container or docker file

This tutorial covers the following end-to-end tasks a user requires to run a pod from a container or docker file:
This tutorial covers the following end-to-end tasks required to run a pod from a container or docker file:

- Building an image
- Creating a container
Expand Down Expand Up @@ -44,8 +44,8 @@ When creating a container, you can set the following configurations:

## Before you begin

- [Installed Podman Desktop application](/docs/installation)
- [A Podman machine](/docs/podman/creating-a-podman-machine)
- [Installed Podman Desktop application](/docs/installation).
- [A Podman machine](/docs/podman/creating-a-podman-machine).
- A docker or container file to use. Create a docker file using the following code, if you do not have one on your machine:

```dockerfile
Expand Down

0 comments on commit 26636e2

Please sign in to comment.