Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fluxcd/pkg
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: git/v0.12.3
Choose a base ref
...
head repository: fluxcd/pkg
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: git/v0.14.0
Choose a head ref
Loading
Showing with 2,647 additions and 3,094 deletions.
  1. +0 −22 .github/actions/run-tests/Dockerfile
  2. +0 −12 .github/actions/run-tests/action.yml
  3. +9 −2 .github/dependabot.yaml
  4. +30 −0 .github/labels.yaml
  5. +1 −1 .github/workflows/actions.yaml
  6. +2 −2 .github/workflows/build.yaml
  7. +2 −2 .github/workflows/cifuzz.yaml
  8. +3 −2 .github/workflows/e2e.yaml
  9. +5 −5 .github/workflows/integration-azure.yaml
  10. +6 −5 .github/workflows/integration-cleanup.yaml
  11. +3 −3 .github/workflows/integration-gcp.yaml
  12. +3 −3 .github/workflows/ossf.yaml
  13. +5 −2 .github/workflows/scan.yaml
  14. +28 −0 .github/workflows/sync-labels.yaml
  15. +1 −1 apis/acl/go.mod
  16. +3 −3 apis/event/go.mod
  17. +5 −5 apis/event/go.sum
  18. +6 −3 apis/kustomize/go.mod
  19. +15 −5 apis/kustomize/go.sum
  20. +2 −2 apis/meta/go.mod
  21. +2 −2 apis/meta/go.sum
  22. +77 −17 git/git.go
  23. +55 −62 git/git_test.go
  24. +8 −8 git/go.mod
  25. +16 −15 git/go.sum
  26. +11 −9 git/gogit/client.go
  27. +101 −14 git/gogit/clone.go
  28. +51 −4 git/gogit/clone_test.go
  29. +0 −155 git/gogit/fs/join.go
  30. +0 −411 git/gogit/fs/join_test.go
  31. +0 −293 git/gogit/fs/osfs_os.go
  32. +0 −1,141 git/gogit/fs/osfs_test.go
  33. +0 −31 git/gogit/fs/osfs_unsupported.go
  34. +19 −19 git/gogit/go.mod
  35. +35 −39 git/gogit/go.sum
  36. +20 −20 git/internal/e2e/go.mod
  37. +36 −40 git/internal/e2e/go.sum
  38. +1 −1 git/internal/e2e/run.sh
  39. +39 −16 git/internal/e2e/utils.go
  40. +7 −2 git/options.go
  41. +25 −4 git/options_test.go
  42. +5 −0 git/repository/options.go
  43. +11 −9 gittestserver/go.mod
  44. +29 −21 gittestserver/go.sum
  45. +18 −18 helmtestserver/go.mod
  46. +34 −34 helmtestserver/go.sum
  47. +6 −6 http/fetch/go.mod
  48. +12 −12 http/fetch/go.sum
  49. +1 −1 http/transport/go.mod
  50. +17 −16 kustomize/go.mod
  51. +27 −27 kustomize/go.sum
  52. +1 −1 lockedfile/go.mod
  53. +1 −1 masktoken/go.mod
  54. +17 −17 oci/auth/aws/auth.go
  55. +2 −3 oci/auth/aws/auth_test.go
  56. +19 −6 oci/auth/azure/auth.go
  57. +20 −0 oci/auth/azure/auth_test.go
  58. +16 −21 git/gogit/fs/osfs_linux.go → oci/auth/flag_test.go
  59. +4 −4 oci/auth/gcp/auth.go
  60. +5 −5 oci/auth/login/login.go
  61. +17 −2 oci/client/list.go
  62. +46 −10 oci/client/list_test.go
  63. +0 −4 oci/client/suite_test.go
  64. +35 −37 oci/go.mod
  65. +68 −72 oci/go.sum
  66. +3 −0 oci/tests/integration/.env.sample
  67. +90 −8 oci/tests/integration/README.md
  68. +8 −0 oci/tests/integration/aws_test.go
  69. +37 −36 oci/tests/integration/go.mod
  70. +74 −72 oci/tests/integration/go.sum
  71. +3 −10 oci/tests/integration/suite_test.go
  72. +15 −0 oci/tests/integration/terraform/aws/main.tf
  73. +9 −0 oci/tests/integration/terraform/aws/outputs.tf
  74. +5 −0 oci/tests/integration/terraform/aws/variables.tf
  75. +1 −0 oci/tests/integration/terraform/azure/main.tf
  76. +35 −3 runtime/controller/connection.go
  77. +53 −12 runtime/controller/metrics.go
  78. +61 −0 runtime/controller/metrics_test.go
  79. +19 −20 runtime/go.mod
  80. +35 −37 runtime/go.sum
  81. +130 −0 runtime/jitter/interval.go
  82. +129 −0 runtime/jitter/interval_test.go
  83. +61 −0 runtime/jitter/jitter.go
  84. +71 −0 runtime/jitter/jitter_test.go
  85. +33 −16 runtime/metrics/recorder.go
  86. +60 −8 runtime/metrics/recorder_test.go
  87. +3 −3 sourceignore/go.mod
  88. +6 −5 sourceignore/go.sum
  89. +20 −18 ssa/go.mod
  90. +42 −38 ssa/go.sum
  91. +1 −0 ssa/main_test.go
  92. +16 −6 ssa/manager.go
  93. +108 −44 ssa/manager_apply.go
  94. +159 −10 ssa/manager_apply_test.go
  95. +1 −1 ssa/manager_delete_test.go
  96. +0 −9 ssa/manager_diff.go
  97. +18 −3 ssa/manager_wait.go
  98. +167 −1 ssa/manager_wait_test.go
  99. +52 −0 ssa/testdata/test10.yaml
  100. +4 −0 ssa/testdata/test2.yaml
  101. +14 −1 ssa/utils.go
  102. +32 −0 ssa/utils_test.go
  103. +6 −6 ssh/go.mod
  104. +13 −13 ssh/go.sum
  105. +1 −1 tar/go.mod
  106. +6 −0 tests/fuzz/Dockerfile.builder
  107. +1 −1 testserver/go.mod
  108. +1 −1 untar/go.mod
  109. +1 −1 version/go.mod
