Commit Graph

2515 Commits (7621418b72dc3af6a41a1d5be594ec228c88c04a)
 

Author SHA1 Message Date
Fynn Späker 18acae57bd Fix SecretRef
Signed-off-by: Fynn Späker <spaeker@23technologies.cloud>
Hidde Beydals b427356eca
Merge pull request from makkes/bootstrap-with-custom-ca
feat: enable bootstrap with custom CA locally
Max Jonas Werner 2e6ca16a4a
chore: use os.ReadFile instead of deprecated ioutil.ReadFile
Signed-off-by: Max Jonas Werner <mail@makk.es>
Max Jonas Werner e98f1142a6
feat: enable bootstrap with custom CA locally
When a user provided the `--ca-file` flag to the `bootstrap` command,
the given CA file wasn't taken into account for cloning the repository
locally. It was just passed along to the CR that is created so Flux
can make use of it when cloning the repository in-cluster.

However, users may not want to add a custom CA to their local host's
trust chain and may expect the `--ca-file` flag to be respected also
for cloning the repository locally. This is what this commit
accomplishes.

closes 

Signed-off-by: Max Jonas Werner <mail@makk.es>
Hidde Beydals 06fa8f75c9
Merge pull request from allenporter/flux-cmd-create
Add tests for create source git
Allen Porter 8cbd4e8172 Add test for "flux create source git"
The create source tests are more interesting than the existing tests as they
create objects then wit for the flux source reconciler to complete. The tests
simulate this with a background goroutine that waits for an object to be
created then uses a test specific function to update it.

The tests set a timeout so that if there is a failure they timeout somewhat
quickly rather than hanging for a longer period of time.

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan 83c7994266
Merge pull request from fluxcd/improve-readme
Simplify readme
Stefan Prodan 43843581b6
Simplify readme
- remove install instruction as they get out of sync with the docs website
- make the get started guide the first link under docs

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
Stefan Prodan 7e03d64e8a
Merge pull request from Schildkroete23/main
Be able to create a git source without human interaction.
Daniel Petró c6f4d71187 Be able to create a git source without human interaction.
Signed-off-by: Daniel Petró <daniel.petro@icloud.com>
Stefan Prodan 69c3b90fea
Merge pull request from fluxcd/update-components
Update toolkit components
fluxcdbot 75309b4c93 Update toolkit components
- kustomize-controller to v0.14.0
  https://github.com/fluxcd/kustomize-controller/blob/v0.14.0/CHANGELOG.md
- notification-controller to v0.16.0
  https://github.com/fluxcd/notification-controller/blob/v0.16.0/CHANGELOG.md

Signed-off-by: GitHub <noreply@github.com>
Stefan Prodan 433f13a7ed
Merge pull request from ttulka/logs-since-2
Add `logs` flags `--since` and `--since-time`
Tomas Tulka 8896a1e73e tidy
Signed-off-by: Tomas Tulka <tomas.tulka@gmail.com>
Tomas Tulka 54758b1692 add --since and --since-time
Signed-off-by: Tomas Tulka <tomas.tulka@gmail.com>
Stefan Prodan 375e00c79c
Merge pull request from allenporter/ioutil
Remove use of deprecated io/ioutil
Allen Porter e2454d91f1 Remove use of deprecated io/ioutil
Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan 6894f6f3bf
Merge pull request from allenporter/flux-envtest
Use shared envTest for unit tests
Allen Porter d45501a129 Use shared envTest for unit tests
Speed up unit tests by using a shared envTest. This requires each
test to use its own namespace to avoid clobbering objects for
other tests. Tests previously took around 8 seconds each, and now
the initial test takes 2 seconds with follow up tests taking less
than a second each.

Also update existing tests that use a fixed namespace to use a
generated namespace.

Share gold file template function with yaml files.

Remove the testClusterMode, and instead rely on MainTest to do
the appropriate test setup and rootArgs flag setup. Move the
rootArg flag setup out of NewTestEnvKubeManager to avoid
side effects.

A follow up change can be to push the individual setups
from NewTestEnvKubeManager() into their respective TestMain since
the harness share little code.

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan def92e14ee
Merge pull request from allenporter/flux-test-cleanup
Rename trace test golden files
Allen Porter 11708d4189 Rename trace test golden files
Rename trace test golden files to match the convention used by other tests

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan 2bc64bf419
Merge pull request from allenporter/flux-cmd-test-func
Make test harness more flexible with functions
Allen Porter 3a3bdc62c8 Make test harness more flexible with functions
Replace the 4 arguments to cmdTestCase with a function that
can let tests run arbitrary logic if it is more complex than
what is provided by the test harness. Move the existing logic
into functions that the test can use for common assertions on
golden files and golden values.

