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

Fixing all instances and image names #467

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all 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/guide/k8s/argocd-cli.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Argo CD advanced

Our previous guide provided a detailed tutorial on [deploying and managing applications with ArgoCD and Runme.](https://docs.runme.dev/guide/k8s/agrocd)
Our previous guide provided a detailed tutorial on [deploying and managing applications with ArgoCD and Runme.](https://docs.runme.dev/guide/k8s/argocd)

In this guide, we will take it a step higher by providing an advanced tutorial on how to use Argo CD with the Runme extension in VS Code. The best part of this integration is that everything can be done right inside your Markdown file without switching between terminals.

## **Prerequisites**

To follow up on this tutorial, ensure you have the following:

> 💡 Ensure you have installed the necessary tools as indicated in the [beginner guide](https://docs.runme.dev/guide/k8s/agrocd#prerequisites)
> 💡 Ensure you have installed the necessary tools as indicated in the [beginner guide](https://docs.runme.dev/guide/k8s/argocd#prerequisites)

**Basic Requirement**

Expand Down Expand Up @@ -84,7 +84,7 @@ Get Argo CD Pods in the Argo CD namespace
kubectl get po -n argocd
```

![Agro CD pods](/img/guide-page/runme-argo-pods.png)
![argo CD pods](/img/guide-page/runme-argo-pods.png)

Port forwarding an Argo CD Server is a practical and secure way to access the Argo CD web UI for setup, development, and general use without exposing it to external networks.

Expand All @@ -94,7 +94,7 @@ To do this, run the command below. You can run your code cell as a [background
kubectl port-forward svc/argocd-server -n argocd 8080:443
```

![Background process](/img/guide-page/runme-background-agrocdcli.png)
![Background process](/img/guide-page/runme-background-argocdcli.png)

**Retrieve Initial Admin Password**

Expand Down
6 changes: 3 additions & 3 deletions docs/guide/k8s/agrocd.md → docs/guide/k8s/argocd.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ Wait until all pods are running.
kubectl -n argocd get pods
```

![pod-image](/img/guide-page/agrocd-pods.png)
![pod-image](/img/guide-page/argocd-pods.png)

Next, get the initial admin password. To do this, execute the command below:

Expand All @@ -177,7 +177,7 @@ kubectl -n argocd get secrets argocd-initial-admin-secret \
-o jsonpath='{.data.password}' | base64 -d
```

![argo cd password](/img/guide-page/agrocd-passwords.png)
![argo cd password](/img/guide-page/argocd-passwords.png)

Forward the port 80 of the argocd-server service to `localhost:8080` using kubectl.

Expand All @@ -187,7 +187,7 @@ kubectl -n argocd port-forward service/argocd-server 8080:80

With Runme’s background process feature, you can run your code cells as a [background task](/configuration/cell-level#background-task). This will allow you to execute other tasks within the runbook without waiting for the initial task to complete.

![port- forwarding](/img/guide-page/agrocd-portforwardings.png)
![port- forwarding](/img/guide-page/argocd-portforwardings.png)

After executing the port-forward command, you'll be able to access the Argo CD web interface locally by browsing http://localhost:8080.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/k8s/istio.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ kind delete cluster --name my-cluster

Some other guides you may want to explore:

[Deploying and Managing Applications with Runme and Argo CD](/guide/k8s/agrocd)
[Deploying and Managing Applications with Runme and Argo CD](/guide/k8s/argocd)

[Advanced Guide to Argo CD and Runme](/guide/k8s/argocd-cli)

Expand Down
2 changes: 1 addition & 1 deletion old-sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<priority>0.5</priority>
</url>
<url>
<loc>https://docs.runme.dev/guide/agrocd</loc>
<loc>https://docs.runme.dev/guide/argocd</loc>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
</url>
Expand Down