Skip to content

Commit 8a91b9b

Browse files
authored
Merge branch 'main' into feat-add-ngf
2 parents a408a90 + 6fa64d5 commit 8a91b9b

File tree

8 files changed

+21
-33
lines changed

8 files changed

+21
-33
lines changed

.github/workflows/build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
needs: call-docs-build-push
124124
runs-on: ubuntu-22.04
125125
steps:
126-
- uses: actions/checkout@v4
126+
- uses: actions/checkout@v5
127127
with:
128128
ref: ${{ github.event.workflow_run.head_branch }}
129129
- uses: actions/setup-node@v4

.github/workflows/dot-org-content.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
IS_CHANGES_DETECTED: ${{ steps.check_changes.outputs.changed }}
1717
steps:
1818
- name: Checkout Repository
19-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
19+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
2020
with:
2121
fetch-depth: 0
2222
- name: Clone the nginx/nginx-org repository

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: ${{ github.event.repository.fork == false }}
2323
steps:
2424
- name: Checkout Repository
25-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
25+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
2626

2727
- name: Scan
2828
uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0

.github/workflows/mend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-24.04
2222
steps:
2323
- name: Checkout Repository
24-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.2
24+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
2525
with:
2626
ref: ${{ inputs.branch && inputs.branch || github.ref }}
2727

.github/workflows/ossf_scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
checks: read # To detect SAST tools
3030
steps:
3131
- name: Check out the codebase
32-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2 # v4.2.0
32+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.0
3333
with:
3434
persist-credentials: false
3535

@@ -56,6 +56,6 @@ jobs:
5656

5757
# Upload the results to GitHub's code scanning dashboard.
5858
- name: Upload SARIF results to code scanning
59-
uses: github/codeql-action/upload-sarif@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.5
59+
uses: github/codeql-action/upload-sarif@df559355d593797519d70b90fc8edd5db049e7a2 # v3.29.5
6060
with:
6161
sarif_file: results.sarif

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
run-playwright-tests:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: lts/*

static/ngf/img/src/advanced-routing.mermaid

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,30 @@ graph LR
33
users[Users]
44
ngfSvc["Public Endpoint\nfor\ncafe.example.com"]
55
subgraph cluster [Kubernetes Cluster]
6-
subgraph clusterPadding [" "]
7-
subgraph clusterPadding2 [" "]
8-
subgraph gwNS [Namespace\nnginx-gateway]
9-
ngfPod[Pod\nnginx-gateway]
10-
end
11-
end
12-
end
136
subgraph appNs [Namespace\ndefault]
147
subgraph nsPadding [" "]
8+
nginxPod[Pod\nNGINX]
159
coffeeV1Pod[Pod\ncoffee v1]
1610
coffeeV2Pod[Pod\ncoffee v2]
1711
teaPod[Pod\ntea]
1812
teaPostPod[Pod\ntea-post]
1913
end
2014
end
2115
end
22-
ngfSvc --> ngfPod
23-
ngfPod --/coffee--> coffeeV1Pod
24-
ngfPod --/coffee\nheader: version=v2\nOR\n/coffee?TEST=v2--> coffeeV2Pod
25-
ngfPod --GET /tea--> teaPod
26-
ngfPod --POST /tea--> teaPostPod
16+
17+
ngfSvc --> nginxPod
18+
nginxPod --/coffee--> coffeeV1Pod
19+
nginxPod --/coffee\nheader: version=v2\nOR\n/coffee?TEST=v2--> coffeeV2Pod
20+
nginxPod --GET /tea--> teaPod
21+
nginxPod --POST /tea--> teaPostPod
2722
users --> ngfSvc
23+
2824
class clusterPadding,nsPadding,clusterPadding2 noBorder
2925
class gwNS,appNs namespace
30-
class ngfSvc,ngfPod nginxNode
26+
class ngfSvc,nginxPod nginxNode
3127
class coffeeV1Pod,coffeeV2Pod coffeeNode
3228
class teaPod,teaPostPod teaNode
29+
3330
classDef noBorder stroke:none,fill:none
3431
classDef default fill:#FFFFFF,stroke:#000000
3532
classDef namespace fill:#FFFFFF,stroke:#036ffc,stroke-dasharray: 5 5,text-align:center

static/ngf/img/src/route-all-traffic-flow.mermaid

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,26 @@ graph LR
55

66
subgraph cluster [Kubernetes Cluster]
77
style cluster fill:#FFFFFF,stroke:#000000
8-
subgraph clusterPadding [" "]
9-
subgraph clusterPadding2 [" "]
10-
subgraph gwNS [Namespace\nnginx-gateway]
11-
ngfPod[Pod\nnginx-gateway]
12-
end
13-
end
14-
end
158

169
subgraph appNs [Namespace\ndefault]
1710
subgraph nsPadding [" "]
11+
nginxPod[Pod\nNGINX]
1812
coffeePod1[Pod\ncoffee]
1913
coffeePod2[Pod\ncoffee]
2014
end
2115
end
2216
end
2317

24-
25-
26-
ngfSvc --> ngfPod
27-
ngfPod --> coffeePod1 & coffeePod2
18+
ngfSvc --> nginxPod
19+
nginxPod --> coffeePod1 & coffeePod2
2820
clients --> ngfSvc
2921

3022
class clusterPadding,nsPadding,clusterPadding2 noBorder
3123
class gwNS,appNs namespace
32-
class ngfPod,ngfSvc nginxNode
24+
class nginxPod,ngfSvc nginxNode
3325
class coffeePod1,coffeePod2 coffeeNode
3426
class clients clientNode
3527

36-
3728
classDef noBorder stroke:none,fill:none
3829
classDef default fill:#FFFFFF,stroke:#000000
3930
classDef namespace fill:#FFFFFF,stroke:#036ffc,stroke-dasharray: 5 5,text-align:center

0 commit comments

Comments
 (0)