diff --git a/e2e-kind.sh b/e2e-kind.sh index bff8448..9dd2523 100755 --- a/e2e-kind.sh +++ b/e2e-kind.sh @@ -5,7 +5,7 @@ set -o nounset set -o pipefail readonly CLUSTER_NAME=chart-testing -readonly K8S_VERSION=v1.13.2 +readonly K8S_VERSION=v1.13.4 create_kind_cluster() { kind create cluster --name "$CLUSTER_NAME" --image "kindest/node:$K8S_VERSION" --wait 10s diff --git a/examples/docker-for-mac/my_test.sh b/examples/docker-for-mac/my_test.sh index 61c30c4..71f0b15 100755 --- a/examples/docker-for-mac/my_test.sh +++ b/examples/docker-for-mac/my_test.sh @@ -6,7 +6,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -#     http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/examples/kind/README.md b/examples/kind/README.md index b3d7467..4f29bb7 100644 --- a/examples/kind/README.md +++ b/examples/kind/README.md @@ -4,4 +4,4 @@ This example shows how to lint and test charts using CircleCi and [kind](https://github.com/kubernetes-sigs/kind). It creates a cluster with a single master node and one worker node. -The cluster configuration can be adjusted in [kind-config.yaml](test/kind-config.yaml). +The cluster configuration can be adjusted in [kind-config.yaml](test/kind-config.yaml). You can check for available configuration options in `kind` [docs](https://kind.sigs.k8s.io/docs/user/quick-start#configuring-your-kind-cluster) diff --git a/examples/kind/test/e2e-kind.sh b/examples/kind/test/e2e-kind.sh index df5035a..29dd81b 100755 --- a/examples/kind/test/e2e-kind.sh +++ b/examples/kind/test/e2e-kind.sh @@ -5,9 +5,9 @@ set -o nounset set -o pipefail readonly CT_VERSION=v2.2.0 -readonly KIND_VERSION=0.1.0 +readonly KIND_VERSION=0.2.0 readonly CLUSTER_NAME=chart-testing -readonly K8S_VERSION=v1.13.2 +readonly K8S_VERSION=v1.13.4 run_ct_container() { echo 'Running ct container...' diff --git a/examples/kind/test/kind-config.yaml b/examples/kind/test/kind-config.yaml index 5d02d83..ee24a88 100644 --- a/examples/kind/test/kind-config.yaml +++ b/examples/kind/test/kind-config.yaml @@ -1,6 +1,5 @@ -kind: Config -apiVersion: kind.sigs.k8s.io/v1alpha2 +kind: Cluster +apiVersion: kind.sigs.k8s.io/v1alpha3 nodes: - role: control-plane - role: worker - replicas: 1