22 changes: 0 additions & 22 deletions .github/actions/run-tests/Dockerfile

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/run-tests/action.yml

This file was deleted.

11 changes: 9 additions & 2 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -3,7 +3,14 @@ version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
labels: ["area/build"]
labels: ["area/ci", "dependencies"]
groups:
# Group all updates together, so that they are all applied in a single PR.
# Grouped updates are currently in beta and is subject to change.
# xref: https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
ci:
patterns:
- "*"
schedule:
# by default this will be on a monday.
# By default, this will be on a monday.
interval: "weekly"
30 changes: 30 additions & 0 deletions .github/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Configuration file to declaratively configure labels
# Ref: https://github.com/EndBug/label-sync#Config-files

- name: area/actions
description: GitHub Actions related issues and pull requests
color: '#00b140'
- name: area/git
description: Git and SSH related issues and pull requests
color: '#863faf'
- name: area/helm
description: Helm related issues and pull requests
color: '#1673b6'
- name: area/http
description: HTTP transport related issues and pull requests
color: '#006b75'
- name: area/oci
description: OCI related issues and pull requests
color: '#c739ff'
- name: area/kustomize
description: Kustomize related issues and pull requests
color: '#00e54d'
- name: area/runtime
description: Controller runtime related issues and pull requests
color: '#00e54d'
- name: area/server-side-apply
description: SSA related issues and pull requests
color: '#2819CB'
- name: area/testserver
description: Test server related issues and pull requests
color: '#006b75'
2 changes: 1 addition & 1 deletion .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
name: actions on ${{ matrix.version }}
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup yq
uses: ./actions/yq
- name: Setup kubeconform
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -14,9 +14,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
# https://github.com/actions/setup-go/blob/main/docs/adrs/0000-caching-dependencies.md#example-of-real-use-cases
4 changes: 2 additions & 2 deletions .github/workflows/cifuzz.yaml
Original file line number Diff line number Diff line change
@@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
# https://github.com/actions/setup-go/blob/main/docs/adrs/0000-caching-dependencies.md#example-of-real-use-cases
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -12,6 +12,7 @@ permissions:

jobs:
git-test:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
strategy:
fail-fast: false
@@ -24,7 +25,7 @@ jobs:
- bitbucket-server
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0

# Since this is a monorepo, changes in other packages will also trigger these e2e tests
# meant only for the git package. This detects us whether the changed files are part of the
@@ -41,7 +42,7 @@ jobs:
- 'git/**'
- name: Setup Go
if: ${{ steps.filter.outputs.git == 'true' || steps.filter.outputs.e2e == 'true' || github.event_name == 'workflow_dispatch' }}
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
# https://github.com/actions/setup-go/blob/main/docs/adrs/0000-caching-dependencies.md#example-of-real-use-cases
10 changes: 5 additions & 5 deletions .github/workflows/integration-azure.yaml
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@ name: integration-azure

