This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env bats | ||
|
||
function setup() { | ||
load lib/env | ||
load lib/install | ||
load lib/poll | ||
load lib/defer | ||
|
||
kubectl create namespace "$FLUX_NAMESPACE" | ||
|
||
install_flux_with_fluxctl | ||
} | ||
|
||
@test "SSH key is generated" { | ||
run fluxctl identity --k8s-fwd-ns "$FLUX_NAMESPACE" | ||
[ "$status" -eq 0 ] | ||
[ "$output" != "" ] | ||
} | ||
|
||
function teardown() { | ||
run_deferred | ||
# Although the namespace delete below takes care of removing most Flux | ||
# elements, the global resources will not be removed without this. | ||
uninstall_flux_with_fluxctl | ||
# Removing the namespace also takes care of removing Flux and gitsrv. | ||
kubectl delete namespace "$FLUX_NAMESPACE" | ||
} |