Skip to content

Commit

Permalink
Update hack/ci/e2e.sh for alpha3 changes
Browse files Browse the repository at this point in the history
This patch updates the file "hack/ci/e2e.sh" to use "v1alpha3" in the
generated kind config yaml as well as removes the use of "replicas" and
manually adds a second worker node entry to the same yaml.
  • Loading branch information
akutz committed Mar 22, 2019
1 parent d4ff13e commit a45f770
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hack/ci/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ create_cluster() {
cat <<EOF > "${ARTIFACTS}/kind-config.yaml"
# config for 1 control plane node and 2 workers
# necessary for conformance
kind: Config
apiVersion: kind.sigs.k8s.io/v1alpha2
kind: Cluster
apiVersion: kind.sigs.k8s.io/v1alpha3
nodes:
# the control plane node
- role: control-plane
- role: worker
replicas: 2
- role: worker
EOF
# mark the cluster as up for cleanup
# even if kind create fails, kind delete can clean up after it
Expand Down

0 comments on commit a45f770

Please sign in to comment.