Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[E2E] - Fixing E2E Build #736

Merged
merged 1 commit into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/e2e/integration/clean-protection.bats
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ teardown() {
@test "We should be able to redeploy the controller with namespace protection disabled" {
CHART="charts/terranetes-controller"

if [[ "${USE_CHART}" == "true" ]]; then
if [[ "${USE_CHART}" == "false" ]]; then
cat <<EOF > ${BATS_TMPDIR}/my_values.yaml
replicaCount: 1
controller:
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/integration/custom-state-backend.bats
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ EOF
@test "We should be able to update the controller to use a custom backend" {
CHART="charts/terranetes-controller"

if [[ "${USE_CHART}" == "true" ]]; then
if [[ "${USE_CHART}" == "false" ]]; then
cat <<EOF > ${BATS_TMPDIR}/my_values.yaml
controller:
backendTemplate: terraform-backend-config
Expand Down Expand Up @@ -208,7 +208,7 @@ EOF
@test "We should be able to revert the changes to the terranetes controller" {
CHART="charts/terranetes-controller"

if [[ "${USE_CHART}" == "true" ]]; then
if [[ "${USE_CHART}" == "false" ]]; then
cat <<EOF > ${BATS_TMPDIR}/my_values.yaml
replicaCount: 1
controller:
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/integration/setup.bats
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ teardown() {
@test "We should be able to deploy the helm chart" {
CHART="charts/terranetes-controller"

if [[ ${USE_CHART} == true ]]; then
if [[ ${USE_CHART} == "false" ]]; then
cat <<EOF > ${BATS_TMPDIR}/my_values.yaml
replicaCount: 1
controller:
Expand Down