You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/pull_request_template.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,15 +21,15 @@ Closes #ISSUE
21
21
22
22
Before merging a pull request, run through this checklist and mark each as complete.
23
23
24
-
-[] I have read the [contributing guidelines](/CONTRIBUTING.md)
25
-
-[] I have signed the [F5 Contributor License Agreement (CLA)](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md)
26
-
-[] I have ensured that documentation content adheres to [the style guide](/templates/style-guide.md)
27
-
-[] If the change involves potentially sensitive changes, I have assessed the possible impact
28
-
-[] If applicable, I have added tests that prove my fix is effective or that my feature works
29
-
-[] If applicable, I have checked that any relevant tests pass after adding my changes
30
-
-[] I have updated any relevant documentation ([`README.md`](/README.md) and [`CHANGELOG.md`](/CHANGELOG.md))
31
-
-[] I have rebased my branch onto main
32
-
-[] I will ensure my PR is targeting the main branch and pulling from my branch from my own fork
24
+
-[] I have read the [contributing guidelines](/CONTRIBUTING.md)
25
+
-[] I have signed the [F5 Contributor License Agreement (CLA)](https://github.com/f5/.github/blob/main/CLA/cla-markdown.md)
26
+
-[] I have ensured that documentation content adheres to [the style guide](/templates/style-guide.md)
27
+
-[] If the change involves potentially sensitive changes, I have assessed the possible impact
28
+
-[] If applicable, I have added tests that prove my fix is effective or that my feature works
29
+
-[] If applicable, I have checked that any relevant tests pass after adding my changes
30
+
-[] I have updated any relevant documentation ([`README.md`](/README.md) and [`CHANGELOG.md`](/CHANGELOG.md))
31
+
-[] I have rebased my branch onto main
32
+
-[] I will ensure my PR is targeting the main branch and pulling from my branch from my own fork
33
33
34
34
Potentially sensitive changes include anything involving code, personally identify information (PII), live URLs or significant amounts of new or revised documentation.
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ jobs:
18
18
pull-requests: write # for actions/stale to close stale PRs
19
19
runs-on: ubuntu-latest
20
20
steps:
21
-
- uses: actions/stale@v9.0.0
21
+
- uses: actions/stale@v9.1.0
22
22
with:
23
23
repo-token: ${{ secrets.GITHUB_TOKEN }}
24
24
stale-issue-message: 'This issue is stale because it has been open for 90 days with no activity. Remove the stale label or add a comment to keep it open. If you do not take action, this will be closed in 10 days.'
Copy file name to clipboardExpand all lines: content/ngf/how-to/traffic-management/routing-traffic-to-your-app.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ You can route traffic to your Kubernetes applications using the Gateway API and
33
33
34
34
The application we are going to use in this guide is a simple **coffee** application comprised of one service and two pods:
35
35
36
-
{{<imgsrc="img/route-all-traffic-app.png"alt="This image shows a single 'coffee' Service connecting to two 'coffee' Pods.">}}
36
+
{{<imgsrc="ngf/img/route-all-traffic-app.png"alt="This image shows a single 'coffee' Service connecting to two 'coffee' Pods.">}}
37
37
38
38
Using this architecture, the **coffee** application is not accessible outside the cluster. We want to expose this application on the hostname "cafe.example.com" so that clients outside the cluster can access it.
To route traffic to the **coffee** application, we will create a gateway and HTTPRoute. The following diagram shows the configuration we are creating in the next step:
We need a gateway to create an entry point for HTTP traffic coming into the cluster. The **cafe** gateway we are going to create will open an entry point to the cluster on port 80 for HTTP traffic.
114
114
115
115
To route HTTP traffic from the gateway to the **coffee** service, we need to create an HTTPRoute named **coffee** and attach it to the gateway. This HTTPRoute will have a single routing rule that routes all traffic to the hostname "cafe.example.com" from the gateway to the **coffee** service.
116
116
117
117
Once NGINX Gateway Fabric processes the **cafe** gateway and **coffee** HTTPRoute, it will configure its data plane (NGINX) to route all HTTP requests sent to "cafe.example.com" to the pods that the **coffee** service targets:
The **coffee** service is omitted from the diagram above because the NGINX Gateway Fabric routes directly to the pods that the **coffee** service targets.
0 commit comments