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

tests/smoke/cluster_test.go: Drop unused networkingEnv #99

Merged
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
1 change: 0 additions & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ echo -e "\\e[36m Deploying Tectonic...\\e[0m"
tectonic install --dir="${CLUSTER_NAME}"
echo -e "\\e[36m Running smoke test...\\e[0m"
export SMOKE_KUBECONFIG="$(pwd)/$CLUSTER_NAME/generated/auth/kubeconfig"
export SMOKE_NETWORKING="canal"
export SMOKE_NODE_COUNT="7" # Sum of all nodes (etcd + master + worker)
export SMOKE_MANIFEST_PATHS="$(pwd)/$CLUSTER_NAME/generated"
exec 5>&1
Expand Down
1 change: 0 additions & 1 deletion tests/smoke/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ The cluster test suite requires four additional parameters:
Export the following environment variables to parameterize the cluster tests:

```sh
export SMOKE_NETWORKING=canal
export SMOKE_NODE_COUNT=3
export SMOKE_MANIFEST_PATHS=/path/to/kubernetes/manifests
export SMOKE_MANIFEST_EXPERIMENTAL=true
Expand Down
2 changes: 0 additions & 2 deletions tests/smoke/cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ import (
)

const (
// networkingEnv is the environment variable that specifies if calico is running.
networkingEnv = "SMOKE_NETWORKING"
// nodeCountEnv is the environment variable that specifies the node count.
nodeCountEnv = "SMOKE_NODE_COUNT"
// manifestPathsEnv is the environment variable that defines the paths to the manifests that are deployed on the cluster.
Expand Down