These changes were pulled out of PR  to make a smaller review.

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan 72294b2a56
Merge pull request from fluxcd/arm64-e2e
Move arm64 e2e to Go tests
Stefan Prodan 94940a20ef
Move arm64 e2e to Go tests
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
Stefan Prodan 219ff2ef7d
Merge pull request from timja/patch-1
Avoid substitution issue in kustomize for azure credentials sync
Tim Jacomb bc2de741b8
Avoid substitution issue in kustomize for azure credentials sync
Signed-off-by: Tim Jacomb <tim.jacomb@hmcts.net>
Stefan Prodan 5eabd4e898
Merge pull request from allenporter/flux-envtest
Remove fakeclient and use testenv for flux cmd tests
Allen Porter e8d6d5fe5c Remove fakeclient and use testenv for flux cmd tests
Remove use of the fake client, and replace with a real client connected to the
testEnv.

This required fixes to the yaml files as the testEnv has stricter verifcation
of objects. This also meant it was not possible to test a GitRepository with
a missing artifact since that is not a valid state.

The tests are slower than before, taking around 7-10 seconds each because the
 testEnv is setup and destroyed for every test. These will be sped up in a
 follow up PR.

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan 55bd93ff79
Merge pull request from fluxcd/make-envtest
Wire kubebuilder assets to envtest bin
Stefan Prodan b34b2d779b
Wire kubebuilder assets to envtest bin
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
Stefan Prodan 103ed2be65
Merge pull request from chanwit/e2e_check_pre
Add e2e test case fo check --pre
Chanwit Kaewkasi cc32c1be07 add e2e test for check --pre with templating support
Signed-off-by: Chanwit Kaewkasi <chanwit@gmail.com>
Stefan Prodan a3ba9817a3
Merge pull request from dholbach/update-calendar
Update links to calendar and resources
Daniel Holbach 6d5f1b17ad update links to calendar and resources
Signed-off-by: Daniel Holbach <daniel@weave.works>
Stefan Prodan 0d5d5fce46
Merge pull request from fluxcd/test-ref
Refactor e2e tests
Stefan Prodan 375edffd15
Add image scanning e2e tests
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
Stefan Prodan d1982e64b2
Refactor e2e tests
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
Stefan Prodan cec8b5336c
Merge pull request from chanwit/e2e_install
Implement testEnv for e2e tests
Chanwit Kaewkasi 8f78263455 implement testEnv for e2e tests
Signed-off-by: Chanwit Kaewkasi <chanwit@gmail.com>
Stefan Prodan cb96bca6aa
Merge pull request from souleb/main
Adds a watch flag to the get command
Soule BA c18d0b9217 Adds a watch flag to the get command
The new flag fetch and display the request ressource and then continue
watching the ressource until timeout or cancellation.

A single ressource/ressource type is supported.

Signed-off-by: Soule BA <soule@weave.works>
Hidde Beydals d1970185b9
Merge pull request from fluxcd/update-components
Update toolkit components
fluxcdbot 794d3ee2f5 Update toolkit components
- helm-controller to v0.11.2
  https://github.com/fluxcd/helm-controller/blob/v0.11.2/CHANGELOG.md
- kustomize-controller to v0.13.3
  https://github.com/fluxcd/kustomize-controller/blob/v0.13.3/CHANGELOG.md
- source-controller to v0.15.4
  https://github.com/fluxcd/source-controller/blob/v0.15.4/CHANGELOG.md
- notification-controller to v0.15.1
  https://github.com/fluxcd/notification-controller/blob/v0.15.1/CHANGELOG.md
- image-reflector-controller to v0.11.1
  https://github.com/fluxcd/image-reflector-controller/blob/v0.11.1/CHANGELOG.md
- image-automation-controller to v0.14.1
  https://github.com/fluxcd/image-automation-controller/blob/v0.14.1/CHANGELOG.md

Signed-off-by: GitHub <noreply@github.com>
Hidde Beydals daeef98dfb
Merge pull request from allenporter/flux-test-main
Replace init() with TestMain()
Allen Porter 4146df1f02 Replace init() with TestMain()
Signed-off-by: Allen Porter <allen@thebends.org>
Hidde Beydals 78f4dfa48d
Merge pull request from allenporter/flux-cmd-ioutil
Remove deprecated io/ioutil usage
Allen Porter 8b68d7d7e2 Remove deprecated io/ioutil usage
Issue 

Signed-off-by: Allen Porter <allen@thebends.org>
Stefan Prodan ba1bba17ad
Merge pull request from charles-woshicai/print-success-message
feat: display success message while create secrets via `flux` cli.
Charles Cai 70f2b5028f feat: display success message while create secrets via `flux` cli.
Signed-off-by: Charles Cai <charles.cai@sap.com>