Skip to content

Commit 4f83513

Browse files
authored
Merge branch 'main' into agent-v3
2 parents e7d29d2 + 933b6b3 commit 4f83513

File tree

6 files changed

+28
-21
lines changed

6 files changed

+28
-21
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"local>nginxinc/k8s-common"
4+
"local>nginx/k8s-common"
55
]
66
}

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- name: Dependabot metadata
1616
id: dependabot-metadata
17-
uses: dependabot/fetch-metadata@dbb049abf0d677abbd7f7eee0375145b417fdd34 # v2.2.0
17+
uses: dependabot/fetch-metadata@d7267f607e9d3fb96fc2fbe83e0af444713e90b7 # v2.3.0
1818

1919
- name: Enable auto-merge for Dependabot PRs
2020
run: gh pr merge --auto --squash "$PR_URL"

.github/workflows/sync.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
repository: |
2929
nginxinc/kic-test-containers
3030
nginxinc/nginx-ingress-helm-operator
31-
nginxinc/nginx-prometheus-exporter
32-
nginxinc/nginx-plus-go-client
33-
nginxinc/nginx-asg-sync
34-
nginxinc/telemetry-exporter
31+
nginx/nginx-prometheus-exporter
32+
nginx/nginx-plus-go-client
33+
nginx/nginx-asg-sync
34+
nginx/telemetry-exporter
3535
token: ${{ secrets.NGINX_PAT }}
3636
prune: true
3737

@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- run: |
4444
gh repo sync nginx-bot/certified-operators
45-
gh repo sync nginxinc/winget-pkgs
45+
gh repo sync nginx/winget-pkgs
4646
gh repo sync nginxinc/kubernetes-json-schema
4747
env:
4848
GITHUB_TOKEN: ${{ secrets.NGINX_PAT }}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@
88

99
# MacOS Finder
1010
.DS_Store
11+
12+
license.jwt

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ repos:
2727
- id: detect-private-key
2828

2929
- repo: https://github.com/gitleaks/gitleaks
30-
rev: v8.22.1
30+
rev: v8.23.2
3131
hooks:
3232
- id: gitleaks
3333

3434
- repo: https://github.com/DavidAnson/markdownlint-cli2
35-
rev: v0.17.1
35+
rev: v0.17.2
3636
hooks:
3737
- id: markdownlint-cli2
3838

tools/build.pkr.hcl

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,36 +33,41 @@ build {
3333

3434
provisioner "shell" {
3535
inline = [
36-
"curl -L https://nixos.org/nix/install -o install-nix.sh",
37-
"chmod +x install-nix.sh",
38-
"bash install-nix.sh --daemon",
39-
"rm install-nix.sh",
40-
"sed -i '1i. /etc/bashrc' ~/.bashrc"
36+
"curl -L https://nixos.org/nix/install -o install-nix.sh",
37+
"chmod +x install-nix.sh",
38+
"bash install-nix.sh --daemon",
39+
"rm install-nix.sh",
40+
"sed -i '1i. /etc/bashrc' ~/.bashrc"
4141
]
4242
}
4343

4444
provisioner "file" {
4545
source = "packages.nix"
4646
destination = "/tmp/packages.nix"
47+
}
4748

48-
49+
provisioner "file" {
50+
source = "license.jwt"
51+
destination = "/tmp/license.jwt"
4952
}
5053

5154
provisioner "shell" {
5255
inline = [
53-
"nix-env -if /tmp/packages.nix",
54-
"sudo apt-get update",
55-
"sudo apt-get install -y --no-install-recommends --no-install-suggests google-cloud-sdk-gke-gcloud-auth-plugin locales",
56-
"echo 'en_US.UTF-8 UTF-8' | sudo tee /etc/locale.gen",
57-
"sudo locale-gen",
56+
"nix-env -if /tmp/packages.nix",
57+
"sudo apt-get update",
58+
"sudo apt-get install -y --no-install-recommends --no-install-suggests google-cloud-sdk-gke-gcloud-auth-plugin locales cloud-init",
59+
"echo 'en_US.UTF-8 UTF-8' | sudo tee /etc/locale.gen",
60+
"sudo locale-gen",
5861
]
5962
}
6063

6164
provisioner "shell" {
6265
inline = [
63-
"git clone https://github.com/nginxinc/nginx-gateway-fabric.git",
66+
"echo 'alias k='kubectl'' >> .bashrc",
67+
"git clone https://github.com/nginx/nginx-gateway-fabric.git",
6468
"cd nginx-gateway-fabric/tests",
6569
"go mod download",
70+
"cp /tmp/license.jwt ../license.jwt",
6671
]
6772
}
6873

0 commit comments

Comments
 (0)