on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
# schedule:
# - cron: "0 12 * * *"
# push:
# branches:
# - main
@@ -19,9 +19,9 @@ jobs:
working-directory: ./oci/tests/integration
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
cache-dependency-path: oci/tests/integration/go.sum
@@ -32,7 +32,7 @@ jobs:
- name: Setup QEMU
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0
- name: Set dynamic variables in .env
run: |
cat > .env <<EOF
11 changes: 6 additions & 5 deletions .github/workflows/integration-cleanup.yaml
Original file line number Diff line number Diff line change
@@ -18,11 +18,11 @@ jobs:
working-directory: ./tools/reaper
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
with:
repository: fluxcd/test-infra
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
cache-dependency-path: ./tools/reaper/go.sum
@@ -34,7 +34,7 @@ jobs:
run: echo "GCRGC_VERSION=${GCRGC_VERSION}" >> $GITHUB_ENV
- name: Cache gcrgc
id: cache-gcrgc
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/.local/bin/gcrgc
key: gcrgc-${{ env.GCRGC_VERSION }}
@@ -64,13 +64,14 @@ jobs:
defaults:
run:
working-directory: ./tools/reaper
if: false
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
with:
repository: fluxcd/test-infra
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
cache-dependency-path: ./tools/reaper/go.sum
6 changes: 3 additions & 3 deletions .github/workflows/integration-gcp.yaml
Original file line number Diff line number Diff line change
@@ -19,9 +19,9 @@ jobs:
working-directory: ./oci/tests/integration
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
cache-dependency-path: oci/tests/integration/go.sum
@@ -36,7 +36,7 @@ jobs:
- name: Setup QEMU
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2.2.0
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2.10.0
- name: Log into gcr.io
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
with:
6 changes: 3 additions & 3 deletions .github/workflows/ossf.yaml
Original file line number Diff line number Diff line change
@@ -25,9 +25,9 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: "Run analysis"
uses: ossf/scorecard-action@80e868c13c90f172d68d1f4501dee99e2479f7af # v2.1.3
uses: ossf/scorecard-action@08b4669551908b1024bb425080c797723083c031 # v2.2.0
with:
results_file: results.sarif
results_format: sarif
@@ -42,7 +42,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: SARIF file
path: results.sarif
7 changes: 5 additions & 2 deletions .github/workflows/scan.yaml
Original file line number Diff line number Diff line change
@@ -19,9 +19,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Setup Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.20.x
cache-dependency-path: |
@@ -31,6 +31,9 @@ jobs:
uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4
with:
languages: go
# xref: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# xref: https://codeql.github.com/codeql-query-help/go/
queries: security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@cdcdbb579706841c47f7063dda365e292e5cad7a # v2.13.4
- name: Perform CodeQL Analysis
28 changes: 28 additions & 0 deletions .github/workflows/sync-labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: sync-labels
on:
workflow_dispatch:
push:
branches:
- main
paths:
- .github/labels.yaml

permissions:
contents: read

jobs:
labels:
name: Run sync
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: EndBug/label-sync@da00f2c11fdb78e4fae44adac2fdd713778ea3e8 # v2.3.2
with:
# Configuration file
config-file: |
https://raw.githubusercontent.com/fluxcd/community/main/.github/standard-labels.yaml
.github/labels.yaml
# Strictly declarative
delete-other-labels: true
2 changes: 1 addition & 1 deletion apis/acl/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/fluxcd/pkg/apis/acl

go 1.18
go 1.20
6 changes: 3 additions & 3 deletions apis/event/go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/fluxcd/pkg/apis/event

go 1.18
go 1.20

require (
k8s.io/api v0.27.3
k8s.io/apimachinery v0.27.3
k8s.io/api v0.27.4
k8s.io/apimachinery v0.27.4
)

require (
10 changes: 5 additions & 5 deletions apis/event/go.sum
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9G
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=
github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
@@ -67,10 +67,10 @@ gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
k8s.io/api v0.27.3 h1:yR6oQXXnUEBWEWcvPWS0jQL575KoAboQPfJAuKNrw5Y=
k8s.io/api v0.27.3/go.mod h1:C4BNvZnQOF7JA/0Xed2S+aUyJSfTGkGFxLXz9MnpIpg=
k8s.io/apimachinery v0.27.3 h1:Ubye8oBufD04l9QnNtW05idcOe9Z3GQN8+7PqmuVcUM=
k8s.io/apimachinery v0.27.3/go.mod h1:XNfZ6xklnMCOGGFNqXG7bUrQCoR04dh/E7FprV6pb+E=
k8s.io/api v0.27.4 h1:0pCo/AN9hONazBKlNUdhQymmnfLRbSZjd5H5H3f0bSs=
k8s.io/api v0.27.4/go.mod h1:O3smaaX15NfxjzILfiln1D8Z3+gEYpjEpiNA/1EVK1Y=
k8s.io/apimachinery v0.27.4 h1:CdxflD4AF61yewuid0fLl6bM4a3q04jWel0IlP+aYjs=
k8s.io/apimachinery v0.27.4/go.mod h1:XNfZ6xklnMCOGGFNqXG7bUrQCoR04dh/E7FprV6pb+E=
k8s.io/klog/v2 v2.90.1 h1:m4bYOKall2MmOiRaR1J+We67Do7vm9KiQVlT96lnHUw=
k8s.io/klog/v2 v2.90.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
k8s.io/utils v0.0.0-20230209194617-a36077c30491 h1:r0BAOLElQnnFhE/ApUsg3iHdVYYPBjNSSOMowRZxxsY=
9 changes: 6 additions & 3 deletions apis/kustomize/go.mod
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
module github.com/fluxcd/pkg/apis/kustomize

go 1.18
go 1.20

require k8s.io/apiextensions-apiserver v0.27.3
require k8s.io/apiextensions-apiserver v0.27.4

require (
github.com/go-logr/logr v1.2.3 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/text v0.8.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
k8s.io/apimachinery v0.27.3 // indirect
k8s.io/apimachinery v0.27.4 // indirect
k8s.io/klog/v2 v2.90.1 // indirect
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
Loading