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

Update the Star Wars demo app URL #1677

Merged
merged 1 commit into from
Oct 30, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/en/docs/getting-started/install-k8s.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To use our [demo
application](https://docs.cilium.io/en/v1.11/gettingstarted/http/#deploy-the-demo-application)

```shell-session
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.11/examples/minikube/http-sw-app.yaml
kubectl create -f {{< demo-app-url >}}
```

Before going forward, verify that all pods are up and running - it might take
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The main advantages of monitoring at the kernel layer compared to the [system ca
First, verify that your k8s environment is all setup and that all pods are up and running, and deploy the Demo Application:

```shell-session
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.11/examples/minikube/http-sw-app.yaml
kubectl create -f {{< demo-app-url >}}
```

It might take several seconds until all pods are Running:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Before going forward, verify that all pods are up and running, ensure you
deploy our Demo Application to explore the Security Observability Events:

```bash
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.11/examples/minikube/http-sw-app.yaml
kubectl create -f {{< demo-app-url >}}
```

It might take several seconds for some pods until they satisfy all the dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Before going forward, verify that all pods are up and running, ensure you
deploy our Demo Application to explore the Security Observability Events:

```bash
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.11/examples/minikube/http-sw-app.yaml
kubectl create -f {{< demo-app-url >}}
```

It might take several seconds for some pods until they satisfy all the dependencies:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ the following questions:
First, verify that your k8s environment is set up and that all pods are up and running, and deploy the demo application:

```shell-session
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.11/examples/minikube/http-sw-app.yaml
kubectl create -f {{< demo-app-url >}}
```

It might take several seconds until all pods are Running:
Expand Down
2 changes: 2 additions & 0 deletions docs/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ url_latest_version = "https://example.com"
github_repo = "https://github.com/cilium/tetragon"
# An optional link to a related project repo. For example, the sibling repository where your product code lives.
github_project_repo = "https://github.com/cilium/tetragon"
# URL of the Star Wars demo app.
demo_app_url = "https://raw.githubusercontent.com/cilium/cilium/v1.15.0-pre.1/examples/minikube/http-sw-app.yaml"

# Specify a value here if your content directory is not in your repo's root directory
github_subdir = "docs"
Expand Down
1 change: 1 addition & 0 deletions docs/layouts/shortcodes/demo-app-url.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- site.Params.demo_app_url -}}